An introduction to origin-destination data

remotes::install_github("paleolimbot/rbbt")
# run once to get citations
library(rbbt)
bbt_write_bib("vignettes/od.json", bbt_detect_citations("vignettes/od.Rmd"), overwrite = TRUE)

# Previous attempts (all failed):
# system.time({
#   citr::tidy_bib_file(rmd_file = "vignettes/od.Rmd", messy_bibliography = "~/robinlovelace/static/bibs/allrefs.bib", file = "vignettes/od-references.bib")
# })
# in bash
# sudo pip3 install -U extract_bib
# extract_bib --bibtex-file ~/robinlovelace/static/bibs/allrefs.bib vignettes/od.Rmd vignettes/od.bib
# pandoc --filter pandoc-citeproc vignettes/od.Rmd -s -o vignettes/od.bib
knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  eval = TRUE
)
options(stringsAsFactors = FALSE)

Introduction: what is OD data?

As the name suggests, origin-destination (OD) data represents movement through geographic space, from an origin (O) to a destination (D). Sometimes also called 'flow data', OD datasets contain details of trips between two geographic points or, more commonly, zones (which are often represented by a zone centroid). Most OD datasets refer to start and end locations with 'ID' columns containing character strings such as zone1. These IDs refer to a geographic feature in a separate geographic dataset. Origin and destination locations are sometimes represented as geographic coordinates.

OD datasets typically contain multiple non geographic attributes. These usually include, at a minimum, the number of trips that take place from the origin to the destination over a given time period (e.g. a typical work day). Additional attributes can include breakdown by the mode(s) of transport used for the trips. Usually only a single mode is captured (trips made by a combination of cycle-train-walk modes are often counted only as 'train' trips). Additional disaggregations of overall counts may include trip counts at different time periods.

Many OD datasets omit information. If there is only one time period, then this resides in the metadata for the whole data set. There is rarely any information about the path taken between the start and end points. It is typically the job of the analyst to use a routing service (such as OSRM, Google Directions API, CycleStreets.net or OpenRouteService) or an assignment model to identify likely routes with reference to shortest path algorithms or generalised cost minimisation algorithms (which account for monetary plus time and quality 'costs').

The importance of OD data

Despite the rather dull name, OD datasets are a vital part of the modern world: they underpin analysis and models that influence current and future transport systems. Historically, these models, and the OD datasets that drove them, were used to plan for car-dominated cities [@boyce_forecasting_2015]. Now that there is growing evidence of the negative impacts car domination, however, there is a strong argument for transport models being repurposed. Origin-destination data can be part of the solution.

From a health perspective transport planning, supported by OD data and analysed primarily using proprietary software and opaque methods, has failed: roads are now the largest cause of death of young people worldwide, killing more than 1 million people each year [@worldhealthorganization_global_2018]. Even ignoring problems such as air pollution, obesity and climate change, it is clear that current transport systems are unsustainable. There are other reasons why transport data analysis and software are important [@lovelace_stplanr_2018].

The purpose of this vignette is to introduce OD data, an important component of many transport planning models, with examples based on data and functions from the stplanr package. The aim is to enable you to use OD data to inform more sustainable transport plans, for example by identifying 'desire lines' along which policies could cause a modal switch away from cars and towards lower energy modes such as walking, cycling, and public transport.

The od package

The od package was developed to provide a unified set of functions for representing, transforming and working OD data. Like the stats19 and cyclestreets packages, od started life as functions in the stplanr package, which provides methods for working with a range of transport datasets, focussed on geographic representations and sustainable modes [@lovelace_stplanr_2018].

Install and load the package as follows:

install.packages("od")
# remotes::install_github("itsleeds/od") # for the dev version
library(od)

Representing origin-destination data

