Russian Passenger Air Service 2007-2020
Detailed data on the passenger traffic of Russian airports
@kaggle.vitaliymalcev_russian_passenger_air_service_20072020
Detailed data on the passenger traffic of Russian airports
@kaggle.vitaliymalcev_russian_passenger_air_service_20072020
Information about passenger traffic at Russian airports from 2007 to 2020. Taken from the official website of the Ministry of Transport of the Russian Federation, translated and geocoded by me.
File contains information abaut passager air traffic in ecah of airport by month. Airports also have a geo coordinates.
The analysis of passenger traffic over a long period can be used to forecast different indicators. For example, the spread of coronovirus in Russia.
Fixed mistake and now this data set contains two different files with passangers and cargo-parcels traffic.
CREATE TABLE russian_air_service_cargo_and_parcels (
"airport_name" VARCHAR,
"year" BIGINT,
"january" DOUBLE,
"february" DOUBLE,
"march" DOUBLE,
"april" DOUBLE,
"may" DOUBLE,
"june" DOUBLE,
"july" DOUBLE,
"august" DOUBLE,
"september" DOUBLE,
"october" DOUBLE,
"november" DOUBLE,
"december" DOUBLE,
"whole_year" DOUBLE,
"airport_coordinates" VARCHAR
);CREATE TABLE russian_passenger_air_service_2 (
"airport_name" VARCHAR,
"year" BIGINT,
"january" DOUBLE,
"february" DOUBLE,
"march" DOUBLE,
"april" DOUBLE,
"may" DOUBLE,
"june" DOUBLE,
"july" DOUBLE,
"august" DOUBLE,
"september" DOUBLE,
"october" DOUBLE,
"november" DOUBLE,
"december" DOUBLE,
"whole_year" DOUBLE,
"airport_coordinates" VARCHAR
);Anyone who has the link will be able to view this.