Road Pricing
This page allows to define tolls on specific links.
Tolls apply either to all travelers or only to one specific traveler type.
Tolls are either constant during the whole day or vary through time.
To add tolls to the simulation, import a tsv file with the following columns:
- link: id of the link affected
- values: if toll is constant, value of the toll; else, values at each time interval separated by a comma
- times (optional): if toll is constant, leave empty; else time intervals for the tolls (in minutes, 0 is midnight)
- traveler_type (optional): id of the traveler type affected; set to 0 or nothing if the toll applies to everyone
There must be one more value in the
values vector than in the
times vector.
For example, if
link is 2,
values is
1,2,1,
times is
420,540 and
traveler_type is 1, then the travelers of type 1 pay a toll when going through link 2.
The amount paid is 1 from 0:00 until 7:00 (420 minutes), 2 between 7:00 and 9:00 (540 minutes) and 1 from 9:00 until 23:59.
There is 0 link with a toll.
Back