Airport Code And Geographical Information
Airport codes, locations, information and frequency over the world
@kaggle.jinbonnie_airport_information
Airport codes, locations, information and frequency over the world
@kaggle.jinbonnie_airport_information
One of my assignment is to become Kaggle expert, if there any possible please vote for me!! I will be really appreciate!!!
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.
date/frequencies.csv
contains the list of airport codes, descriptions and communication frequency_mhz
Daily updated ‘Airport codes’ datapackage could be found on the datahub.io:
https://datahub.io/core/airport-codes
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
);CREATE TABLE airport_frequencies (
"id" BIGINT,
"airport_ref" BIGINT,
"ident" VARCHAR,
"type" VARCHAR,
"description" VARCHAR,
"frequency_mhz" DOUBLE
);Anyone who has the link will be able to view this.