R: Basic usage of r5r#

Credits:

This tutorial is a direct copy from r5r -documentation made by Rafael H. M. Pereira, Marcus Saraiva, Daniel Herszenhut, Carlos Kaue Braga.

Getting started#

Run these codes in Binder#

Before you can run this Notebook, and/or do any programming, you need to launch the Binder instance. You can find buttons for activating the python environment at the top-right of this page which look like this:

Launch Binder

Working with Jupyter Notebooks#

Jupyter Notebooks are documents that can be used and run inside the JupyterLab programming environment containing the computer code and rich text elements (such as text, figures, tables and links).

A couple of hints:

  • You can execute a cell by clicking a given cell that you want to run and pressing Shift + Enter (or by clicking the “Play” button on top)

  • You can change the cell-type between Markdown (for writing text) and Code (for writing/executing code) from the dropdown menu above.

See further details and help for using Notebooks and JupyterLab from here.

1. Introduction#

r5r is an R package for rapid realistic routing on multimodal transport networks (walk, bike, public transport and car). It provides a simple and friendly interface to R5, a really fast and open source Java-based routing engine developed separately by Conveyal. R5 stands for Rapid Realistic Routing on Real-world and Reimagined networks. More details about r5r can be found on the package webpage or on this paper.

2. Installation#

You can install r5r from CRAN, or the development version from github.

# CRAN
#install.packages('r5r')

# github
#devtools::install_github("ipeaGIT/r5r", subdir = "r-package")

Please bear in mind that you need to have Java SE Development Kit 11 installed on your computer to use r5r. No worries, you don’t have to pay for it. The jdk 11 is freely available from the options below:

  • OpenJDK

  • Oracle If you don’t know what version of Java you have installed on your computer, you can check it by running this on R console.

rJava::.jinit()
rJava::.jcall("java.lang.System", "S", "getProperty", "java.version")
'11.0.1'

3. Usage#

Before we start, we need to increase the memory available to Java. This is necessary because, by default, R allocates only 512MB of memory for Java processes, which is not enough for large queries using r5r. To increase available memory to 2GB, for example, we need to set the java.parameters option at the beginning of the script, as follows:

options(java.parameters = "-Xmx2G")

Note: It’s very important to allocate enough memory before loading r5r or any other Java-based package, since rJava starts a Java Virtual Machine only once for each R session. It might be useful to restart your R session and execute the code above right after, if you notice that you haven’t succeeded in your previous attempts.

Then we can load the packages used in this vignette:

library(r5r)
library(sf)
library(data.table)
library(ggplot2)
Linking to GEOS 3.11.0, GDAL 3.5.3, PROJ 9.1.0; sf_use_s2() is TRUE

The r5r package has five fundamental functions:

  1. setup_r5() to initialize an instance of r5r, that also builds a routable transport network;

  2. accessibility() for fast computation of access to opportunities considering a selected decay function;

  3. travel_time_matrix() for fast computation of travel time estimates between origin/destination pairs;

  4. expanded_travel_time_matrix() for calculating travel matrices between origin destination pairs with additional information such routes used and total time disaggregated by access, waiting, in-vehicle and transfer times.

  5. detailed_itineraries() to get detailed information on one or multiple alternative routes between origin/destination pairs.

Most of these functions also allow users to account for monetary travel costs when generating travel time matrices and accessibility estimates. More info about how to consider monetary costs can be found in this vignette.

3.1 Data requirements:#

To use r5r, you will need:

  • A road network data set from OpenStreetMap in .pbf format (mandatory)

  • A public transport feed in GTFS.zip format (optional)

  • A raster file of Digital Elevation Model data in .tif format (optional)

Here are a few places from where you can download these data sets:

4. Demonstration on sample data#

Data#

To illustrate the functionalities of r5r, the package includes a small sample data for the city of Porto Alegre (Brazil). It includes seven files:

  • An OpenStreetMap network: poa_osm.pbf

  • Two public transport feeds: poa_eptc.zip and poa_trensurb.zip

  • A raster elevation data: poa_elevation.tif

  • A poa_hexgrid.csv file with spatial coordinates of a regular hexagonal grid covering the sample area, which can be used as origin/destination pairs in a travel time matrix calculation.

  • A poa_points_of_interest.csv file containing the names and spatial coordinates of 15 places within Porto Alegre

  • A fares_poa.zip file with the fare rules of the city’s public transport system.

data_path <- system.file("extdata/poa", package = "r5r")
list.files(data_path)
  1. 'fares'
  2. 'poa_elevation.tif'
  3. 'poa_eptc.zip'
  4. 'poa_hexgrid.csv'
  5. 'poa_osm.pbf'
  6. 'poa_points_of_interest.csv'
  7. 'poa_trensurb.zip'

The points of interest data can be seen below. In this example, we will be looking at transport alternatives between some of those places.

