Airport Codes
Airport codes from around the world
@kaggle.joebeachcapital_airport_codes
Airport codes from around the world
@kaggle.joebeachcapital_airport_codes
CREATE TABLE airport_codes (
"ident" VARCHAR,
"type" VARCHAR,
"name" VARCHAR,
"elevation_ft" DOUBLE,
"continent" VARCHAR,
"iso_country" VARCHAR,
"iso_region" VARCHAR,
"municipality" VARCHAR,
"gps_code" VARCHAR,
"iata_code" VARCHAR,
"local_code" VARCHAR,
"coordinates" VARCHAR
);
CREATE TABLE airports (
"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,
"iata_code" VARCHAR,
"local_code" VARCHAR,
"home_link" VARCHAR,
"wikipedia_link" VARCHAR,
"keywords" VARCHAR
);
Anyone who has the link will be able to view this.