1
0
mirror of https://github.com/Ahp06/SUMO_Emissions.git synced 2024-11-22 03:26:30 +00:00
sumo-emissions/configurator/configurator.py

191 lines
7.0 KiB
Python
Raw Normal View History

2018-12-07 14:53:00 +00:00
# -*- coding: utf-8 -*-
2018-12-14 17:12:44 +00:00
import argparse
2018-12-07 14:53:00 +00:00
import os
import shutil
import subprocess
2018-12-10 12:16:35 +00:00
import tempfile
from xml.etree import ElementTree
2018-12-07 14:53:00 +00:00
import sumolib
2018-12-07 14:53:00 +00:00
import randomTrips
2018-12-07 15:20:31 +00:00
# Absolute path of the directory the script is in
SCRIPTDIR = os.path.dirname(__file__)
2018-12-13 14:10:08 +00:00
TEMPLATEDIR = os.path.join(SCRIPTDIR, 'templates')
2018-12-07 14:53:00 +00:00
2018-12-13 19:58:07 +00:00
vehicle_classes = {
'passenger': {
'--vehicle-class': 'passenger',
'--vclass': 'passenger',
2018-12-14 17:11:32 +00:00
'--prefix': 'veh',
'--min-distance': 300,
'--trip-attributes': 'departLane="best"',
# '--validate': True
2018-12-13 19:58:07 +00:00
},
'bus': {
'--vehicle-class': 'bus',
'--vclass': 'bus',
2018-12-14 17:11:32 +00:00
'--prefix': 'bus',
# '--validate': True
},
'truck': {
'--vehicle-class': 'truck',
'--vclass': 'truck',
'--prefix': 'truck',
'--min-distance': 600,
'--trip-attributes': 'departLane="best"',
# '--validate': True
2018-12-13 19:58:07 +00:00
}
}
2018-12-07 14:53:00 +00:00
class RandomTripsGenerator:
def __init__(self, netpath, routepath, output, vclass, density, *flags, **opts):
self.vclass = vclass
self.options = {
# Default options
'--net-file': netpath,
'--output-trip-file': output,
'--route-file': routepath,
**opts
}
self.flags = [*flags]
edges = sumolib.net.readNet(netpath).getEdges()
self._init_trips(edges, vclass, density)
self.options.update(vehicle_classes[self.vclass])
def add_option(self, opt_name, value):
self.options[opt_name] = value
def generate(self):
print(f'Generating trips for vehicle class {self.vclass}')
randomTrips.main(randomTrips.get_options(dict_to_list(self.options) + self.flags))
def _init_trips(self, edges, vclass, density):
"""
:param edges: foo.rou.xml
:param density: vehicle/km/h
"""
# calculate the total length of the available lanes
length = 0.
for edge in edges:
if edge.allows(vclass):
length += edge.getLaneNumber() * edge.getLength()
period = 3600 / (length / 1000) / density
print(f'Period computed for network : {period}, vclass={self.vclass}')
self.flags.extend(['-p', period])
2018-12-10 12:16:35 +00:00
def load_netconvert_template(osm_input, out_name):
2018-12-13 21:02:54 +00:00
netconfig = ElementTree.parse(os.path.join(TEMPLATEDIR, 'simul.netcfg'))
root = netconfig.getroot()
2018-12-10 12:16:35 +00:00
root.find('input/osm-files').set('value', osm_input)
root.find('output/output-file').set('value', f'{out_name}.net.xml')
root.find('report/log').set('value', f'{out_name}.netconvert.log')
2018-12-13 21:02:54 +00:00
return netconfig
2018-12-10 12:16:35 +00:00
2018-12-10 16:59:26 +00:00
def load_polyconvert_template(osm_file, type_file, scenario_name):
2018-12-13 21:02:54 +00:00
polyconfig = ElementTree.parse(os.path.join(TEMPLATEDIR, 'simul.polycfg'))
root = polyconfig.getroot()
2018-12-10 16:59:26 +00:00
root.find('input/osm-files').set('value', osm_file)
root.find('input/net-file').set('value', f'{scenario_name}.net.xml')
root.find('input/type-file').set('value', type_file)
root.find('output/output-file').set('value', f'{scenario_name}.poly.xml')
root.find('report/log').set('value', f'{scenario_name}.polyconvert.log')
2018-12-13 21:02:54 +00:00
return polyconfig
2018-12-10 16:59:26 +00:00
2018-12-13 21:02:54 +00:00
def load_sumoconfig_template(simulation_name, routefiles=()):
2018-12-13 19:58:07 +00:00
routefiles = routefiles or (f'{simulation_name}.rou.xml',)
2018-12-13 21:02:54 +00:00
sumoconfig = ElementTree.parse(os.path.join(TEMPLATEDIR, 'simul.sumocfg'))
root = sumoconfig.getroot()
2018-12-10 16:59:26 +00:00
root.find('input/net-file').set('value', f'{simulation_name}.net.xml')
2018-12-13 21:02:54 +00:00
root.find('input/route-files').set('value', ','.join(routefiles))
2018-12-10 16:59:26 +00:00
root.find('input/additional-files').set('value', f'{simulation_name}.poly.xml')
root.find('report/log').set('value', f'{simulation_name}.log')
2018-12-13 21:02:54 +00:00
return sumoconfig
2018-12-10 16:59:26 +00:00
def generate_scenario(osm_file, out_path, scenario_name):
net_template = load_netconvert_template(osm_file, scenario_name)
poly_template = load_polyconvert_template(osm_file, 'typemap/osmPolyconvert.typ.xml', scenario_name)
2018-12-13 14:05:37 +00:00
2018-12-10 12:16:35 +00:00
with tempfile.TemporaryDirectory() as tmpdirname:
2018-12-13 21:02:54 +00:00
# Generate POLYCONVERT and NETCONVERT configuration
2018-12-10 16:59:26 +00:00
netconfig = os.path.join(tmpdirname, f'{scenario_name}.netcfg')
polyconfig = os.path.join(tmpdirname, f'{scenario_name}.polycfg')
net_template.write(netconfig)
poly_template.write(polyconfig)
# Copy typemaps to tempdir
2018-12-13 14:10:08 +00:00
shutil.copytree(os.path.join(TEMPLATEDIR, 'typemap'), os.path.join(tmpdirname, 'typemap'))
2018-12-13 21:02:54 +00:00
# Call POLYCONVERT and NETCONVERT
2018-12-10 16:59:26 +00:00
polyconvert_cmd = ['polyconvert', '-c', polyconfig]
2018-12-10 12:16:35 +00:00
netconvertcmd = ['netconvert', '-c', netconfig]
subprocess.run(netconvertcmd, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
2018-12-10 16:59:26 +00:00
subprocess.run(polyconvert_cmd, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
# Move files to destination
2018-12-13 19:58:07 +00:00
ignore_patterns = shutil.ignore_patterns('*.polycfg', '*.netcfg', 'typemap')
shutil.copytree(tmpdirname, out_path, ignore=ignore_patterns)
2018-12-07 14:53:00 +00:00
2018-12-13 21:02:54 +00:00
def generate_mobility(out_path, name):
netfile = f'{name}.net.xml'
netpath = os.path.join(out_path, netfile)
output = os.path.join(out_path, f'{name}.trips.xml')
2018-12-13 19:58:07 +00:00
routefiles = []
2018-12-07 14:53:00 +00:00
end_time = 200
2018-12-13 19:58:07 +00:00
classes = ('passenger', 'bus')
for vclass in classes:
2018-12-13 19:58:07 +00:00
# simname.bus.rou.xml, simname.passenger.rou.xml, ...
routefile = f'{name}.{vclass}.rou.xml'
2018-12-13 21:02:54 +00:00
routepath = os.path.join(out_path, routefile)
2018-12-13 19:58:07 +00:00
routefiles.append(routefile)
generator = RandomTripsGenerator(netpath, routepath, output, vclass, 10, '-l', **{'--end': end_time})
generator.generate()
2018-12-13 19:58:07 +00:00
return routefiles
def generate_sumo_configuration(routefiles, path, scenario_name):
2018-12-13 21:02:54 +00:00
sumo_template = load_sumoconfig_template(scenario_name, routefiles=routefiles)
2018-12-13 14:05:37 +00:00
sumo_template.write(os.path.join(path, f'{scenario_name}.sumocfg'))
2018-12-13 19:58:07 +00:00
def generate_all(osm_file, path, simulation_name):
simulation_dir = os.path.join(path, simulation_name)
2018-12-13 14:05:37 +00:00
logs_dir = os.path.join(simulation_dir, 'log')
generate_scenario(osm_file, simulation_dir, simulation_name)
2018-12-13 19:58:07 +00:00
routefiles = generate_mobility(simulation_dir, simulation_name)
generate_sumo_configuration(routefiles, simulation_dir, simulation_name)
2018-12-13 14:05:37 +00:00
# Move all logs to logdir
2018-12-13 14:20:11 +00:00
move_logs(simulation_dir, logs_dir)
def move_logs(simulation_dir, logs_dir):
2018-12-13 14:05:37 +00:00
for f in os.listdir(simulation_dir):
if os.path.splitext(f)[1] == '.log':
shutil.move(os.path.join(simulation_dir, f), logs_dir)
2018-12-07 14:53:00 +00:00
2018-12-13 19:58:07 +00:00
def dict_to_list(d):
return [item for k in d for item in (k, d[k])]
2018-12-14 17:12:44 +00:00
def main():
parser = argparse.ArgumentParser()
parser.add_argument('osmfile', type=str)
parser.add_argument('--path', type=str, help='Where to generate the files')
parser.add_argument('--name', type=str, required=True, help='Name of the scenario to generate')
args = parser.parse_args()
generate_all(args.osmfile, args.path, args.name)
2018-12-07 14:53:00 +00:00
if __name__ == '__main__':
2018-12-13 14:20:11 +00:00
if os.path.isdir('/tmp/scenario/foo'):
shutil.rmtree('/tmp/scenario/foo')
2018-12-13 14:05:37 +00:00
path = '/tmp/scenario/'
osm = '/tmp/scenario/map.osm'
generate_all(osm, path, 'foo')
2018-12-14 17:12:44 +00:00
# main()