The use of a personal vehicle remains a dominant mode of transport even in cities. The urban environment has been extensively developed with vehicle use in mind. But this is changing in light of research indicating the negative impact that cars have on cities and their inhabitants. To name a few, noise and particle pollution, congestion, requirement for large parking areas, collision danger (Hidalgo 2020; Fleury et al. 2021; Saunders et al. 2013).
Active travel (AT) represents a simple yet powerful alternative to private vehicle use. A great amount of car trips on short distances could be made by AT.
Contributing to this shift in priorities involves having accurate representation of walkable and cyclable networks. And a quantitative understanding of AT mobility.
Developing further models for predicting the use of such modes of transport is important for promoting the right change in the transport infrastructure.
Puts active travel in the center of the discussion on redevelopment of local areas and global transport connectivity.
Area assessments should cover the elements … 4) Existing and planned transport networks (particularly walking & cycling networks) and public transportation connectivity.
Cities mentioning AT as a priority in their mobility strategy are spread around the world: Chicago, New York, Singapour, Paris and more…
The QUANT model (Batty and Milton 2021) for benchmarking transport or employment change from the point of view of sustainability and benefit for commuting journeys. A country scale SIM. Ultimately provide a user friendly, open source, highly efficient model capable of running country scale scenarios within seconds to the relevant actors.
The many open source tools out there aim at solving various aspects, combining them into one workflow that allows to build a full, self-sufficient model from scratch with ease of scalability, review some of the tools on the way and develop when missing appeared relevant.
In order to get a more comprehensive understanding of the various methods, data sources, existing software available, we experimented with workflows that would combine a testing process of the various steps involved.
Network
Routing
Spatial interaction
One being the main reference for open source georeferenced information in the world, the other being the official data set of roads in the UK.
Map by Valentina Maureira
Map by Valentina Maureira
Map by Valentina Maureira
Comparing commonly used packages: tidygraph (Pedersen 2023) and sf_networks (Meer et al. 2022), wrappers of igraph (Csardi and Nepusz 2006), dodgr (Padgham 2019), cppRouting (Larmet 2022).
The cppRouting package is used to have a local, self-sufficient workflow, without compromising the performance.
Using the wu03ew
table at MSOA level from the 2011 census, we build flow matrices.
Area of residence | Area of workplace | Bicycle | On foot |
---|---|---|---|
E02000001 | E02000001 | 33 | 1304 |
E02000001 | E02000014 | 0 | 0 |
E02000001 | E02000016 | 0 | 0 |
at |
---|
1337 |
0 |
0 |
A doubly constrained spatial interaction model that is calibrated on the distance matrices (in km) and flow, using the foot and bike variables from the flows.
\[ T_{ij}=A_i O_i B_j D_j exp(-\beta d_{ij}) \]
To perform the this step, a set of functions in R and C++ were developed as a package called cppSim and published on github and (hopefully) soon on CRAN.
Notably, it takes about 50 milliseconds for one model run on London’s \(983\times 983\) OD matrix.
glm
and dependent packages were running out of memory / taking very long. Further development can be done to provide a full set of functionalities around routing, and SIMs as one single R package that would be highly efficient.
Greater impact for walking, with high quality of fit especially for commute centroids on all networks.
Less impact on cycling, although regular networks outperform slightly the custom weighted ones.
When combined, the best of both worlds seems to emerge, with high quality of fit, more homogeneous results across networks and the commute centroids being slightly better with full OSM and OS networks.
The emergence good quality open source network data has promoted the development of powerful open tools to manipulate and use them.
We use these tools with the 2011 UK CENSUS data on foot and bicycle commuting flows to:
Active-travel modelling: a methodological approach to networks for walking and cycling commuting analysis
cppSim - fast and memory efficient doubly constrained SIMs