U.S. International Air Traffic Data(1990-2020)
Airport and airline Traffic by US and International Carriers
@kaggle.parulpandey_us_international_air_traffic_data
Airport and airline Traffic by US and International Carriers
@kaggle.parulpandey_us_international_air_traffic_data
The data comes from the U.S. International Air Passenger and Freight Statistics Report. As part of the T-100 program, USDOT receives traffic reports of US and international airlines operating to and from US airports. There are two datasets available:
Each observation provides information on a specific airline for a pair of airports, one in the US and the other outside. Three main columns record the number of flights: Scheduled, Charter, and Total.
U.S. International Air Passenger and Freight data are confidential for a period of 6 months, after which it can be released. As a result, quarterly reports and the year to date/calendar year raw data files available here will always lag by two quarters.
Data Provided by the Department of Transportation Office of the Assistant Secretary for Aviation and International Affairs.
Updated: December 16, 2020
Dataset Owner: Randall_Keizer
CREATE TABLE international_report_departures (
"data_dte" TIMESTAMP,
"year" BIGINT,
"month" BIGINT,
"usg_apt_id" BIGINT,
"usg_apt" VARCHAR,
"usg_wac" BIGINT,
"fg_apt_id" BIGINT,
"fg_apt" VARCHAR,
"fg_wac" BIGINT,
"airlineid" BIGINT,
"carrier" VARCHAR,
"carriergroup" BIGINT,
"type" VARCHAR,
"scheduled" BIGINT,
"charter" BIGINT,
"total" BIGINT
);CREATE TABLE international_report_passengers (
"data_dte" TIMESTAMP,
"year" BIGINT,
"month" BIGINT,
"usg_apt_id" BIGINT,
"usg_apt" VARCHAR,
"usg_wac" BIGINT,
"fg_apt_id" BIGINT,
"fg_apt" VARCHAR,
"fg_wac" BIGINT,
"airlineid" BIGINT,
"carrier" VARCHAR,
"carriergroup" BIGINT,
"type" VARCHAR,
"scheduled" BIGINT,
"charter" BIGINT,
"total" BIGINT
);Anyone who has the link will be able to view this.