OD data can be accessed from a range of sources (we will see code that downloads many thousands of OD pairs later in this vignette). Some 'data carpentry' may be needed before the OD data is ready for analysis. This vignette does not cover cleaning OD data: we assume you know R and come with 'tidy' data [@wickham_tidy_2014], in which each row represents travel between an origin and a destination (typically zones represented by zone IDs), and each column represents an attribute such as number of trips or vehichle counts by mode or straight line distance.^[ It may be difficult to convert between 'number of trip' and 'number of vehicle' counts for modes in which a single vehicle can contain many people, such as cars (a problem that can be overcome when surveys differentiate between car driver and 'car passenger' as distinct modes), buses and trams if occupancy levels are unknown. Typically OD data only report single stage trips, but multi-modal trips such as walk-rail-cycle can be represented when such a combination of modes is represented by a new, unique, mode. ]

A minimal od dataset

At its most basic, a single trip can be OD data, as illustrated in the simple example dataset below. The concept can be illustrated by an example of travel between two cities. As mentioned above, OD data is a data frame that contains at least two columns, one representing an origin and one representing a destination. The code below creates a data frame with one row representing movement between the cities of Leeds and London:

od_data_example = data.frame(
  o = "Leeds",
  d = "London"
)
od_data_example

Most OD datasets have attributes associated with movement between the two places. In this case we can represent the number of trips I make from Leeds to London per year with a new column as follows:

od_data_example$trips_per_year = 10
od_data_example

Furthermore, if we have geographic representations of the origin and destination datasets, in a separate object called p (short for points) we can create a geographical representation of the data as follows:

# get leeds and london locations
tmaptools::geocode_OSM("Leeds")
tmaptools::geocode_OSM("London")
p = sf::st_as_sf(
  data.frame(
    name = c("Leeds", "London"),
    lon = c(-1.5, -0.1),
    lat = c(53.8, 51.5)
    ),
  coords = c("lon", "lat"),
  crs = 4326
  )
p

This can be plotted as follows (result from mapview shown):

plot(p)
mapview::mapview(p)
knitr::include_graphics("https://user-images.githubusercontent.com/1825120/78998042-b18a2c00-7b3f-11ea-9d08-21be332633fc.png")

The plot above shows that OD datasets are fundamentally geographic, although they are not always represented geographically. To convert the non-geographic OD dataset into a geographic object, we can use the od_to_sf() function from the od package as follows:

desire_line_example = od_to_sf(od_data_example, p)
desire_line_example

We just converted the data frame into a 'geographic data frame', with the origin-destination data represented geographically as a straight 'desire line' between the origin and destination point. This can be useful for many things, not least visualisation, as shown below:

mapview::mapview(desire_line_example)
knitr::include_graphics("https://user-images.githubusercontent.com/1825120/78998661-f6fb2900-7b40-11ea-88a5-429f7dae31af.png")

OD data representing travel to work

This next example uses a small dataset that comes pre-loaded with the package, called od_data_df. We will copy it into an object called od to be concise, and to highlight the fact that these operations can be generalised to many OD datasets.

# example data from the od package:
od = od::od_data_df
class(od)
library(stplanr)
library(dplyr)
od = stplanr::od_data_sample %>%
  select(-matches("rail|name|moto|car|tax|home|la_")) %>%
  top_n(n = 14, wt = all)
class(od)
od
od_all = od::od_data_df_medium
od = od_all[od_all$all > 700, ]

Like all data, the object od, created in the preceding code chunk, comes from a specific context, the 2011 UK Census questions:

od is an origin-destination dataset represented as a data frame containing aggregated answers to these questions (see ?pct::get_od() for details). It is implicitly geographic: the first two columns refer to geographic entities but do not contain coordinates themselves (OD coordinates are covered below). Other columns contain attributes associated with each OD pair, typically counting how many people travel by mode of transport, as shown by printing the contents of od:

od

OD data can be represented in a number of ways, as outlined in the next sections.

Origin-destination pairs (long form)

