Skip to content

Commit

Permalink
tested with sumo 1.1.0, 1.0.1 and 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Lara CODECA committed Jan 14, 2019
1 parent 3864035 commit 97313b5
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 10 deletions.
15 changes: 10 additions & 5 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,18 @@ December 5-7, 2018, Taipei, Taiwan.

--------
Reqirements:
* It requires at least [SUMO 1.0](https://github.com/eclipse/sumo/tree/v1_0_0).
* Due to [Issue #4518](https://github.com/eclipse/sumo/issues/4518) it requires the development
version of [SUMO](https://github.com/eclipse/sumo.git) in order to use multi-threading.
* It requires at least [SUMO 1.0.0](https://github.com/eclipse/sumo/tree/v1_0_0).
* It requires at least [SUMO 1.0.1](https://github.com/eclipse/sumo/tree/v1_0_1)
if multi-threading is needed.

Tested with:
* Eclipse SUMO Version Development 5345f89a38 (Build features: Linux-4.18.0-1-amd64 x86_64 GNU 8.2.0 Proj GUI GDAL FFmpeg OSG GL2PS SWIG)
* Eclipse SUMO Version 1.0.1 ( Build features: Linux-4.18.0-1-amd64 Proj GUI GDAL FFmpeg OSG GL2PS SWIG)
* Eclipse SUMO Version 1.1.0
Build features: Linux-4.18.0-3-amd64 x86_64 GNU 8.2.0 Release Proj GUI GDAL FFmpeg OSG GL2PS SWIG
* Eclipse SUMO Version 1.0.1
Build features: Linux-4.18.0-1-amd64 Proj GUI GDAL FFmpeg OSG GL2PS SWIG
* Eclipse SUMO Version 1.0.0
Build features: Linux-4.18.0-1-amd64 Proj GUI GDAL FFmpeg OSG GL2PS SWIG


Installation:
* Install: `pip3 install .` from the root directory, or `python3 setup.py install`
Expand Down
6 changes: 3 additions & 3 deletions examples/simple.example.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@
def _main():
""" Example of parking management in SUMO. """

## TESTED WITH: SUMO 1.0.1
# traci.start(['/home/drone/Applications/SUMO/sumo-1.0.1/bin/sumo',
## TESTED WITH: SUMO 1.1.0
# traci.start(['/home/drone/Applications/SUMO/sumo-1.1.0/bin/sumo',
# '-c', 'test_scenario/sumo.simple.cfg'], port=42041)
## Running with the last-monday development version
traci.start(['sumo-gui', '-c', 'test_scenario/sumo.simple.cfg'], port=42041)
traci.start(['sumo', '-c', 'test_scenario/sumo.simple.cfg'], port=42041)

parking_monitor_options = {
'addStepListener': True,
Expand Down
4 changes: 2 additions & 2 deletions examples/subscriptions.example.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
def _main():
""" Example of parking management in SUMO. """

## TESTED WITH: SUMO 1.0.1
# traci.start(['/home/drone/Applications/SUMO/sumo-1.0.1/bin/sumo',
## TESTED WITH: SUMO 1.1.0
# traci.start(['/home/drone/Applications/SUMO/sumo-1.1.0/bin/sumo',
# '-c', 'test_scenario/sumo.subscriptions.cfg'], port=42042)
## Running with the last-monday development version
traci.start(['sumo', '-c', 'test_scenario/sumo.subscriptions.cfg'], port=42042)
Expand Down

0 comments on commit 97313b5

Please sign in to comment.