当前位置:   article > 正文

traci学习_python中怎么使用traci接口调用smo中的环境信息

python中怎么使用traci接口调用smo中的环境信息

1.使用python接口调用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'")
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()
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

SUMO config配置文件

  1. 自动每次sumo 仿真界面关闭
<gui_only>
    <start value="true"/>
    <quit-on-end value="true"/>  # 这句话
</gui_only>
  • 1
  • 2
  • 3
  • 4
  1. 配置的路网文件和路由文件
<input>
        <net-file value="net_fixed2.net.xml"/>
        <route-files value="net_fixed2.rou.xml"/>
    </input>
  • 1
  • 2
  • 3
  • 4

三级目录

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/645638
推荐阅读
相关标签
  

闽ICP备14008679号