The most common way of representing OD data in the 21^st^ century is the 'long' data frame format described above. This is increasingly the format used by official statistical agencies, including the UK's Office for National Statistics (ONS), who provide origin destination data as a .csv file. Typically, the first column is the zone code of origin and the second column is the zone code of the destination, as is the case with the object od. Subsequent columns contain attributes such as all, meaning trips by all modes, as illustrated below (we will see a matrix representation of this subset of the data in the next section):

od[1:3]

geo_code1 refers to the origin, geo_code2 refers to the destination.

Additional columns can represent addition attributes, such as number of trips by time, mode of travel, type of person, or trip purpose. The od dataset contains column names representing mode of travel (train, bus, bicycle etc), as can be seen with names(od[-(1:2)]). These 'mode' columns contain integers in the example data, but contain characters, dates and other data types, taking advantage of the flexibility of data frames.

Origin destination matrices

The 'OD matrix' representation of OD data represents each attribute column in the long form as a separate matrix. Instead of rows representing OD pairs, rows represent all travel from each origin to all destinations (represented as columns). The stplanr function od_to_odmatrix() converts between the 'long' to the 'matrix' form on a per column basis, as illustrated below:

od_matrix = od_to_odmatrix(od[1:3])
class(od_matrix)
od_matrix

Note that row and column names are now zone codes. The cell in row 1 and column 2 (od_matrix[1, 2]), for example, reports that there are 94 trips from zone E02002361 to zone E02002393. In the case above, no people travel between the majority of the OD pair combinations, as represented by the NAs. OD matrices are a relatively rudimentary data structure that pre-date R's data.frame class. Typically, they only contained integer counts, providing small and simple datasets that could be used in 20^th^ Century transport modelling software running on limited 20^th^ Century hardware.

Although 'OD matrix' is still sometimes used informally to refer to any OD datadset, the long OD pair representation is recommended: OD matrices become unwieldy for large OD datasets, which are likely to be sparse, with many empty cells represented by NAs. Furthermore, to represent many attributes in matix format, multiple lists of OD matrices or 'OD arrays' must be created. This is demonstrated in the code chunk below, which represents travel between OD pairs by all modes and by bike:

lapply(c("all", "bicycle"), function(x) od_to_odmatrix(od[c("geo_code1", "geo_code2", x)]))

The function odmatrix_to_od() can convert OD matrices back into the more convenient long form:

odmatrix_to_od(od_matrix)

Inter and intra-zonal flows

A common, and sometimes problematic, feature of OD data is 'intra-zonal flows'. These are trips that start and end in the same zone. The proportion of travel that is intra-zonal depends largely on the size of the zones used. It is often useful to separate intra-zonal and inter-zonal flows at the outset, as demonstrated below:

(od_inter = od_interzone(od))
(od_intra = od_intrazone(od))

Intra-zonal OD pairs represent short trips (up to the size of the zone within which the trips take place) so are sometimes ignored in OD data analyis. However, intra-zonal flows can be valuable, for example in measuring the amount of localised transport activity and as a sign of local economic activity.

Bidirectional aggregation

Another subtly with some (symetric, where origins and destinations can be the same points) OD data is that oneway flows can hide the extent of bidirectional flows in plots and other types of analysis. This is illustrated below for a sample of the od dataset:

(od_min = tail(od, 3))
(od_oneway = od_oneway(od_min))

Note that in the second dataset there are only 2 rows instead of 3. The function od_oneway() aggregates oneway lines to produce bidirectional flows. By default, it returns the sum of each numeric column for each bidirectional origin-destination pair.

Desire lines

The previous representations of OD data are all implicitly geographic: their coordinates are not contained in the data, but associated with another object that is geographic, typically a zone or a zone centroid. This is problematic, meaning that multiple objects or files are required to fully represent the same data. Desire line representations overcome this issue. They are geographic lines between origin and destination, with the same attributes as in the 'long' representation.

od_to_sf() can convert long form OD data to desire lines. The second argument is a zone or a centroid dataset that contains 'zone IDs' that match the IDs in the first and second columns of the OD data, as illustrated below:

