Introduction#
This tutorial shows you how to refine your existing public transit (PT) simulation scenario with data in the General Transit Specification Format (GTFS) which is available for many regions. It is advisable to do the Public Transport Tutorial first.
The creation of PT simulation consists of three steps:
- Initial network requirements
- Finding a data source for GTFS
- Mapping GTFS data to the network
Initial network requirements#
Note
Using the osmWebWizard tool, may be the easiest way to get a network but the process works with every (geo referenced) SUMO network.
The process works best with a network which comes from OpenStreetMap and also has public transport lines data (see ptLines output). The network should contain edges for all traffic types (modes) you want to model and the relevant edge types. The script currently supports the following mapping:
tram
-> all edges allowing SUMO's vehicle class tramsubway
-> OSM type railway.subwaylight_rail
-> OSM type railway.light_railtrain
-> OSM type railway.railbus
-> all edges allowing SUMO's vehicle class busship
-> OSM type ship
If the network does not contain edge types, only bus and tram mappings are possible which will use the edges allowing the relevant vehicle classes.
For this tutorial we imported the network of Eichwalde with the osmWebWizard tool:
Finding a data source for GTFS#
There are several sources for GTFS data usually on the website of your local transit agency. Some examples from Germany:
- Aggregated data for a lot of German regions
- Berlin and Brandenburg (VBB)
- Lower Saxony and Bremen
- Hamburg
This tutorial uses the June 2019 dataset by VBB. You can either download the data or give the URL of the file directly to the script.
Mapping GTFS data to the network#
If you have all the data available you need to decide on the date you want to model. The script cannot find a representative date by itself, you need to find one yourself. It is usually advisable to check the calendar for school (and other) holidays in advance.
For this tutorial we choose 04.09.2019 (a Wednesday).
Additionally, you can choose which public transport modes should be imported (bus, tram, train, subway and/or ferry). By default, all modes will be imported. For this tutorial we will only import buses.
Depending on the input files available, you can choose between different ways of generating the routes. If you have the line and stop information extracted from OpenStreetMap (using the appropriate netconvert options as described in ptLines output) the script can merge this information with the GTFS data.
In general there are three types of data
we can extract from GTFS: schedules (in minute precision for every vehicle), stop locations (geo coordinates),
and routes (geo coordinates of the traveled streets), where the latter is optional. The GTFS file should be in
zip format and contain at least routes.txt
, stops.txt
, stop_times.txt
, trips.txt
, calendar.txt
and calendar_dates.txt
.
If your GTFS data has a (non-empty) shapes.txt
file it also has route information.
For the rest of the tutorial, we will assume that you always want to import at least the schedules from GTFS.
From OSM you can (sometimes) get abstract schedules ("line runs every 10 minutes on weekdays") and also stop locations and routes. While it may be desirable to choose for every of the three data types individually whether it should be imported from OSM or from GTFS, currently, only the following scenarios are possible:
- Ignore the OSM and route data completely, see Routes from shortest path.
- This approach works with every network (not only OSM) and is the default if you do not have ptline output or your GTFS does not contain a shapes.txt file
- Import Routes from OSM.
- This will try to find for every GTFS route the corresponding OSM route by using geometrical distance (stop information from OSM is not used)
Routes from shortest path#
In this case, the route for each public transport vehicle will be defined by finding the fastest path between stops.
If you have downloaded the network and the GTFS data (or have the URL) it is as easy as
python tools/import/gtfs/gtfs2pt.py -n osm.net.xml --gtfs GTFS_VBB_Juni-Dezember-2019.zip --date 20190904 --modes bus --vtype-output pt_vtypes.xml
The script runs for about five minutes and generates several subdirectories but in the end it provides three output files:
pt_vtypes.xml
gtfs_publictransport.add.xml
(defining the static routes and stops)gtfs_publictransport.rou.xml
(defining the single public transport vehicles)
The vtypes output generates very simple vehicle type definitions for the different public transport modes in use. You are encouraged to modify this file and adapt it to the real situation especially concerning capacity (number of seats) for the different modes. You may of course also use vehicle types from another source and skip this output.
In order to use them in a simulation you should pass them as additional files (not route files!) in the order given above.
sumo-gui -n osm.net.xml --additional pt_vtypes.xml,gtfs_publictransport.add.xml,gtfs_publictransport.rou.xml
Routes from OSM#
In this case, the route for each vehicle is taken from OSM. When we imported the net with the osmWebWizard tool, we enable the option of "import public transport", which automatically generate the "osm_ptlines.xml" file with the public transport lines.
The call is:
python tools/import/gtfs/gtfs2pt.py -n osm.net.xml --gtfs GTFS_VBB_Juni-Dezember-2019.zip --date 20190904 --osm-routes osm_ptlines.xml --repair --modes bus --vtype-output pt_vtypes.xml
The option --repair is not mandatory, but helpful. It takes the given ptLines and tries to repair them using duarouter before the mapping. If some routes of the ptLines are not valid, they won't be used for the mapping.
The script generates the following output files:
pt_vtypes.xml
gtfs_publictransport.add.xml
(defining the stops)gtfs_publictransport.rou.xml
(defining the single public transport vehicles)gtfs_missing.xml
contains the elements (stops and ptLines) of the GTFS data that could not be importedinvalid_osm_routes.txt
contains the warnings and errors from the repair of the ptLines
To run the simulation call:
sumo-gui -n osm.net.xml --additional pt_vtypes.xml,gtfs_publictransport.add.xml --routes gtfs_publictransport.rou.xml
Using the outputs in a simulation#
Below an example of using the mapped stops and buses in a simulation by calling sumo-gui: