Re: [sumo-user] Generating routes from many trip files

2021-03-08 Thread Jakob Erdmann
Hello, The fastest and most efficient): call duarouter once will all the trip files. duaIterate does the same thing using subprocess.call but it does this seperately for each file. The only downside is that you have to use your own code the seperate the trips into separate files (if needed) since

Re: [sumo-user] SUMO Parameters to Ensure Lane Change

2021-03-08 Thread Jakob Erdmann
Hello, the cooperative speed adjustments for laneChanging are disabled when setting lcCooperative=0. If you don't want cooperative lane changing but still want automatic speed adjustments, set vType attribute lcCooperativeSpeed=1 Also, you can configure a more aggressive gap acceptance by setting

Re: [sumo-user] Unspecified Fatal Error and blank trace logging outputs

2021-03-08 Thread Jakob Erdmann
Hello, I ran your traceFile provided on friday and also no_rerouting_threads_no_multiprocess_trace_file_log.txt from saturday but was unable to reproduce the crash. To rerun the trace file all you have to do is add 'import traci' and any lines needed to make this import work and then treat it as

Re: [sumo-user] How to make your own GUI Vehicle shape?

2021-03-08 Thread Jakob Erdmann
Hello, the easiest solution is to texture the vehicle by setting vType attribute imgFile and then changing the vehicle gui settings to 'show as raster images'. You can also make a segmented ship shape by setting "carriageLength":

Re: [sumo-user] Results not showing correctly

2021-03-08 Thread Jakob Erdmann
with default settings the two calls below should show at least different vehicle speeds: sumo-gui -c test.sumocfg --seed 1 sumo-gui -c test.sumocfg --seed 2 Am Fr., 5. März 2021 um 18:59 Uhr schrieb ali mirzaei : > Hello, > May I ask you to mention the steps that lead to observing a different

Re: [sumo-user] Darse de baja

2021-03-08 Thread Michele Albano
To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/sumo-user Michele Albano Aalborg University On Mon, Mar 8, 2021 at 9:51 PM Cristian Torres wrote: > > Hola, quisiera saber como puedo darme de baja en la lista de usuarios. > > Gracias >

[sumo-user] Darse de baja

2021-03-08 Thread Cristian Torres
Hola, quisiera saber como puedo darme de baja en la lista de usuarios. Gracias ___ sumo-user mailing list sumo-user@eclipse.org To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/sumo-user

Re: [sumo-user] Generating routes from many trip files

2021-03-08 Thread Chris Abraham
After scouring the docs the whole day, the only solution I can think of is to use getShortestPath() from sumolib.net.Net , and build arou.xmlfile from its outputs. Does that sound possible? I was hoping for an easier way. Also I wanted to