赞
踩
# 检查系统路径
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'")
sumoBinary = 'sumo-gui'
sumoConfig = [sumoBinary, '-c', 'netFile2/net_fixed2.sumocfg', "--tripinfo-output", "tripinfo.xml"]
traci.start(sumoConfig)
while traci.simulation.getMinExpectedNumber() > 0 : # 当仿真环境中还有车辆时,不能停止
traci.simulationStep() # 执行一步
traci.close()
<gui_only>
<start value="true"/>
<quit-on-end value="true"/> # 这句话
</gui_only>
<input>
<net-file value="net_fixed2.net.xml"/>
<route-files value="net_fixed2.rou.xml"/>
</input>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。