Skip to content

Commit a585b43

Browse files
author
Lara CODECA
committed
Tested v SUMO 1.2 and ready for v0.2
1 parent 65b50a7 commit a585b43

8 files changed

Lines changed: 9 additions & 17 deletions

File tree

README.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,12 @@ Reqirements:
1414
* It requires at least [SUMO 1.0.1](https://github.com/eclipse/sumo/tree/v1_0_1).
1515

1616
Tested with:
17+
* Eclipse SUMO Version 1.2.0
18+
Build features: Linux-4.19.0-4-amd64 x86_64 GNU 8.3.0 Release Proj GUI GDAL FFmpeg OSG GL2PS SWIG
1719
* Eclipse SUMO Version 1.1.0
18-
Build features: Linux-4.18.0-3-amd64 x86_64 GNU 8.2.0 Release Proj GUI GDAL FFmpeg OSG GL2PS SWIG
20+
Build features: Linux-4.19.0-4-amd64 x86_64 GNU 8.3.0 Release Proj GUI GDAL FFmpeg OSG GL2PS SWIG
1921
* Eclipse SUMO Version 1.0.1
20-
Build features: Linux-4.18.0-1-amd64 Proj GUI GDAL FFmpeg OSG GL2PS SWIG
22+
Build features: Linux-4.19.0-4-amd64 Proj GUI GDAL FFmpeg OSG GL2PS SWIG
2123

2224
Installation:
2325
* Install: `pip3 install .` from the root directory, or `python3 setup.py install`

examples/random.grid.example.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def _main():
3737
""" Example of parking management in SUMO. """
3838

3939
## TESTED WITH: SUMO 1.1.0
40-
traci.start(['sumo', '-c', 'random_grid/random.sumocfg'], port=42043)
40+
traci.start(['sumo', '-c', 'random_grid/random.sumocfg'])
4141

4242
parking_monitor_options = {
4343
'seed': 42,

examples/simple.example.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def _main():
3737
""" Example of parking management in SUMO. """
3838

3939
## TESTED WITH: SUMO 1.1.0
40-
traci.start(['sumo', '-c', 'test_scenario/sumo.simple.cfg'], port=42041)
40+
traci.start(['sumo', '-c', 'test_scenario/sumo.simple.cfg'])
4141

4242
parking_monitor_options = {
4343
'addStepListener': True,

examples/subscriptions.example.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def _main():
3838
""" Example of parking management in SUMO. """
3939

4040
## TESTED WITH: SUMO 1.1.0
41-
traci.start(['sumo', '-c', 'test_scenario/sumo.subscriptions.cfg'], port=42042)
41+
traci.start(['sumo', '-c', 'test_scenario/sumo.subscriptions.cfg'])
4242

4343
parking_monitor_options = {
4444
'seed': 42,

examples/test_scenario/sumo.simple.cfg

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,6 @@
4040
<duration-log.statistics value="true"/>
4141
</report>
4242

43-
<traci_server>
44-
<remote-port value="42041"/>
45-
<num-clients value="1"/>
46-
</traci_server>
47-
4843
<random_number>
4944
<seed value="42"/>
5045
</random_number>

examples/test_scenario/sumo.subscriptions.cfg

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,6 @@
4040
<duration-log.statistics value="true"/>
4141
</report>
4242

43-
<traci_server>
44-
<remote-port value="42042"/>
45-
<num-clients value="1"/>
46-
</traci_server>
47-
4843
<random_number>
4944
<seed value="42"/>
5045
</random_number>

examples/uncert.example.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def _main():
3737
""" Example of parking management in SUMO. """
3838

3939
## TESTED WITH: SUMO 1.1.0
40-
traci.start(['sumo', '-c', 'test_scenario/sumo.simple.cfg'], port=42044)
40+
traci.start(['sumo', '-c', 'test_scenario/sumo.simple.cfg'])
4141

4242
parking_monitor_options = {
4343
'seed': 42,

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def readme():
1010
return freader.read()
1111

1212
setup(name='pypml',
13-
version='0.1',
13+
version='0.2',
1414
description='Parking Monitor Library for SUMO via TraCI.',
1515
url='http://github.com/lcodeca/pypml',
1616
classifiers=[

0 commit comments

Comments
 (0)