forked from eclipse-sumo/sumo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerateParkingAreas.py
executable file
·99 lines (85 loc) · 4.79 KB
/
generateParkingAreas.py
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#!/usr/bin/env python
# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
# Copyright (C) 2010-2021 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 generateParkingAreas.py
# @author Jakob Erdmann
# @date 2021-11-25
from __future__ import print_function
from __future__ import absolute_import
import os
import sys
import random
if 'SUMO_HOME' in os.environ:
sys.path.append(os.path.join(os.environ['SUMO_HOME'], 'tools'))
import sumolib # noqa
from sumolib.miscutils import uMax # noqa
def get_options(args=None):
optParser = sumolib.options.ArgumentParser(description="Generate trips between random locations")
optParser.add_argument("-n", "--net-file", dest="netfile",
help="define the net file (mandatory)")
optParser.add_argument("-o", "--output-file", dest="outfile",
default="parkingareas.add.xml", help="define the output filename")
optParser.add_argument("-p", "--probability", type=float, default=1,
help="Probability for an edge to receive a parkingArea")
optParser.add_argument("-L", "--length", type=float, default=6,
help="Length required per parking space")
optParser.add_argument("-l", "--space-length", type=float, default=5, dest="spaceLength",
help="visual length of each parking space")
optParser.add_argument("-w", "--width", type=float,
help="visual lengtth of each parking space")
optParser.add_argument("-r", "--random-capacity", action="store_true", dest="randCapacity",
default=False, help="Randomize roadsideCapacity")
optParser.add_argument("--min", type=int, default=0,
help="Minimum capacity for parkingAreas")
optParser.add_argument("--max", type=int, default=uMax,
help="Maximum capacity for parkingAreas")
optParser.add_argument("-a", "--angle", type=float,
help="parking area angle")
optParser.add_argument("--prefix", default="pa", help="prefix for the parkingArea ids")
optParser.add_argument("-s", "--seed", type=int, default=42, help="random seed")
optParser.add_argument("--random", action="store_true", default=False,
help="use a random seed to initialize the random number generator")
optParser.add_argument("--vclass", default="passenger",
help="only use edges which permit the given vehicle class")
optParser.add_argument("-v", "--verbose", action="store_true",
default=False, help="tell me what you are doing")
options = optParser.parse_args(args=args)
if not options.netfile:
optParser.print_help()
sys.exit(1)
return options
def main(options):
if not options.random:
random.seed(options.seed)
net = sumolib.net.readNet(options.netfile)
with open(options.outfile, 'w') as outf:
sumolib.writeXMLHeader(outf, "$Id$", "additional", options=options) # noqa
for edge in net.getEdges():
for lane in edge.getLanes():
if lane.allows(options.vclass):
if random.random() < options.probability:
capacity = lane.getLength() / options.length
if options.randCapacity:
capacity *= random.random()
capacity = min(options.max, max(options.min, int(capacity)))
if capacity > 0 or capacity == options.max:
angle = '' if options.angle is None else ' angle="%s"' % options.angle
length = '' if options.spaceLength <= 0 else ' length="%s"' % options.spaceLength
width = '' if options.width is None else ' width="%s"' % options.width
outf.write(' <parkingArea id="%s%s" lane="%s" roadsideCapacity="%s"%s%s%s/>\n' % (
options.prefix, edge.getID(), lane.getID(),
capacity, length, width, angle))
break
outf.write("</additional>\n")
if __name__ == "__main__":
if not main(get_options()):
sys.exit(1)