Flight Route Database
A database of 59,036 flight routes
@kaggle.open_flights_flight_route_database
A database of 59,036 flight routes
@kaggle.open_flights_flight_route_database
As of January 2012, the OpenFlights/Airline Route Mapper Route Database contains 59036 routes between 3209 airports on 531 airlines spanning the globe.
The data is ISO 8859-1 (Latin-1) encoded.
Each entry contains the following information:
The special value \N is used for "NULL" to indicate that no value is available.
Notes:
This dataset was downloaded from Openflights.org under the Open Database license. This is an excellent resource and there is a lot more on their website, so check them out!
CREATE TABLE routes (
"airline" VARCHAR,
"airline_id" VARCHAR,
"n__source_airport" VARCHAR -- Source Airport,
"n__source_airport_id" VARCHAR -- Source Airport Id,
"n__destination_apirport" VARCHAR -- Destination Apirport,
"n__destination_airport_id" VARCHAR -- Destination Airport Id,
"n__codeshare" VARCHAR -- Codeshare,
"n__stops" BIGINT -- Stops,
"n__equipment" VARCHAR -- Equipment
);Anyone who has the link will be able to view this.