TraCI

generated on 2016-11-01 01:15:33.304804 from the wiki page for TraCI for SUMO 0.28.0

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.

When using SUMO-GUI as a server, the simulation must either be started by using the play button or by setting the option --start before TraCI commands will be processed.

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

  • Python: the package tools/traci allows to interact with SUMO using Python (This library is tested daily and supports all TraCI commands)
  • Java: TraCI4J is a Java implementation of TraCI; API documentation is here
  • Java, .NET, ... anything that can do SOAP. TraaS is a web-service adapter for TraCI which allows automatic API generation for multiple languanges. API completeness is higher compared to TraCI4J due to code being generated based on the python client. TraaS may also be used as a standalone TraCI client and can thus be use as a replacement for TraCI4j.
  • Matlab TraCI4Matlab
  • C++: The C++ TraCIAPI is client library that is part of the SUMO-source tree.
  • C++: The Veins project provides a middle-ware for coupling SUMO with OMNET++. As part of the infrastructure it provides a C++ client library for the TraCI API (API completeness is a bit behind the python client).

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 26 May 2016, at 11:33.