Baselight

Airport Code And Geographical Information

Airport codes, locations, information and frequency over the world

@kaggle.jinbonnie_airport_information

Loading...
Loading...

About this Dataset

Airport Code And Geographical Information

One of my assignment is to become Kaggle expert, if there any possible please vote for me!! I will be really appreciate!!!

Information and Columns

data/airport-codes.csv

contains the list of all airport codes, the attributes are identified in data package description. Some of the columns contain attributes identifying airport locations, other codes (IATA, local if exist) that are relevant to identification of an airport.

  • id: Internal OurAirports integer identifier for the airport. This will stay persistent, even if the airport code changes.
  • ident: The text identifier used in the OurAirports URL. This will be the ICAO code if available. Otherwise, it will be a local airport code (if no conflict), or if nothing else is available, an internally-generated code starting with the ISO2 country code, followed by a dash and a four-digit number.
  • type: The type of the airport. Allowed values are "closed_airport", "heliport", "large_airport", "medium_airport", "seaplane_base", and "small_airport". See the map legend for a definition of each type.
  • name: The official airport name, including "Airport", "Airstrip", etc.
  • latitude_deg: The airport latitude in decimal degrees (positive for north).
  • longitude_deg: The airport longitude in decimal degrees (positive for east).
  • elevation_ft: The airport elevation MSL in feet (not metres).
  • continent: The code for the continent where the airport is (primarily) located. Allowed values are "AF" (Africa), "AN" (Antarctica), "AS" (Asia), "EU" (Europe), "NA" (North America), "OC" (Oceania), or "SA" (South America).
  • iso_country: The two-character ISO 3166:1-alpha2 code for the country where the airport is (primarily) located. A handful of unofficial, non-ISO codes are also in use, such as "XK" for Kosovo. Points to the code column in countries.csv.
  • iso_region: An alphanumeric code for the high-level administrative subdivision of a country where the airport is primarily located (e.g. province, governorate), prefixed by the ISO2 country code and a hyphen. OurAirports uses ISO 3166:2 codes whenever possible, preferring higher administrative levels, but also includes some custom codes. See the documentation for regions.csv.
  • municipality: The primary municipality that the airport serves (when available). Note that this is not necessarily the municipality where the airport is physically located.
  • scheduled_service: "yes" if the airport currently has scheduled airline service; "no" otherwise.
  • gps_code: The code that an aviation GPS database (such as Jeppesen's or Garmin's) would normally use for the airport. This will always be the ICAO code if one exists. Note that, unlike the ident column, this is not guaranteed to be globally unique.
  • local_code: The local country code for the airport, if different from the gps_code and iata_code fields (used mainly for US airports).

date/frequencies.csv

contains the list of airport codes, descriptions and communication frequency_mhz

  • id: nternal OurAirports integer identifier for the frequency. This will stay persistent, even if the radio frequency or description changes.
  • airport_ref: Internal integer foreign key matching the id column for the associated airport in airports.csv. (airport_ident is a better alternative.)
  • airport_ident: Externally-visible string foreign key matching the ident column for the associated airport in airports.csv.
  • type: A code for the frequency type. This isn't (currently) a controlled vocabulary, but probably will be soon. Some common values are "TWR" (tower), "ATF" or "CTAF" (common traffic frequency), "GND" (ground control), "RMP" (ramp control), "ATIS" (automated weather), "RCO" (remote radio outlet), "ARR" (arrivals), "DEP" (departures), "UNICOM" (monitored ground station), and "RDO" (a flight-service station).
  • description: A description of the frequency, typically the way a pilot would open a call on it.
  • frequency_mhz: Radio voice frequency in megahertz. Note that the same frequency may appear multiple times for an airport, serving different functions.

Source

Daily updated ‘Airport codes’ datapackage could be found on the datahub.io:
https://datahub.io/core/airport-codes

Inspiration

  • Refill the continent by country
  • Analysis the frequency
  • Data visualization using map plot

Tables

Airport Code

@kaggle.jinbonnie_airport_information.airport_code
  • 3.57 MB
  • 58505 rows
  • 14 columns
Loading...

CREATE TABLE airport_code (
  "id" BIGINT,
  "ident" VARCHAR,
  "type" VARCHAR,
  "name" VARCHAR,
  "latitude_deg" DOUBLE,
  "longitude_deg" DOUBLE,
  "elevation_ft" DOUBLE,
  "continent" VARCHAR,
  "iso_country" VARCHAR,
  "iso_region" VARCHAR,
  "municipality" VARCHAR,
  "scheduled_service" VARCHAR,
  "gps_code" VARCHAR,
  "local_code" VARCHAR
);

Airport Frequencies

@kaggle.jinbonnie_airport_information.airport_frequencies
  • 525.96 KB
  • 28921 rows
  • 6 columns
Loading...

CREATE TABLE airport_frequencies (
  "id" BIGINT,
  "airport_ref" BIGINT,
  "ident" VARCHAR,
  "type" VARCHAR,
  "description" VARCHAR,
  "frequency_mhz" DOUBLE
);

Share link

Anyone who has the link will be able to view this.