运行 没有固有输出文件的 Sumo
Running Sumo without inherent output files
我正在 运行ning Sumo 使用 Traci。我生成自己的报告,不喜欢 Sumo 生成任何其他报告。我的 .sumocfg 文件也不请求任何输出(见下文)。
但是,Sumo 仍会在每 运行 后生成 5 个输出文件。有没有办法禁用它?
我的 运行ning 命令:
>sumo -c ../../LuSTScenario/scenario/my.sumocfg -V False -W
我的 .sumocfg 文件:
<?xml version="1.0" encoding="UTF-8"?>
<input>
<net-file value="lust.net.xml"/>
<route-files value="buslines.rou.xml,DUERoutes/local.actuated.0.rou.xml,DUERoutes/local.actuated.1.rou.xml,DUERoutes/local.actuated.2.rou.xml,transit.rou.xml"/>
<additional-files value="vtypes.add.xml,busstops.add.xml,e1detectors.add.xml,lust.poly.xml"/>
</input>
<time>
<begin value="0"/>
<step-length value="1"/>
</time>
有时输出是在附加文件中定义的。在您的情况下,从文件列表中删除 e1detectors.add.xml
可能就足够了。
我正在 运行ning Sumo 使用 Traci。我生成自己的报告,不喜欢 Sumo 生成任何其他报告。我的 .sumocfg 文件也不请求任何输出(见下文)。 但是,Sumo 仍会在每 运行 后生成 5 个输出文件。有没有办法禁用它? 我的 运行ning 命令:
>sumo -c ../../LuSTScenario/scenario/my.sumocfg -V False -W
我的 .sumocfg 文件:
<?xml version="1.0" encoding="UTF-8"?>
<input>
<net-file value="lust.net.xml"/>
<route-files value="buslines.rou.xml,DUERoutes/local.actuated.0.rou.xml,DUERoutes/local.actuated.1.rou.xml,DUERoutes/local.actuated.2.rou.xml,transit.rou.xml"/>
<additional-files value="vtypes.add.xml,busstops.add.xml,e1detectors.add.xml,lust.poly.xml"/>
</input>
<time>
<begin value="0"/>
<step-length value="1"/>
</time>
有时输出是在附加文件中定义的。在您的情况下,从文件列表中删除 e1detectors.add.xml
可能就足够了。