Re: [sumo-user] DFROUTER Detector type is discarded for most of detectors

2020-06-19 Thread Jakob Erdmann
> The documentation in above-mentioned link says to use the speed in km/hr > and > time is in minutes. > In your previous email, you replied to me that speed to be used in the flow > file is in m/s. Could you please confirm the unit for speed once again? > Sorry for that. detector flow files are

[sumo-user] LIBSUMO_AS_TRACI=1 causes error

2020-06-19 Thread marcelreppi
Hello, I tried to use LIBSUMO_AS_TRACI=1 on Ubuntu to avoid changing all my scripts but I get the following error: Traceback (most recent call last): File "create_poly_db.py", line 13, in import traci File "/usr/local/share/sumo/tools/traci/__init__.py", line 30, in from libsumo

Re: [sumo-user] DFROUTER Detector type is discarded for most of detectors

2020-06-19 Thread anilbaral
Hi Jakob, Thanks for your answers and your presentation at the user conference on youtube. I still have a question about the flow data units to be used in flow files for DFROUTER and flowrouter.py. The documentation in two different pages seems inconsistent, which inturns create confusion about

[sumo-user] Value retrieval on time step

2020-06-19 Thread Thanos Tasakos
In documentation there are functions like *getCO2Emission*(self, edgeID)getCO2Emission (string) -> double Returns the CO2 emission in mg for the last time step on the given edge. What is that time step's duration and is it

Re: [sumo-user] Reaction of vehicles to emergency vehicle

2020-06-19 Thread Reza
Thanks. I really appreciate that. -- Sent from: http://sumo-user-mailing-list.90755.n8.nabble.com/ ___ 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] Gap acceptance in lane changing

2020-06-19 Thread Jakob Erdmann
1) Yes 2) you can set minGap=0 to lower the size of accepted gaps. At high speeds you will not see adverse effects but gaps will probably appear too small at lower speeds. Some car-following models such as IDM require minGap as an additional buffer for collision-free driving. Am Fr., 19. Juni

Re: [sumo-user] Routing based on traffic density

2020-06-19 Thread Kaubruegger, Benedikt
Thank you very much, thats what I was looking for. Von: sumo-user-boun...@eclipse.org Im Auftrag von Jakob Erdmann Gesendet: Freitag, 19. Juni 2020 14:54 An: Sumo project User discussions Betreff: Re: [sumo-user] Routing based on traffic density see this minimal example for routeSampler use:

Re: [sumo-user] SUMO for 3D visualization

2020-06-19 Thread Jakob Erdmann
You can test 3D-Visualization with the extended version: https://sumo.dlr.de/releases/1.6.0/sumo-win64extra-1.6.0.zip see https://sumo.dlr.de/docs/SUMO-GUI.html#3d_visualization Not much work has gone into making this look pretty and documentation is lacking as well. Am Fr., 19. Juni 2020 um

Re: [sumo-user] Routing based on traffic density

2020-06-19 Thread Jakob Erdmann
see this minimal example for routeSampler use: https://github.com/eclipse/sumo/blob/master/tests/tools/turndefs/routeSampler/edgedata/input_edgedata.xml There is not much structure to it. Intervals describe the time range in seconds (interval id is arbitrary), the edge attribute name of 'count' is

Re: [sumo-user] Routing based on traffic density

2020-06-19 Thread Kaubruegger, Benedikt
Thank you for your answer. I am still not sure about the exact syntax for Edge-data files, because i could only find the genereated output here: https://sumo.dlr.de/docs/Simulation/Output/Lane-_or_Edge-based_Traffic_Measures.html [cid:image001.png@01D64644.D5DE89A0] Is there any other

Re: [sumo-user] Failed reading junction shape

2020-06-19 Thread Jakob Erdmann
Yes. This should work. It is working for a 4-arm intersection in our own C++ client test. I'm assuming that you are using the C++ client and linking against src/utils/traci/TraCIAPI.h How did you check the TraCI version? Am Mo., 15. Juni 2020 um 10:28 Uhr schrieb zipfl : > Hello, > > I'm

Re: [sumo-user] Routing based on traffic density

2020-06-19 Thread Jakob Erdmann
Yes. routeSampler should work for this. Edge-data files can be created manually with netedit and also from text-based formats of detector data. However, if your density data comes from a database or some other kind of format the easiest solution is to write a small data-transformation script. You

