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 76 77 78 79 80 81 82 83
|
#!/usr/bin/env python
# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
# Copyright (C) 2013-2020 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 csv2vss.py
# @author Michael Behrisch
# @date 2013-06-04
from __future__ import absolute_import
import os
import sys
import collections
from optparse import OptionParser
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
import sumolib.output # noqa
def parse_args():
USAGE = "Usage: " + sys.argv[0] + " <csv> [options]"
optParser = OptionParser()
optParser.add_option("-o", "--outfile", help="name of output file")
optParser.add_option("-d", "--detectorfile", help="name of detector file")
optParser.add_option(
"-s", "--scale", default=60, help="scaling factor for time")
options, args = optParser.parse_args()
try:
options.csvfile = args[0]
except Exception:
sys.exit(USAGE)
if options.outfile is None:
options.outfile = options.csvfile + ".add.xml"
return options
def main():
options = parse_args()
detectors = {}
if options.detectorfile:
for det in sumolib.output.parse(options.detectorfile, "detectorDefinition"):
if det.type == "sink":
detectors[det.id] = det.lane
timeline = collections.defaultdict(list)
with open(options.csvfile) as f:
for line in f:
data = line.split(";")
try:
if float(data[2]) > 0.:
timeline[data[0]].append(
(options.scale * float(data[1]), float(data[4]) / 3.6))
except Exception:
pass
# maybe we should sort the timeline here
with open(options.outfile, 'w') as outf:
outf.write("<additional>\n")
for det, times in timeline.iteritems():
if detectors:
if det in detectors:
outf.write(
' <variableSpeedSign id="vss_%s" lanes="%s">\n' % (det, detectors[det]))
else:
continue
else:
outf.write(
' <variableSpeedSign id="vss_%s" lanes="%s">\n' % (det, det))
for entry in times:
outf.write(
' <step time="%.3f" speed="%.3f"/>\n' % entry)
outf.write(' </variableSpeedSign>\n')
outf.write("</additional>\n")
if __name__ == "__main__":
main()
|