赞
踩
(一)关于SUMO安装下载
(二)关于SUMO终端命令的使用
这里分享几个实用的命令:
python randomTrips.py -n wuhu.net.xml -r wuhu.rou.xml -e 50 -p 0.1 -l
netconvert --osm-files map.osm -o wuhu.net.xml
(三)关于编辑路网
对于转换好的路网可能我们还需要做修改,实际路网两个节点之间可能是曲折的而不是直线,网上也没有相关设置转折点的介绍,因此我们可以更该shape参数设置转折点坐标。
(四)关于调用Traic
Python: package traci (dlr.de)
- import os
- import sys
- import traci
- import matplotlib.pyplot as plt
-
-
- # 连接sumo
- def connect_sumo():
- if 'SUMO_HOME' in os.environ:
- tools = os.path.join(os.environ['SUMO_HOME'], 'tools')
- sys.path.append(tools)
- else:
- sys.exit("please declare environment variable 'SUMO_HOME'")
-
- if __name__ == '__main__':
-
- plt.rcParams['font.family'] = 'SimSun' # 设置中文字体为 SimSun
- connect_sumo()
- sumoBinary = "sumo-gui" # SUMO可执行文件的路径
- traci.start([sumoBinary, "-c", "demo_1.sumocfg"])
-
- while traci.simulation.getMinExpectedNumber() > 0:
- traci.simulationStep()
- traci.close()
-
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。