Re: [sumo-user] Connecting multiple routes

2020-06-19 Thread Jakob Erdmann
For each physical vehicle you can define a and then concatenate all stops that the vehicle is supposed to service over the day. The simulation will automatically compute the route to connect all those stops. Am Di., 16. Juni 2020 um 23:31 Uhr schrieb Maximilian Socher <

[sumo-user] Routing based on traffic density

2020-06-19 Thread Kaubruegger, Benedikt
Hello, I have a question regarding edge based routing. I have access to traffic density data on edge granularity in hourly steps and would like to know if there is an implementation in SUMO, which generates routes from this kind of data or upscales a subset of routes (I can get around 5% of the

Re: [sumo-user] Gap acceptance in lane changing

2020-06-19 Thread Solmaz Razmi Rad - CITG
1.So, the requireGap, depends on the followSpeed. And followSpeed should be also influenced by “tau”. Then the requireGap is always a function of tau. Is this right? Can I say, if I have a distribution for tau, I will have a variation for gap acceptance (requireGap)? 2.And

Re: [sumo-user] on-ramp

2020-06-19 Thread Jakob Erdmann
see https://sumo.dlr.de/docs/Simulation/Motorways.html Am Fr., 19. Juni 2020 um 07:25 Uhr schrieb boscoma : > Hello everyone, I am new to SUMO and I am conducting a project about the > on-ramp performance now. I have searched for how to construct an on-ramp > but > I am not able to do so. Can

Re: [sumo-user] DFROUTER Detector type is discarded for most of detectors

2020-06-19 Thread Jakob Erdmann
answers inline... When I used > DFROUTER to determine the type (source or sink) of the detector, most of my > detectors are classified as TYPE: discarded. > when I see the sourceSink.xml file generated from flowrouter.py, I just see > one source and one sink. what is the reason for this? I

Re: [sumo-user] Gap acceptance in lane changing

2020-06-19 Thread Jakob Erdmann
1) yes 2) these are computed by the car-follow model functions. They generally are consistent with the followSpeed function so that neither the ego vehicle nor its follower on the target lane have to perform any extra braking after the lane change is completed. 3) if a jam develops immediately

Re: [sumo-user] Reaction of vehicles to emergency vehicle

2020-06-19 Thread Jakob Erdmann
see the update description at https://sumo.dlr.de/docs/Simulation/Emergency.html Am Do., 18. Juni 2020 um 23:13 Uhr schrieb Reza : > Thank you very much for the informative link. However, the description > provided on the link is very concise. I would like to know whether vehicles > should stop

[sumo-user] Gap acceptance in lane changing

2020-06-19 Thread Solmaz Razmi Rad - CITG
Hi there, I am trying to investigate the impact of gap acceptance in lane changing around on-ramps on the capacity of a freeway. I want to use a distribution for the gaps accepted while lane changing. I realized that the parameter which controls the gap acceptance is "lcAssertive" (But if I

Re: [sumo-user] repeating public transit routes

2020-06-19 Thread Jakob Erdmann
Yes. tripId is currently not interacting with repeated laps or flow vehicles. It was implemented for the use case of importing a complete schedule in "uncompressed form" from an external data source (gtfs etc) In this use case no flows or route-repeat definitions are used. Instead each vehicle is

Re: [sumo-user] repeating public transit routes

2020-06-19 Thread Tripplanner Mumbai
@Jakob, *Rerouting:* Yes, I am interested in having two routes for a single public transit line. Any vehicle assigned to this line will swap between the routes once it reaches the end point at one direction or a depot. I will make an attempt soo, will inform about the progress, and troubles if

Re: [sumo-user] repeating public transit routes

2020-06-19 Thread Jakob Erdmann
Rerouting currently does not work with stops that follow a fixed schedule (attribute 'until'). However, the use case with depot + cycle1 + cycle2 + ... + cyclen + depot was already discussed and is demonstrated in

Re: [sumo-user] timestep

2020-06-19 Thread Ishan Dindorkar
Dear Jacob, Thank you for your prompt response. I tried your suggestion and it is working for me as expected! Sincerely, Ishan Dindorkar On Fri, Jun 19, 2020 at 1:51 AM Jakob Erdmann wrote: > use --device.fcd.period 10 ( >