forked from eclipse-sumo/sumo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjtcrouter.py
156 lines (140 loc) · 6.96 KB
/
jtcrouter.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
#!/usr/bin/env python
# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
# Copyright (C) 2012-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 jtcrouter.py
# @author Jakob Erdmann
# @date 2019-11-07
"""
Generate routes like jtrrouter but bas on count parameters at connections
The counts are used to derive the turn file and flow file for calling jtrrouter
"""
from __future__ import absolute_import
from __future__ import print_function
import os
import sys
from argparse import ArgumentParser
from collections import defaultdict
import subprocess
if 'SUMO_HOME' in os.environ:
sys.path.append(os.path.join(os.environ['SUMO_HOME'], 'tools'))
sys.path.append(os.path.join(os.environ['SUMO_HOME'], 'tools/turn-defs'))
import sumolib # noqa
from turnCount2EdgeCount import parseEdgeCounts # noqa
def get_options(args=None):
parser = ArgumentParser(description="Route by turn counts")
parser.add_argument("-n", "--net-file", dest="net", help="Input net file")
parser.add_argument("-t", "--turn-file", dest="turnFile", help="Input turn-count file")
parser.add_argument("-o", "--output-file", dest="out", default="out.rou.xml",
help="Output route file")
parser.add_argument("--turn-output", dest="turnOutput", default="turns.tmp.xml",
help="Intermediate turn-ratio-file")
parser.add_argument("--flow-output", dest="flowOuput", default="flows.tmp.xml",
help="Intermediate flow file")
parser.add_argument("--turn-attribute", dest="turnAttr", default="count",
help="Read turning counts from the given attribute")
parser.add_argument("-b", "--begin", default=0, help="begin time")
parser.add_argument("-e", "--end", default=3600, help="end time (default 3600)")
parser.add_argument("-p", "--count-param", dest="countParam", default="count",
help="the connection parameter to use as count")
parser.add_argument("--fringe-flows", action="store_true", default=False, dest="fringe_flows",
help="Avoid overlapping flows (start only on the outside of the network)")
parser.add_argument("--discount-sources", "-D", action="store_true", default=False, dest="discountSources",
help="passes option --discount-sources to jtrrouter")
parser.add_argument("--prefix", dest="prefix", default="",
help="prefix for the flow ids")
parser.add_argument("-a", "--attributes", dest="flowattrs", default="",
help="additional flow attributes")
options = parser.parse_args(args=args)
if options.net is None:
parser.print_help()
sys.exit()
if options.flowattrs and options.flowattrs[0] != ' ':
options.flowattrs = ' ' + options.flowattrs
return options
def findFringe(edge, countParam, intermediateCounts=None):
if intermediateCounts:
# do not backtrack past edges that define turning counts (to avoid duplicate flows)
return None
if edge.is_fringe(edge._incoming):
return edge
elif len(edge.getIncoming()) == 1:
prev = edge.getIncoming().keys()[0]
return findFringe(prev, countParam, getCounts(prev, countParam))
return None
def getCounts(edge, countParam):
counts = defaultdict(lambda: 0)
for toEdge, cons in edge.getOutgoing().items():
for con in cons:
value = con.getParam(countParam)
if value is not None:
counts[con.getTo().getID()] += float(value)
return counts
def main(options):
if options.turnFile is None:
# read data from connection params
net = sumolib.net.readNet(options.net)
with open(options.turnOutput, 'w') as tf, open(options.flowOuput, 'w') as ff:
sumolib.writeXMLHeader(tf, "$Id$", "turns") # noqa
sumolib.writeXMLHeader(ff, "$Id$", "routes") # noqa
tf.write(' <interval begin="%s" end="%s">\n' % (options.begin, options.end))
for edge in net.getEdges():
counts = getCounts(edge, options.countParam)
if counts:
tf.write(' <fromEdge id="%s">\n' % (edge.getID()))
for toEdge, count in counts.items():
tf.write(' <toEdge id="%s" probability="%s"/>\n' % (toEdge, count))
tf.write(' </fromEdge>\n')
totalCount = int(sum(counts.values()))
fromEdge = edge
if options.fringe_flows:
fromEdge = findFringe(edge, options.countParam)
if fromEdge:
ff.write(' <flow id="%s%s" from="%s" begin="%s" end="%s" number="%s"%s/>\n' % (
options.prefix, edge.getID(), fromEdge.getID(),
options.begin, options.end,
totalCount, options.flowattrs))
tf.write(' </interval>\n')
tf.write('</turns>\n')
ff.write('</routes>\n')
else:
# read turn-count file
options.turnOutput = options.turnFile
with open(options.flowOuput, 'w') as ff:
ff.write('<routes>\n')
for i, interval in enumerate(parseEdgeCounts(options.turnFile, options.turnAttr)):
interval_id, interval_begin, interval_end, counts = interval
for edge in sorted(counts.keys()):
count = counts[edge]
if count > 0:
flowID = edge
if i > 0:
flowID += "#%s" % i
ff.write(' <flow id="%s%s" from="%s" begin="%s" end="%s" number="%s"%s/>\n' % (
options.prefix,
flowID, edge, interval_begin, interval_end,
int(count),
options.flowattrs))
ff.write('</routes>\n')
JTRROUTER = sumolib.checkBinary('jtrrouter')
args = [JTRROUTER,
'-n', options.net,
'--turn-ratio-files', options.turnOutput,
'--route-files', options.flowOuput,
'--accept-all-destinations',
'-o', options.out]
if not options.fringe_flows:
args += ['-S']
if options.discountSources:
args += ['-D']
subprocess.call(args)
if __name__ == "__main__":
main(get_options())