Simulation/Output/Lane- or Edge-based Traffic Measures

Values within this output describe the situation within the network in terms of traffic science by giving macroscopic values such as the mean vehicle speed, the mean density, etc. This output can be generated either for lanes, or for edges.

In the following, it is described how both outputs are generated and which values they contain. Then, the meanings of the values are given as well as a description of intervals. At last, some additional possibilities to constraint the outputs are given.

Note:
Please remark that these outputs are also called "aggregated lane/edge states", "meandata", or "edge/lane-dumps".

Contents

Instantiating within the Simulation

Meandata Definition

An edge-based state dump is defined within an additional file as following:

<edgeData id="<DETECTOR_ID>" file="<OUTPUT_FILE>"/>

For a lane based dump simply write:

<laneData id="<DETECTOR_ID>" file="<OUTPUT_FILE>"/>

For additional attributes see the table below.

Attribute Name Value Type Description
id id (string) The id of the detector
file filename The path to the output file. The path may be relative.
freq int (time) The aggregation period the values the detector collects shall be summed up. If not given the whole time interval from begin to end (see below) is aggregated.
begin int (time) The time to start writing (intervals starting before this time are discarded). If not given, the simulation's begin is used.
end int (time) The time to end writing (intervals starting at or after this time are discarded). If not given the simulation's end is used.
excludeEmpty string (true, false, defaults) If set to true, edges/lanes which were not use by a vehicle during this period will not be written; default: false. If set to "defaults" default values for travel time and speed depending on edge length and maximum speed get printed.
withInternal bool If set, junction internal edges/lanes will be written as well; default: false.
maxTraveltime float (time) The maximum traveltime in seconds to write if only very small movements occur; default 100000.
minSamples float (time) The minimum total number of seconds vehicles have to be on the edge / lane to consider it non-empty; default: >0.
speedThreshold float (m/s) The maximum speed to consider a vehicle halting; default 0.1.
vTypes string space separated list of vehicle type ids to consider, "" means all; default "".

Generated Output

Edge-Based Network States

For edge-based state dumps, the output file will look like the following:

<meandata>
   <interval begin="<INTERVAL_BEGIN>" end="<INTERVAL_END>" id="<DETECTOR_ID>">
      <edge id="<EDGE_ID>" sampledSeconds="<COLLECTED_VEHICLE_SECONDS>" \
            traveltime="<MEAN_TRAVEL_TIME>" \
            density="<MEAN_DENSITY>" occupancy="<MEAN_OCCUPANCY>" \
            waitingTime="<MEAN_WAITING_TIME>" speed="<MEAN_SPEED>" \
            departed="<EMITTED_VEH_NUMBER>" arrived="<ARRIVED_VEH_NUMBER>" \
            entered="<ENTERED_VEH_NUMBER>" left="<LEFT_VEH_NUMBER>" \
            laneChangedFrom="NUMBER_OF_LANE_LEAVERS" laneChangedTO="NUMBER_OF_LANE_ENTERER"/>

      ... more edges ...

   </interval>

   ... further intervals ...

</meandata>

Please note, that in contrary to the example above, for each edge, all values are reported in one line.


Lane-Based Network States

The generated output looks like the following:

<meandata>
   <interval begin="<INTERVAL_BEGIN>" end="<INTERVAL_END>" id="<DETECTOR_ID>">
      <edge id="<EDGE_ID>">
         <lane id="<LANE_ID>" sampledSeconds="<COLLECTED_VEHICLE_SECONDS>" \
               traveltime="<MEAN_TRAVEL_TIME>" \
               density="<MEAN_DENSITY>" occupancy="<MEAN_OCCUPANCY>" \
               waitingTime="<MEAN_WAITING_TIME>" speed="<MEAN_SPEED>" \
               departed="<EMITTED_VEH_NUMBER>" arrived="<ARRIVED_VEH_NUMBER>" \
               entered="<ENTERED_VEH_NUMBER>" left="<LEFT_VEH_NUMBER>" \
               laneChangedFrom="NUMBER_OF_LANE_LEAVERS" laneChangedTo="NUMBER_OF_LANE_ENTERER"/>

         ... more lanes...

      </edge>

      ... more edges ...

   </interval>

   ... further intervals ...

