TraCI 值与输出不符

TraCI value doesn't tally with output

当我在模拟的最后一步执行 traci.edge.getWaitingTime(str(-108542273)) 时,我从中得到了 0 的值。

但是当我去验证生成的基于边缘的状态转储时,发现该值是15。为什么 traci 值没有反映出这一点?他们不是一个意思吗?

<meandata xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://sumo.dlr.de/xsd/meandata_file.xsd">
    <interval begin="0.00" end="602.00" id="edgebased">
       <edge id="-108542273" sampledSeconds="288.08" traveltime="6.77" density="8.67" occupancy="4.33" waitingTime="15.00" speed="8.15" departed="0" arrived="0" entered="39" left="39" laneChangedFrom="0" laneChangedTo="0"/>
       ... more edge entries
    </interval>
</meandata>

我在模拟的最后一步 提取了值,所以我相信 2 应该反映相同的事情?

这是我的全部 python 代码

import os, sys
import subprocess

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'")

def runTraCI():
    trip_outputFile = "trip.output.xml"
    vehroute_outputFile = "vehroute.output.xml"

    PORT = 8817
    sumoBinary = "sumo"
    sumoProcess = subprocess.Popen([sumoBinary, "-c", "data/tracitest.sumocfg", "--no-warnings", "true", "--remote-port", str(PORT),
        "--tripinfo-output", trip_outputFile, "--vehroute-output", vehroute_outputFile], stdout=sys.stdout, stderr=sys.stderr)

    import traci
    import traci.constants as tc
    traci.init(PORT) 
    step = 0
    edgeList = traci.edge.getIDList() #a list of edges of the network
    waitingTimeDict = {key: None for key in edgeList} # create an empty waitingTime dict
    while step <= 600:
        if (step % 300) == 0: # read reading every 300s
            for key, value in waitingTimeDict.iteritems():
                waitingTimeDict[key] = traci.edge.getWaitingTime(str(-108542273))
        traci.simulationStep()
        step += 1

    print waitingTimeDict #when I print this, every value is 0. In another word, edgeID("-108542273") waitingTime was return as 0 to me.
    traci.close()
    sys.exit()

runTraCI()

均值数据输出随时间聚合,因此它显示间隔内等待时间的总和。然而,TraCI 仅调用 returns 最后一个模拟步骤中给定边上的等待时间(不随时间聚合)。