Skip to content

Exploring London's Travel Network

London, or as the Romans called it "Londonium"! Home to over 8.5 million residents who speak over 300 languages. While the City of London is a little over one square mile (hence its nickname "The Square Mile"), Greater London has grown to encompass 32 boroughs spanning a total area of 606 square miles!

Given the city's roads were originally designed for horse and cart, this area and population growth has required the development of an efficient public transport system! Since the year 2000, this has been through the local government body called Transport for London, or TfL, which is managed by the London Mayor's office. Their remit covers the London Underground, Overground, Docklands Light Railway (DLR), buses, trams, river services (clipper and Emirates Airline cable car), roads, and even taxis.

The Mayor of London's office make their data available to the public here. In this project, you will work with a slightly modified version of a dataset containing information about public transport journey volume by transport type.

The data has been loaded into an AWS Redshift database called tfl with a single table called journeys, including the following data:

tfl.journeys

ColumnDefinitionData type
monthMonth in number format, e.g., 1 equals JanuaryINTEGER
yearYearINTEGER
daysNumber of days in the given monthINTEGER
report_dateDate that the data was reportedDATE
journey_typeMethod of transport usedVARCHAR
journeys_millionsMillions of journeys, measured in decimalsFLOAT

You will execute SQL queries to answer three questions, as listed in the instructions.

What are the most popular transport types, measured by the total number of journeys?

The output should contain two columns, journey_type and total_journeys_millions, and be sorted by the second column in descending order. Save the query as most_popular_transport_types.

Spinner
DataFrameas
most_popular_transport_types
variable
-- most_popular_transport_types
SElECT
	journey_type,
	SUM(journeys_millions) AS total_journeys_millions
FROM tfl.journeys
GROUP BY journey_type
ORDER BY total_journeys_millions DESC;

Which five months and years were the most popular for the Emirates Airline?

Return an output containing month, year, and journeys_millions, with the latter rounded to two decimal places and aliased as rounded_journeys_millions. Exclude null values and save the result as emirates_airline_popularity.

Spinner
DataFrameas
emirates_airline_popularity
variable
-- emirates_airline_popularity
SELECT
	month,
	year,
	ROUND(journeys_millions, 2) AS rounded_journeys_millions
FROM tfl.journeys
WHERE journey_type = 'Emirates Airline'
	AND rounded_journeys_millions IS NOT NULL
ORDER BY rounded_journeys_millions DESC
LIMIT 5;

Find the five years with the lowest volume of Underground & DLR journeys, saving as least_popular_years_tube. The results should contain the columns year, journey_type, and total_journeys_millions.

Spinner
DataFrameas
least_popular_years_tube
variable
-- least_popular_years_tube
SELECT
	year,
	journey_type,
	SUM(journeys_millions) AS total_journeys_millions
FROM tfl.journeys
WHERE journey_type LIKE '%Underground%'
GROUP BY year, journey_type
ORDER BY total_journeys_millions ASC
LIMIT 5;