TraCI

Contents

Introduction to TraCI

TraCI is the short term for "Traffic Control Interface". Giving the access to a running road traffic simulation, it allows to retrieve values of simulated objects and to manipulate their behaviour "on-line".

Using TraCI

SUMO startup

TraCI uses a TCP based client/server architecture to provide access to SUMO. Thereby, SUMO acts as server that is started with additional command-line options: --remote-port <INT> where <INT> is the port SUMO will listen on for incoming connections.

When started with the --remote-port <INT> option, SUMO only prepares the simulation and waits for an external application, that takes over the control. Please note, that the --end <TIME> option is ignored when SUMO runs as a TraCI server, SUMO runs until the client demands a simulation end.

Protocol specification

Please see the TraCI Protocol Specification (including Basic Flow, Messages, Data Types).

TraCI Commands

For the following APIs, the ID is equal to the ID defined in SUMO's input files. Here, you find their general structure.

Example use

Resources

Interfaces by Programming Language

V2X simulation

TraCI allows to use SUMO in combination with communication network simulators vor simulating vehicular communication. See Topics/V2X for a list of available solutions.

Other Resources

  • SUMO's TraCI Server is a part of the plain distribution. The source code is located in the folder src/traci-server.


References

Troubleshooting

Output files are not closed.

This problem occures if the client tries to access the output while the simulation is still closing down. This can be solved by letting the client wait for the simulation to shut down. The bug report was ticket524

Obsolete APIs

There used to be two "generations" of TraCI commands. The first one mainly uses an internal mapping between the string-typed IDs used in SUMO and an external representation of these which is int-based. The mapping was done internally (within TraCI).
The second "generation", the current one uses string-IDs equal to those SUMO reads. If you are bound to the first generation API (for instance if you want to use TraNS) you can only use SUMO up to version 0.12.3. See FAQ about obtaining an old version.

This page was last modified on 2 May 2013, at 13:13.