</meandata>

Please note, that in contrary to the example above, for each lane, all values are reported in one line.


Value Descriptions

Both the edge-dump and the lane-dump are computing the values the same way: every vehicle move - even those with v=0 - is recorded and saved during the interval. After the interval has passed, these values are written into the file after being normalized. In the case of the edge-dump the values are not only normalized by the number of the collected vehicle moves and the length of the lane, but also by the number of lanes of the edge.

The meanings of the written values are given in the following table.

Name Type Description
begin (simulation) seconds The first time step the values were collected in
end (simulation) seconds The last time step + DELTA_T in which the reported values were collected
edge@id (edge) id The name of the reported edge
lane@id (lane) id The name of the reported lane
sampledSeconds s Number seconds vehicles were measured on the edge/lane (may be subseconds if a vehicle enters/leaves the edge/lane). Please note that this value is the sum of the measure times of all vehicles.
traveltime s Time needed to pass the edge/lane, note that this is just an estimation based on the mean speed, not the exact time the vehicles needed.
density #veh/km Vehicle density on the lane/edge
occupancy  % Occupancy of the edge/lane in %
waitingTime s The total number of seconds vehicles were considered stopped
speed m/s The mean speed on the edge/lane within the reported interval
departed #veh The number of vehicles that have been emitted onto the edge/lane within the described interval
arrived #veh The number of vehicles that have finished their route on the edge lane
entered #veh The number of vehicles that have entered the edge/lane by moving from upstream
left #veh The number of vehicles that have left the edge/lane by moving downstream
laneChangedFrom #veh The number of vehicles that changed away from this lane
laneChangedTo #veh The number of vehicles that changed to this lane
vaporized #veh The number of vehicles vaporized on this edge (only present if #veh > 0)

Please note that in the case of edge meandata both laneChanged entries are equal to the total number of lane changes on the edge. Furthermore each lane change is counted separately, that means if one vehicle changes from lane 1 to lane 3 it will generate two lane change counts.

How to aggregate / derive further values

In order to aggregate the output for the same edge / lane over larger time periods the values which count vehicles have to be simply summed, density and occupancy can be simply averaged (if the interval lengths are equal) and speed should be a weighted average with sampledSeconds as weight. To aggregate the traveltime further, calculate the mean speed first and then divide edge/lane length by the speed.

Spatial aggregation (over multiple edges or lanes) is not as easy, especially if they are consecutive, because each vehicle generates data on each lane it is on, even if it is on multiple lanes. In the case of many short and fast moving vehicles the error is negligible but if you have long and slow vehicles you cannot aggregate as above.

The following measurements can be derived from the values given (period denotes the length of the aggregation interval):

  • Average number of vehicles on the edge (#) = sampledSeconds / period
  • Average traffic volume (#/h) = speed * density / 3.6
  • Traffic volume at the begin of the lane / edge (#/h) = 3600 * entered / period
  • Traffic volume at the end of the lane / edge (#/h) = 3600 * left / period
  • Total distance travelled (m) = speed * sampledSeconds

Notes

  • Per default, all edges are written, even those on which no vehicle drove. If the lane / edge collected no data the attributes speed, traveltime, density, occupancy and waitingTime are not written. One can disable writing unused edges/lanes by setting the excludeEmpty attribute to true.
  • Even on lanes/edges which have sampledSeconds="0.00" since the real number of sampledSeconds may be 0.001 and was cut off in the output. To define a minimum number of samples before you consider your data valid, use minSamples in the meandata definition.
  • Even though no data was collected (sampledSeconds="0") departed and laneChangedTo may be different from 0 because internally lane changes and departures happen at the end of a time step.
  • The interval end is the interval begin + aggregation time, meaning that values were collected within these steps excluding the end time itself. If the simulation ends before the last interval is over, the interval will be pruned.
  • The output file will be generated, does not have to exist earlier and will be overwritten if existing without any warning. The folder the output file shall be generated in must exist.
  • If you need only information about the network states during certain time periods, you may constraint generation of the dumps by creating multiple dumps with the attributes begin="<TIME>" and end="<TIME>". All of them may have identical ids and write to the same output file.

See Also


This page was last modified on 2 May 2013, at 11:51.