🆕GraphHopper
Instructions to get you started with using OS MRN in GraphHopper.
GraphHopper is an open source routing engine for OpenStreetMap (OSM).
What you need
Java Virtual Machine (JVM) (Java 17+)
To find out if you have Java installed:
Open PowerShell / Command Prompt (Windows) or Shell (Linux) and type:
Press Enter. If Java is installed, you should see a few lines of text detailing which version you have installed. If you get something along the lines of
"java is not recognized ..."
please download JVM [or OpenJDK] using the link above in 'What you need'.
To see if you already have Node.js and npm installed and check the installed version:
Run the following commands:
If they are not installed, please follow the 'Downloading and installing Node.js and npm' instructions on the npm Docs site.
GraphHopper Routing Engine
The GraphHopper repository on GitHub explains how to download and run the GraphHopper Routing Engine as a Java library or standalone web server to calculate the distance, time, turn-by-turn instructions and many road attributes for a route between two or more points.
To create routes using OS MRN, you require the following files (ensure that they are stored in the same directory):
The
graphhopper-web-8.0.jar
JAR (Java ARchive) package file containing the GraphHopper Maps UI and the web serviceA YAML configuration file (
config-example.yml
)OS MRN Protocolbuffer Binary Format (PBF) data downloaded from the OS Data Hub (
OSMulti-modalRoutingNetwork.pbf
)
The config-example.yml
provided in the aforementioned GraphHopper repository enables basic vehicular (car) routing.
We have created a custom version of this file which allows for vehicular (car) routing with turn costs, as well as the calculation of pedestrian (walking) and cycling routes:
Compared to the basic configuration file, you'll see that the custom version enables turn restrictions (under the car profile) and includes additional profiles to enable cycling and walking:
Notes:
The
turn_costs
line tells GraphHopper to force thecar
travel mode ("profile") to respect turn restrictions.The
u_turn_costs
line tells GraphHopper how long a U-turn should add to your route (in this case, 60 seconds).The
custom_model_files
are required but can be empty. The optionalbike.json
is a reference to a specification to get cycle routing to prefer less busy roads, for example.
By default (i.e. only using driving routing), GraphHopper knows there's no need to read in footpaths, cycleways, etc. Now that you want the additional "profiles", you need to change that.
This means that there is one final configuration change you need to do which will force GraphHopper to read every type of link:
Use Ctrl+F to search the
config-example-multiple.yml
file for:
You can now start the GraphHopper Maps UI and the web service as follows:
This reads in the OS MRN data and sets everything up. It might take a few minutes the first time you run this command, but when complete, you will see two folders have been added to your directory: "graph-cache" and "logs".
When you start GraphHopper again, it will see the data contained within the "graph-cache" folder and know that it doesn't have to re-read the PBF file. However, if you update your .pbf or .yml files, make sure you delete "graph-cache" before starting GraphHopper again.
Once you see a
'Server - Started'
log message, go to http://localhost:8989/ and you'll see an interactive map of your chosen location.Right-click on the map to create a route.
GraphHopper Maps
The GraphHopper Maps repository on GitHub supplements the GraphHopper Routing Engine as a customisable version of the route planner user interface. This repository contains instructions on how to start development and how to make configuration changes, including adding different map tile providers. You can add OS Maps API, OS Vector Tile API or OS NGD API – Tiles if you like.
You will also be able to point to the web service hosted at http://localhost:3000/.
To ease getting up-and-running, we have taken a fork of the above repository and made the necessary changes to add in the OS Maps API Outdoor, Light and Road styles. You can clone the forked repository from the OS GraphHopper Maps repository on GitHub.
All you need to then do is add a valid API Key (with a suitable API Plan) to the config.js
file.
Last updated