All Roads Lead to Rome

I was inspired by this visualisation, showing the optimal routes (by car) from the geographic centre of the USA to all counties.

Map showing optimal routes from geographic centre of the USA to all counties.

The proverb “All Roads Lead to Rome” immediately came to mind and I set out to hack together something along that theme.

This is what was required:

  1. Find a list of major cities in Europe and Asia.
  2. Use OSRM to generate routes from each of these cities to Rome. This was slightly tricky. I used pmap() from {purrr} to loop over the cities. I had to be respectful of the load on the OSRM server and only make requests at a civilised cadence. I also had to handle exceptional conditions where the server returned an error. It took a iterations to get that right.
  3. Generate a plot using {ggplot2}.

Here’s the result. The step size in some areas is a little large, but I’m pretty happy with it as a first attempt. The image below has been scaled. Download a higher resolution image here.

Map showing optimal routes from major cities in Europe and Asia to Rome.

The code can be found here. Please be cognisant of the fact that there are many people querying the OSRM server. Consider either spinning up your own local server (see this post) or lowering the cadence of the routing queries.

Related projects: