• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

bin/H03-May-2022-7769

build/H03-May-2022-2,3311,885

data/H03-May-2022-34,12633,432

docs/H03-May-2022-78,52271,593

src/H03-May-2022-459,376281,107

tools/H03-May-2022-959,822813,806

unittest/H03-May-2022-2,3381,383

AUTHORSH A D15-Apr-20193.2 KiB7069

CONTRIBUTING.mdH A D15-Apr-20191.8 KiB5233

ChangeLogH A D15-Apr-201950 21

LICENSEH A D15-Apr-201913.9 KiB278228

Makefile.amH A D15-Apr-20195.9 KiB130111

Makefile.cvsH A D15-Apr-2019283 96

NOTICE.mdH A D15-Apr-20194 KiB11475

README.mdH A D15-Apr-20193.3 KiB8857

configure.acH A D15-Apr-201918.4 KiB537484

sumo.doxyconfH A D15-Apr-2019106.1 KiB2,4941,939

README.md

1[![Linux and MacOS Build Status](https://travis-ci.org/eclipse/sumo.svg?branch=master)](https://travis-ci.org/eclipse/sumo)
2[![Windows Build status](https://ci.appveyor.com/api/projects/status/github/eclipse/sumo?svg=true)](https://ci.appveyor.com/project/eclipsewebmaster/sumo)
3
4
5
6Eclipse SUMO - Simulation of Urban MObility
7===========================================
8
9What is SUMO
10------------
11
12["Simulation of Urban MObility" (SUMO)](https://sumo.dlr.de/) is an open source,
13highly portable, microscopic traffic simulation package designed to handle
14large road networks and different modes of transport.
15
16It is mainly developed by employees of the [Institute of Transportation Systems
17at the German Aerospace Center](https://www.dlr.de/ts).
18
19
20Where to get it
21---------------
22
23You can download SUMO from SourceForge via our [downloads site](https://sumo.dlr.de/wiki/Downloads).
24
25As the program is still under development and is extended continuously, we advice you to
26use the latest sources from our GitHub repository. Using a command line client
27the following command should work:
28
29        git clone --recursive https://github.com/eclipse/sumo
30
31
32Contact
33-------
34
35To stay informed, we have a mailing list for SUMO. You can subscribe at
36https://dev.eclipse.org/mailman/listinfo/sumo-user.
37Messages to the list can be sent to sumo-user@eclipse.org.
38SUMO announcements will be made through the sumo-announce@eclipse.org list;
39you can subscribe to this list at https://dev.eclipse.org/mailman/listinfo/sumo-announce.
40For further contact information have a look at https://sumo.dlr.de/wiki/Contact.
41
42
43Build and Installation
44----------------------
45
46For Windows we provide pre-compiled binaries and CMake files to generate Visual Studio projects.
47If you want to develop under Windows, please also clone the dependent libraries using
48
49        git clone --recursive https://github.com/DLR-TS/SUMOLibraries
50
51Using Linux you should have a look whether your distribution already contains sumo.
52There is also a [ppa for ubuntu users](https://launchpad.net/~sumo) and a
53[open build service instance](https://build.opensuse.org/project/show?project=home%3Abehrisch).
54If you want to build yourself, the steps for ubuntu are:
55
56        sudo apt-get install cmake python libxerces-c-dev libfox-1.6-dev libgl1-mesa-dev libglu1-mesa-dev libgdal-dev libproj-dev
57        mkdir build/cmake-build && cd build/cmake-build
58        cmake ../..
59        make -j8
60
61For [detailed build instructions have a look at our wiki](https://sumo.dlr.de/wiki/Developer/Main#Build_instructions).
62
63
64Getting started
65---------------
66
67To get started with SUMO, take a look at the docs/tutorial and examples directories,
68which contain some example networks with routing data and configuration files.
69There is also user documentation provided in the docs/ directory and on the
70homepage.
71
72
73Bugs
74----
75
76Please use for bugs and requests the [GitHub bug tracking tool](https://github.com/eclipse/sumo/issues)
77or file them to the list sumo-user@eclipse.org. Before
78filing a bug, please consider to check with a current repository checkout
79whether the problem has already been fixed.
80
81
82License
83-------
84
85SUMO is licensed under the [Eclipse Public License Version 2](https://eclipse.org/legal/epl-v20.html).
86For the licenses of the different libraries and supplementary code information is in the
87subdirectories and the [wiki](https://sumo.dlr.de/wiki/License).
88