AirStats: Data On Airports Around The World
Data on airports around the world, their codes, official websites, and much more
@kaggle.patrasaurabh_airstats_data_on_airports_around_the_world
Data on airports around the world, their codes, official websites, and much more
@kaggle.patrasaurabh_airstats_data_on_airports_around_the_world
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
);
CREATE TABLE countries (
"id" BIGINT,
"code" VARCHAR,
"name" VARCHAR,
"continent" VARCHAR,
"wikipedia_link" VARCHAR,
"keywords" VARCHAR
);
CREATE TABLE regions (
"id" BIGINT,
"code" VARCHAR,
"local_code" VARCHAR,
"name" VARCHAR,
"continent" VARCHAR,
"iso_country" VARCHAR,
"wikipedia_link" VARCHAR,
"keywords" VARCHAR
);
Anyone who has the link will be able to view this.