poi <- fread(file.path(data_path, "poa_points_of_interest.csv"))
head(poi)
A data.table: 6 × 3
idlatlon
<chr><dbl><dbl>
public_market -30.02756-51.22781
bus_central_station-30.02329-51.21886
gasometer_museum -30.03404-51.24095
santa_casa_hospital-30.03043-51.22240
townhall -30.02800-51.22865
piratini_palace -30.03363-51.23068

The data with origin destination pairs is shown below. In this example, we will be using 200 points randomly selected from this data set.

points <- fread(file.path(data_path, "poa_hexgrid.csv"))
# sample points
sampled_rows <-  sample(1:nrow(points), 200, replace=TRUE)
points <- points[ sampled_rows, ]
head(points)
A data.table: 6 × 8
V1idlonlatpopulationschoolsjobshealthcare
<int><chr><dbl><dbl><int><int><int><int>
4989a90129e8bffff-51.15162-30.04053 6720 900
98889a90128103ffff-51.21625-30.05861 82302010
121689a90129bbbffff-51.17763-30.00641 63715660
120389a9012880bffff-51.23320-30.02665 20 00
110489a90129e8fffff-51.15460-30.03890 8730 940
65889a90128667ffff-51.17425-30.0732912080 110

4.1 Building routable transport network with setup_r5()#

The first step is to build the multimodal transport network used for routing in R5. This is done with the setup_r5 function. This function does two things: (1) downloads/updates a compiled JAR file of R5 and stores it locally in the r5r package directory for future use; and (2) combines the osm.pbf and gtfs.zip data sets to build a routable network object.

# Indicate the path where OSM and GTFS data are stored
r5r_core <- setup_r5(data_path = data_path)
Downloading R5 jar file to /home/hentenka/.conda/envs/mamba/envs/r5/lib/R/library/r5r/jar/r5-v6.7-all.jar


Finished building network.dat at /home/hentenka/.conda/envs/mamba/envs/r5/lib/R/library/r5r/extdata/poa/network.dat

4.2 Accessibility analysis#

The faster way to calculate accessibility estimates is using the accessibility() function. In this example, we calculate the number of schools and health care facilities accessible in less than 60 minutes by public transport and walking. More details in this vignette on Calculating and visualizing Accessibility.

# set departure datetime input
departure_datetime <- as.POSIXct("13-05-2019 14:00:00",
                                 format = "%d-%m-%Y %H:%M:%S")
# calculate accessibility
access <- accessibility(r5r_core = r5r_core,
                        origins = points,
                        destinations = points,
                        opportunities_colnames = c("schools", "healthcare"),
                        mode = c("WALK", "TRANSIT"),
                        departure_datetime = departure_datetime,
                        decay_function = "step",
                        cutoffs = 60
                        )
head(access)
A data.table: 6 × 5
idopportunitypercentilecutoffaccessibility
<chr><chr><int><int><dbl>
89a90129e8bffffschools 506031
89a90129e8bffffhealthcare506017
89a90128103ffffschools 506032
89a90128103ffffhealthcare506018
89a90129bbbffffschools 506028
89a90129bbbffffhealthcare506012

4.3 Routing analysis#

For fast routing analysis, r5r currently has three core functions: travel_time_matrix(), expanded_travel_time_matrix() and detailed_itineraries().

Fast many to many travel time matrix#

The travel_time_matrix() function is a really simple and fast function to compute travel time estimates between one or multiple origin/destination pairs. The origin/destination input can be either a spatial sf POINT object, or a data.frame containing the columns id, lon, lat. The function also receives as inputs the max walking distance, in meters, and the max trip duration, in minutes. Resulting travel times are also output in minutes. This function also allows users to very efficiently capture the travel time uncertainties inside a given time window considering multiple departure times. More info on this vignette.

# set inputs
mode <- c("WALK", "TRANSIT")
max_walk_time <- 30 # minutes
max_trip_duration <- 120 # minutes
departure_datetime <- as.POSIXct("13-05-2019 14:00:00",
                                 format = "%d-%m-%Y %H:%M:%S")
# calculate a travel time matrix
ttm <- travel_time_matrix(r5r_core = r5r_core,
                          origins = poi,
                          destinations = poi,
                          mode = mode,
                          departure_datetime = departure_datetime,
                          max_walk_time = max_walk_time,
                          max_trip_duration = max_trip_duration)
head(ttm)
A data.table: 6 × 3
from_idto_idtravel_time_p50
<chr><chr><int>
public_marketpublic_market 0
public_marketbus_central_station13
public_marketgasometer_museum 10
public_marketsanta_casa_hospital15
public_markettownhall 3
public_marketpiratini_palace 17

Expanded travel time matrix with minute-by-minute estimates#

For those interested in more detailed outputs, the expanded_travel_time_matrix() works very similarly with travel_time_matrix() but it brings much more information. It estimates for each origin destination pair the routes used and total time disaggregated by access, waiting, in-vehicle and transfer times. Please note this function can be very memory intensive for large data sets.

