1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
#!/usr/bin/env python
# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
# Copyright (C) 2013-2023 German Aerospace Center (DLR) and others.
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
# https://www.eclipse.org/legal/epl-2.0/
# This Source Code may also be made available under the following Secondary
# Licenses when the conditions for such availability set forth in the Eclipse
# Public License 2.0 are satisfied: GNU General Public License, version 2
# or later which is available at
# https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html
# SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-or-later
# @file plot_summary.py
# @author Daniel Krajzewicz
# @author Laura Bieker
# @author Michael Behrisch
# @date 2013-11-11
"""
This script plots a selected measure from a summary-output.
matplotlib (http://matplotlib.org/) has to be installed for this purpose
"""
from __future__ import absolute_import
from __future__ import print_function
import os
import sys
sys.path.append(os.path.join(os.environ['SUMO_HOME'], 'tools'))
import sumolib # noqa
from sumolib.visualization import helpers # noqa
from sumolib.options import ArgumentParser # noqa
import matplotlib.pyplot as plt # noqa
def main(args=None):
"""The main function; parses options and plots"""
# ---------- build and read options ----------
ap = ArgumentParser()
ap.add_argument("-i", "--summary-inputs", dest="summary", category="input", type=ap.file_list, metavar="FILE",
required=True, help="Defines the summary-output files to use as input")
ap.add_argument("-v", "--verbose", dest="verbose", action="store_true",
default=False, help="If set, the script says what it's doing")
ap.add_argument("-m", "--measure", dest="measure", category="input",
default="running", help="Define which measure to plot")
# standard plot options
helpers.addInteractionOptions(ap)
helpers.addPlotOptions(ap)
# parse
options = ap.parse_args(args=args)
files = options.summary.split(",")
fig, ax = helpers.openFigure(options)
for i, f in enumerate(files):
t = []
v = []
for time, val in sumolib.xml.parse_fast(f, "step", ("time", options.measure)):
t.append(sumolib.miscutils.parseTime(time))
v.append(float(val))
c = helpers.getColor(options, i, len(files))
addArgs = {"linestyle": options.linestyle, "color": c}
if options.marker is not None:
addArgs["marker"] = options.marker
plt.plot(t, v, label=helpers.getLabel(f, i, options), **addArgs)
helpers.closeFigure(fig, ax, options)
if __name__ == "__main__":
try:
main()
except ValueError as e:
sys.exit(e)
|