1
0
mirror of https://github.com/Ahp06/SUMO_Emissions.git synced 2024-11-21 19:16:30 +00:00

Supress stdout of the commnands

This commit is contained in:
Thibaud Gasser 2018-12-07 16:45:11 +01:00
parent 9bfc30d31d
commit 3f171fe19e

View File

@ -21,9 +21,9 @@ def clean():
def generate_scenario(out_path, name):
print('Creating the network…')
subprocess.run(NETCONVERTCMD)
subprocess.run(NETCONVERTCMD, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
print('Extracting polygons…')
subprocess.run(POLYCONVERTCMD)
subprocess.run(POLYCONVERTCMD, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
print('Moving files')
shutil.move(os.path.join(STATICDIR, 'simul.net.xml'), os.path.join(out_path, f'{name}.net.xml'))
shutil.move(os.path.join(STATICDIR, 'simul.poly.xml'), os.path.join(out_path, f'{name}.poly.xml'))