# calculate a travel time matrix
ettm <- expanded_travel_time_matrix(r5r_core = r5r_core,
                          origins = poi,
                          destinations = poi,
                          mode = mode,
                          departure_datetime = departure_datetime,
                          breakdown = TRUE,
                          max_walk_time = max_walk_time,
                          max_trip_duration = max_trip_duration)
head(ettm)
A data.table: 6 × 12
from_idto_iddeparture_timedraw_numberaccess_timewait_timeride_timetransfer_timeegress_timeroutesn_ridestotal_time
<chr><chr><chr><int><dbl><dbl><dbl><dbl><dbl><chr><int><dbl>
public_marketpublic_market 14:00:0010.00.00.00 0.0[WALK]0 0.0
public_marketbus_central_station14:00:0012.62.41.50 7.4D73 113.9
public_marketgasometer_museum 14:00:0012.91.14.50 1.82821 110.3
public_marketsanta_casa_hospital14:00:0010.00.00.00 0.0[WALK]015.3
public_markettownhall 14:00:0010.00.00.00 0.0[WALK]0 3.5
public_marketpiratini_palace 14:00:0012.91.11.3011.82821 117.1

Detailed itineraries#

Most routing packages only return the fastest route. A key advantage of the detailed_itineraries() function is that is allows for fast routing analysis while providing multiple alternative routes between origin destination pairs. The output also brings detailed information for each route alternative at the trip segment level, including the transport mode, waiting times, travel time and distance of each trip segment. In this example below, we want to know some alternative routes between one origin/destination pair only.

# set inputs
origins <- poi[10,]
destinations <- poi[12,]
mode <- c("WALK", "TRANSIT")
max_walk_time <- 60 # minutes
departure_datetime <- as.POSIXct("13-05-2019 14:00:00",
                                 format = "%d-%m-%Y %H:%M:%S")
# calculate detailed itineraries
det <- detailed_itineraries(r5r_core = r5r_core,
                            origins = origins,
                            destinations = destinations,
                            mode = mode,
                            departure_datetime = departure_datetime,
                            max_walk_time = max_walk_time,
                            shortest_path = FALSE)
head(det)
Registered S3 method overwritten by 'geojsonsf':
  method        from   
  print.geojson geojson
A sf: 5 × 17
from_idfrom_latfrom_lonto_idto_latto_lonoptiondeparture_timetotal_durationtotal_distancesegmentmodesegment_durationwaitdistanceroutegeometry
<chr><dbl><dbl><chr><dbl><dbl><int><chr><dbl><int><int><chr><dbl><dbl><int><chr><LINESTRING [°]>
1farrapos_station-29.99772-51.19762praia_de_belas_shopping_center-30.04995-51.22875114:00:5444.494601WALK 4.60.0 174 LINESTRING (-51.1981 -29.99...
2farrapos_station-29.99772-51.19762praia_de_belas_shopping_center-30.04995-51.22875114:00:5444.494602RAIL 6.69.54796LINHA1LINESTRING (-51.19763 -29.9...
3farrapos_station-29.99772-51.19762praia_de_belas_shopping_center-30.04995-51.22875114:00:5444.494603WALK 5.70.0 256 LINESTRING (-51.22827 -30.0...
4farrapos_station-29.99772-51.19762praia_de_belas_shopping_center-30.04995-51.22875114:00:5444.494604BUS 10.44.44083188 LINESTRING (-51.22926 -30.0...
5farrapos_station-29.99772-51.19762praia_de_belas_shopping_center-30.04995-51.22875114:00:5444.494605WALK 3.20.0 151 LINESTRING (-51.22949 -30.0...

The output is a data.frame sf object, so we can easily visualize the results.

Visualize results#

Static visualization with ggplot2 package: To provide a geographic context for the visualization of the results in ggplot2, you can also use the street_network_to_sf() function to extract the OSM street network used in the routing.

# extract OSM network
street_net <- street_network_to_sf(r5r_core)
# extract public transport network
transit_net <- transit_network_to_sf(r5r_core)
# plot
ggplot() +
  geom_sf(data = street_net$edges, color='gray85') +
  geom_sf(data = det, aes(color=mode)) +
  facet_wrap(.~option) + 
  theme_void()
../../_images/572c667c116c529a216c3447fc107850e6725a30d4d220527b286a2a76377cd0.png

Cleaning up after usage#

r5r objects are still allocated to any amount of memory previously set after they are done with their calculations. In order to remove an existing r5r object and reallocate the memory it had been using, we use the stop_r5 function followed by a call to Java’s garbage collector, as follows:

r5r::stop_r5(r5r_core)
rJava::.jgc(R.gc = TRUE)
r5r_core has been successfully stopped.

If you have any suggestions or want to report an error, please visit the package GitHub page.