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
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.