├── .gitignore ├── README.md ├── examples ├── autofeeddemo.py ├── brakedemo.py ├── cfg │ ├── freeway.gui.xml │ ├── freeway.net.xml │ ├── freeway.rou.xml │ └── freeway.sumo.cfg ├── dashboard-demo.py ├── enginedemo.py ├── img │ ├── acc-circle.png │ ├── acc-needle.png │ ├── accelerometer.png │ ├── circle.png │ ├── needle.png │ ├── speedometer.png │ └── tachometer.png ├── joindemo.py ├── overtake-and-keep-right-test.py ├── platoon-lane-change-test.py ├── utils.py └── vehicles.xml ├── plexe ├── __init__.py ├── plexe.py ├── plexe_imp │ ├── __init__.py │ ├── ccparams.py │ └── plexe_sumo_eclipse.py └── vehicle_data.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michele-segata/plexe-pyapi/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michele-segata/plexe-pyapi/HEAD/README.md -------------------------------------------------------------------------------- /examples/autofeeddemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michele-segata/plexe-pyapi/HEAD/examples/autofeeddemo.py -------------------------------------------------------------------------------- /examples/brakedemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michele-segata/plexe-pyapi/HEAD/examples/brakedemo.py -------------------------------------------------------------------------------- /examples/cfg/freeway.gui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michele-segata/plexe-pyapi/HEAD/examples/cfg/freeway.gui.xml -------------------------------------------------------------------------------- /examples/cfg/freeway.net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michele-segata/plexe-pyapi/HEAD/examples/cfg/freeway.net.xml -------------------------------------------------------------------------------- /examples/cfg/freeway.rou.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michele-segata/plexe-pyapi/HEAD/examples/cfg/freeway.rou.xml -------------------------------------------------------------------------------- /examples/cfg/freeway.sumo.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michele-segata/plexe-pyapi/HEAD/examples/cfg/freeway.sumo.cfg -------------------------------------------------------------------------------- /examples/dashboard-demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michele-segata/plexe-pyapi/HEAD/examples/dashboard-demo.py -------------------------------------------------------------------------------- /examples/enginedemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michele-segata/plexe-pyapi/HEAD/examples/enginedemo.py -------------------------------------------------------------------------------- /examples/img/acc-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michele-segata/plexe-pyapi/HEAD/examples/img/acc-circle.png -------------------------------------------------------------------------------- /examples/img/acc-needle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michele-segata/plexe-pyapi/HEAD/examples/img/acc-needle.png -------------------------------------------------------------------------------- /examples/img/accelerometer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michele-segata/plexe-pyapi/HEAD/examples/img/accelerometer.png -------------------------------------------------------------------------------- /examples/img/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michele-segata/plexe-pyapi/HEAD/examples/img/circle.png -------------------------------------------------------------------------------- /examples/img/needle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michele-segata/plexe-pyapi/HEAD/examples/img/needle.png -------------------------------------------------------------------------------- /examples/img/speedometer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michele-segata/plexe-pyapi/HEAD/examples/img/speedometer.png -------------------------------------------------------------------------------- /examples/img/tachometer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michele-segata/plexe-pyapi/HEAD/examples/img/tachometer.png -------------------------------------------------------------------------------- /examples/joindemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michele-segata/plexe-pyapi/HEAD/examples/joindemo.py -------------------------------------------------------------------------------- /examples/overtake-and-keep-right-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michele-segata/plexe-pyapi/HEAD/examples/overtake-and-keep-right-test.py -------------------------------------------------------------------------------- /examples/platoon-lane-change-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michele-segata/plexe-pyapi/HEAD/examples/platoon-lane-change-test.py -------------------------------------------------------------------------------- /examples/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michele-segata/plexe-pyapi/HEAD/examples/utils.py -------------------------------------------------------------------------------- /examples/vehicles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michele-segata/plexe-pyapi/HEAD/examples/vehicles.xml -------------------------------------------------------------------------------- /plexe/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michele-segata/plexe-pyapi/HEAD/plexe/__init__.py -------------------------------------------------------------------------------- /plexe/plexe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michele-segata/plexe-pyapi/HEAD/plexe/plexe.py -------------------------------------------------------------------------------- /plexe/plexe_imp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michele-segata/plexe-pyapi/HEAD/plexe/plexe_imp/__init__.py -------------------------------------------------------------------------------- /plexe/plexe_imp/ccparams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michele-segata/plexe-pyapi/HEAD/plexe/plexe_imp/ccparams.py -------------------------------------------------------------------------------- /plexe/plexe_imp/plexe_sumo_eclipse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michele-segata/plexe-pyapi/HEAD/plexe/plexe_imp/plexe_sumo_eclipse.py -------------------------------------------------------------------------------- /plexe/vehicle_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michele-segata/plexe-pyapi/HEAD/plexe/vehicle_data.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michele-segata/plexe-pyapi/HEAD/setup.py --------------------------------------------------------------------------------