mirror of
				https://github.com/Ahp06/SUMO_Emissions.git
				synced 2025-11-03 19:49:19 +00:00 
			
		
		
		
	Supress stdout of the commnands
This commit is contained in:
		@@ -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'))
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user