├── .gitignore ├── LICENSE ├── assets ├── netedit.png ├── postgisImport.png └── roadNetworkGIS.png ├── posgresql └── dataInsert.py ├── readme.md └── sumo ├── genNetwork.py ├── genRoute.py ├── roadConnection.py └── simulationFiles ├── xuancheng-1.rou.xml ├── xuancheng-2.rou.xml ├── xuancheng.edg.xml ├── xuancheng.net.xml ├── xuancheng.nod.xml ├── xuancheng.rou.xml └── xuancheng.settings.xml /.gitignore: -------------------------------------------------------------------------------- 1 | openits/ 2 | 3 | databaseConfig.yaml 4 | 5 | __pycache__/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fudaocheng/OpenITS-PG-SUMO/HEAD/LICENSE -------------------------------------------------------------------------------- /assets/netedit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fudaocheng/OpenITS-PG-SUMO/HEAD/assets/netedit.png -------------------------------------------------------------------------------- /assets/postgisImport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fudaocheng/OpenITS-PG-SUMO/HEAD/assets/postgisImport.png -------------------------------------------------------------------------------- /assets/roadNetworkGIS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fudaocheng/OpenITS-PG-SUMO/HEAD/assets/roadNetworkGIS.png -------------------------------------------------------------------------------- /posgresql/dataInsert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fudaocheng/OpenITS-PG-SUMO/HEAD/posgresql/dataInsert.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fudaocheng/OpenITS-PG-SUMO/HEAD/readme.md -------------------------------------------------------------------------------- /sumo/genNetwork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fudaocheng/OpenITS-PG-SUMO/HEAD/sumo/genNetwork.py -------------------------------------------------------------------------------- /sumo/genRoute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fudaocheng/OpenITS-PG-SUMO/HEAD/sumo/genRoute.py -------------------------------------------------------------------------------- /sumo/roadConnection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fudaocheng/OpenITS-PG-SUMO/HEAD/sumo/roadConnection.py -------------------------------------------------------------------------------- /sumo/simulationFiles/xuancheng-1.rou.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fudaocheng/OpenITS-PG-SUMO/HEAD/sumo/simulationFiles/xuancheng-1.rou.xml -------------------------------------------------------------------------------- /sumo/simulationFiles/xuancheng-2.rou.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fudaocheng/OpenITS-PG-SUMO/HEAD/sumo/simulationFiles/xuancheng-2.rou.xml -------------------------------------------------------------------------------- /sumo/simulationFiles/xuancheng.edg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fudaocheng/OpenITS-PG-SUMO/HEAD/sumo/simulationFiles/xuancheng.edg.xml -------------------------------------------------------------------------------- /sumo/simulationFiles/xuancheng.net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fudaocheng/OpenITS-PG-SUMO/HEAD/sumo/simulationFiles/xuancheng.net.xml -------------------------------------------------------------------------------- /sumo/simulationFiles/xuancheng.nod.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fudaocheng/OpenITS-PG-SUMO/HEAD/sumo/simulationFiles/xuancheng.nod.xml -------------------------------------------------------------------------------- /sumo/simulationFiles/xuancheng.rou.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fudaocheng/OpenITS-PG-SUMO/HEAD/sumo/simulationFiles/xuancheng.rou.xml -------------------------------------------------------------------------------- /sumo/simulationFiles/xuancheng.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fudaocheng/OpenITS-PG-SUMO/HEAD/sumo/simulationFiles/xuancheng.settings.xml --------------------------------------------------------------------------------