search icon
TravelTime API
Overview
Developer Tools
Database Plugins
TravelTime API
SDK
TravelTime API
Isochrone API
JSON
Distance Map API
TravelTime API
Travel Time Matrix API
JSON
Travel Time Matrix API
Protocol Buffers
TravelTime API
Routes API
JSON
Geocoding API
Additional API Reference
Error Handling
TravelTime API
ArcGIS plugin
QGIS plugin
Alteryx plugin
TravelTime.comchevronDocs

Basic tutorialanchor icon

This tutorial covers basic usage of the TravelTime Plugin for QGIS.

To learn more about TravelTime and to discuss commercial licences visit our website.

Video versionanchor icon

This is the video version of the first tutorial. The exact same tutorial is also available in written form below.

What it isanchor icon

Travel times are much more accurate than distance to make informed decisions, such as where to locate a new office, what type of transport to choose, or at what time a meeting should start.

Radius example

This demonstrates the difference between a normal radius (blue) and a time based reachable area (pink)

The TravelTime Plugin for QGIS adds several algorithms that aim to allow this type of analysis right in QGIS. It works by making use of the TravelTime API, an extremely fast web service for such computations.

What we’ll coveranchor icon

During this tutorial, we’ll cover :

It is the perfect introduction before diving further into the TravelTime through the more detailed tutorials.

If you are completely new to QGIS or GIS in general, you should still be able to follow this tutorial. You should however refer to the official QGIS training material whenever you need to learn more about some QGIS feature.

Also don’t forget to refer to the reference documentation for comprehensive documentation about this plugin. It is also available directly from the plugin using the QGIS-help help button

Installation and setupanchor icon

First things first, you’ll need QGIS. QGIS can be downloaded and installed from the official website. It is a free and open source project, meaning that it is freely available for anyone, and this will forever be the case.

If you are on Windows, make sure to pick the Standalone Installer as it is easier to install.

Once QGIS is installed, launch it.

To install the plugin, open the Plugin manager in the Plugin menu. In the dialog, search for TravelTime, and click on install.

If the plugin was installed correctly, you should see a new tool bar.

QGIS Toolbar

There’s one last step before being able to use the plugin : you need to get a free API key. This is required to be able to use the TravelTime web service. Open the configuration dialog QGIS-settings, and click on the Get free API key button.

This will open a web page. Fill in the form, and you will get your API key per email. Just copy and paste the Application ID and the API Key back in the configuration dialog in QGIS.

Note: The limitation of the number of queries you can make, which we saw already in tutorial 1, also applies when running the algorithms from the toolbox. The error will look a bit different though.

Limit exceeded

An API limit error when running a map tool

Congratulations! The plugin is now ready for use !

Quick overviewanchor icon

To get a sense of what the plugin can do, we’ll start with the express tools. We’ll quickly setup a project to try it out.

1. Create a new QGIS projectanchor icon

Menu > File > New project

2. Add a background layeranchor icon

To help us navigate the map and actually understand what we look at, we’ll add a background layer.

Click on the tiles button QGIS-tiles and double click on one of the available XYZ layers. Depending on your API key, you may have just the default XYZ layer or additionnal layers provided by the TravelTime.

The background layer should now be added to your project.

3. Your first time mapanchor icon

Let’s imagine the following scenario : you own a new pizzeria and are thinking of setting up a delivery service. Thus, you want to visualize the area that could be covered by bike delivery in less than 10 minutes, as you want to focus on very fast delivery.

Start by zooming in to a city (choose a popular city like London or New York, so we are sure we’ll find some data later on).

Activate the express time map tool by clicking on it’s icon QGIS-timeMap-express. By clicking on the small arrow next to it, you can set the transportation mode to “biking” and the transportation time to 10 minutes. Then, click on the map on a location where you could locate your restaurant.

Your project should look like this (note that the background may look different):

First time map

One important thing : notice the small icon next to Output in the legend ? This means that Output is a temporary layer. This layer won’t persist once you close the project. If you want to actually save the results, you can right-click on the layer in the legend, and choose Make permanent to save the layer somewhere on your hard drive.

For now, we’ll keep it like this. Just to keep things clear, right-click on the Output layer in the legend, select Rename, and call the layer delivery zone - bike.

Let’s study our delivery plan a bit more. Change the transportation mode to “driving”, and we’ll see how things would be if our deliveries were made by car. Click on the same point again, and compare the results.

With “driving”, the hour of the day has a great impact because of traffic conditions. Compare what you’d get at 6:30 PM with what you’d get at 8:30 PM, time at which you can expect to do most of the deliveries.

Try out a few more locations / time / transport type combinations. See how the polygon varies according to streets or obstacles, and how it differs from a simple radius. You can also switch the search mode to arriving, in which case the time represents the arrival time.

It seems our first guess was the best, as for short durations, the area covered by bike is much bigger. We’ll remove all layers except our first delivery zone - bike.

4. Your first time mapanchor icon

Your pizzas are great, but the customers are still scarce. You want to make some advertising at the nearby bus stops to invite customers to your restaurant just after they finished their day. Of course, there’s no point in advertzing at stops that are too far away, as you estimate that customers wouldn’t walk more than 10 minutes from their bus stop to get to your restaurant.

Let’s see at what stations you should consider putting ads.

First, we’ll need some data : the location of the stations. To get this type of data, we’ll use another plugin, the QuickOSM plugin. Go to the plugin manager again, look for QuickOSM, and install it.

Click on the new QuickOSM button QGIS-quick-osm, and choose public_transport in the key field and stop_position in the value field. Choose canvas extent. Unfold the advanced panel, and uncheck lines, multilinestrings and multipolygons, as we’ll just work with points feature. Then click run.

Quick OSM dialog

You should get a new layer with all the bus stops that were on the current canvas. This is a very powerful way to download OSM’s data, which, since it’s Open Data, can be used in all of your projects as long as you credit OSM with the © OpenStreetMap contributors mention somewhere on your publication.

Make sure you’ve got a reasonable amount of points (should be less than 2000 points). If you’ve got too many, zoom in and do the last step again.

Let’s now filter these bus stops using the time filter express tool.

Select the layer you just created, then activate the tool by clicking on the icon QGIS-timeFilter-express. Again by pressing on the small arrow next to the button, set 10 minutes by walking. Then click at the location you chose earlier.

The locations will now be filtered between those that are reachable and those that are not. Let’s rename this layer nearby bus stops. Your project should look like this :

First time filter

5. Your first routeanchor icon

The customers are starting to flow in! But some of them get lost on their way. It seems your pizzeria is a bit hard to find! Let’s create some maps that show the best route from some of the main attractions of the city.

Activate the express route tool by clicking on it’s icon QGIS-route-express. Choose public transport.

Now click on a point that you identified as your pizzeria, and on a well know location in the city, such as a monument or a central station.

Your project should now look like this :

First route

Congratulations! This concludes our first tutorial. Keep up the good work, an, you’ll soon be the #1 pizza seller of your city.

What nextanchor icon

To learn more, have a look at the next tutorial of the series : Tutorial 02. Intermediate.

Also don’t forget to have a look at the reference documentation, that describes everything the plugin does, as well as at the TravelTime blog which includes numerous quality articles around the TravelTime API.