z = od::od_data_zones_min
class(z)
desire_lines = od_to_sf(od_inter, z)

The preceding code chunk created a zones object called z, the coordinates of which were used to convert the object od into desire_lines, which are geographic desire lines. The desire line object is stored in as a geographic simple features object, which has the same number of rows as does the object od and one more column:

class(desire_lines)
nrow(od) - nrow(desire_lines)
ncol(desire_lines) - ncol(od)

The new column is the geometry column, which can be plotted as follows:

plot(desire_lines$geometry)

By default, plotting desire_lines shows the attributes for each line:

plot(desire_lines)

Because these lines have a coordinate reference system (CRS) inherited from the zones data, they can also be plotted on an interactive map, as follows (result not shown, requires the tmap package):

library(tmap)
tmap_mode("view")
qtm(desire_lines)

Non-matching IDs

Note that in some OD datasets there may be IDs that match no zone. We can simulate this situation by setting the third origin ID of od to nomatch, a string that is not in the zones ID:

od_geo_code2_3 = od$geo_code2[3]
od$geo_code2[3] = "nomatch"
od_to_sf(od, z)

Note the message saying that the non-matching row was removed (the equivalent code from the stplanr package generated an error message). It's worth checking/cleaning your OD data and ensure all ids in the first two columns match the ids in the first column of the zone data before running od_to_sf().

od$geo_code2[3] = od_geo_code2_3

Aggregating and disaggregating OD data

The data shown in the previous examples is quite low resolution. Imagine you want to split each desire line into multiple lines, e.g. for some kind of simulation. You can do this by assigning origins and destinations to specific subzones with od_disaggregate() (also called od_split()):

od = od_data_df[1:2, c(1, 2, 9, 4)]
subzones = od_data_zones_small
od_disaggregated = od_disaggregate(od, z, subpoints = subzones, max_per_od = 5)
plot(od_data_zones_min$geometry, lwd = 3)
plot(od_data_zones_small$geometry, lwd = 1, add = TRUE)
plot(desire_lines$geometry, lwd = 5, col = "red", add = TRUE)
plot(od_disaggregated$geometry, lwd = 0.4, col = "blue", add = TRUE)
# plot(od_disaggregated$geometry[1:5])

This preserves column totals:

sapply(3:4, function(i) sum(od[[i]]))
sapply(3:4, function(i) sum(od_disaggregated[[i]]))

This also allows the simulation of building-to-building travel.

od_disaggregated2 = od_disaggregate(od, z, subpoints = od_data_buildings)
plot(od_data_buildings$geometry)
plot(od_disaggregated2$geometry, add = TRUE, lwd = 0.1)
# various attempts highlighting possible issues with od_disaggregate
buildings = od_data_buildings
od_minimal = od_data_df[1:2]
od_disaggregated2 = od_disaggregate(od = od_minimal, z = z, subpoints = buildings)
sub_points = sf::st_sample(x = z, size = rep(50, nrow(z)))
sub_points_sf = sf::st_as_sf(sub_points)
sub_zones_sf = sf::st_as_sf(sf::st_buffer(sub_points, dist = 0.001))
plot(z$geometry)
plot(sub_zones_sf, add = TRUE)
# currently only assigns to 1st point in each zone it seems:
# od_disaggregated2 = od_disaggregate(od, z, subpoints = sub_points_sf)
od_disaggregated2 = od_disaggregate(od, z, sub_zones_sf)
plot(od_disaggregated2$geometry, add = TRUE)
plot(od_disaggregated2[1:50, ])
# od_disaggregated2 = od_disaggregate(od = od, z = z, subpoints = buildings) # error

Further reading

Despite the importance of origin-destination datasets for transport research, there are few guides dedicated to working with them using open source software. The following suggestions are based on my own reading --- if you have any other suggestions of good resources for working with OD data, let me know!

References



Try the od package in your browser

Any scripts or data that you put into this service are public.

od documentation built on Sept. 11, 2024, 9:04 p.m.