Re: [sumo-user] (no subject)

2023-06-09 Thread Jakob Erdmann
run with:
--statistic-output stats.xml --tripinfo-output tripinfos.xml
--device.emissions.probability 1

- almost all the average values you want are in statistic-output (see
https://sumo.dlr.de/docs/Simulation/Output/StatisticOutput.html)
- you can get the average fuel/electricity consumption with
sumo/tools/output/attributeStats.py tripinfos.xml -e emissions -a
fuel_abs,electricity_abs



Am Fr., 9. Juni 2023 um 15:17 Uhr schrieb :

> Hi all,
>
>
>
> I’m looking for the most efficient way to get the following statistics:
>
>- the average time taken for a vehicle to complete its route,
>- the average distance travelled for a vehicle to complete its route,
>- the average amount of time a vehicle spent queuing while traversing
>its route,
>- and the average energy consumed for each vehicle to complete their
>route,
>
> of all vehicles that completed their routes during the simulation.
>
>
>
> I could get this information from the xml output files, but they take up a
> lot of space and that adds a lot of processing time.
>
>
>
> Any ideas?
> ___
> sumo-user mailing list
> sumo-user@eclipse.org
> To unsubscribe from this list, visit
> https://www.eclipse.org/mailman/listinfo/sumo-user
>
___
sumo-user mailing list
sumo-user@eclipse.org
To unsubscribe from this list, visit 
https://www.eclipse.org/mailman/listinfo/sumo-user


[sumo-user] (no subject)

2023-06-09 Thread williamrpaine
Hi all,

 

I'm looking for the most efficient way to get the following statistics:

*   the average time taken for a vehicle to complete its route,
*   the average distance travelled for a vehicle to complete its route,
*   the average amount of time a vehicle spent queuing while traversing
its route,
*   and the average energy consumed for each vehicle to complete their
route,

of all vehicles that completed their routes during the simulation.

 

I could get this information from the xml output files, but they take up a
lot of space and that adds a lot of processing time.

 

Any ideas?

___
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] (no subject)

2023-02-14 Thread HoujiaQD
Thank you very much ! It works!!!
















At 2023-02-14 15:57:09, "Jakob Erdmann"  wrote:

Most likely, the first vehicle did not clear up the insertion location quickly 
enough for the second vehicle to enter on time *safely*.
Where *safely* is related to the gap that the car following model would like to 
maintain at insertion based on the desired insertion speed.
You can disable the safety check by setting vehicle attribute 
insertionChecks="none" (see 
https://sumo.dlr.de/docs/Definition_of_Vehicles%2C_Vehicle_Types%2C_and_Routes.html#available_vehicle_attributes).


Am Di., 14. Feb. 2023 um 08:33 Uhr schrieb qidiao :


Hi, Jakob,

 

I simulated severalcontinuous intersectionson sumo, and the depart time of the 
vehicles subjected touniform distribution(the departtime equal to4sin my 
experiments). I used  reinforcement learning algorithm to generatethe 
acceleration for the vehicleat each simulation step. What confuses me is that 
the output of the routing file shows that the depart delay is not equal to 0 
for some vehicles.(The desired depart time of the second veh should be 8 s, but 
the actual depart time is 9 s, depart delay = 1 s). I would like to know how to 
solvethis problem.

 

As always, many thanks !

 

Houjia

从 Windows 版邮件发送

 

___
sumo-user mailing list
sumo-user@eclipse.org
To unsubscribe from this list, visit 
https://www.eclipse.org/mailman/listinfo/sumo-user
___
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] (no subject)

2023-02-13 Thread Jakob Erdmann
Most likely, the first vehicle did not clear up the insertion location
quickly enough for the second vehicle to enter on time *safely*.
Where *safely* is related to the gap that the car following model would
like to maintain at insertion based on the desired insertion speed.
You can disable the safety check by setting vehicle attribute
insertionChecks="none" (see
https://sumo.dlr.de/docs/Definition_of_Vehicles%2C_Vehicle_Types%2C_and_Routes.html#available_vehicle_attributes
).

Am Di., 14. Feb. 2023 um 08:33 Uhr schrieb qidiao :

> Hi, Jakob,
>
>
>
> I simulated several continuous intersections on sumo, and the depart time
> of the vehicles subjected to uniform distribution (the depart time equal
> to 4s in my experiments). I used  reinforcement learning algorithm to
> generate the acceleration for the vehicle at each simulation step. What
> confuses me is that the output of the routing file shows that the depart
> delay is not equal to 0 for some vehicles. (The desired depart time of
> the second veh should be 8 s, but the actual depart time is 9 s, depart
> delay = 1 s). I would like to know how to solve this problem.
>
>
>
> As always, many thanks !
>
>
>
> Houjia
>
> 从 Windows 版邮件 发送
>
>
> ___
> sumo-user mailing list
> sumo-user@eclipse.org
> To unsubscribe from this list, visit
> https://www.eclipse.org/mailman/listinfo/sumo-user
>
___
sumo-user mailing list
sumo-user@eclipse.org
To unsubscribe from this list, visit 
https://www.eclipse.org/mailman/listinfo/sumo-user


[sumo-user] (no subject)

2023-02-13 Thread qidiao
Hi, Jakob,

I simulated several continuous intersections on sumo, and the depart time of 
the vehicles subjected to uniform distribution (the depart time equal to 4s in 
my experiments). I used  reinforcement learning algorithm to generate the 
acceleration for the vehicle at each simulation step. What confuses me is that 
the output of the routing file shows that the depart delay is not equal to 0 
for some vehicles. (The desired depart time of the second veh should be 8 s, 
but the actual depart time is 9 s, depart delay = 1 s). I would like to know 
how to solve this problem.

As always, many thanks !

Houjia
从 Windows 版邮件发送

___
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] (no subject)

2021-12-08 Thread Jakob Erdmann
Hello,
by default all vehicles are using the route which would be the fastest in
an empty network.
To distribute the traffic (without reference to measurement data) sumo
supports two approaches
- perform traffic assignment (
https://sumo.dlr.de/docs/Demand/Dynamic_User_Assignment.html)  - iterative
or one-shot
- add randomness to the route search:
https://sumo.dlr.de/docs/Simulation/Routing.html#randomimzed_travel_times
Note, that vehicles may still all use the same route after assignment if
it's objectively the fastest (i.e because the roads are mostly empty).

In your case a second effect may be in play: If you load trips between taz
direclty into SUMO, the arrival and depart edges will not be distributed
over the TAZ. For that you need to run od2trips first.
-
https://sumo.dlr.de/docs/Definition_of_Vehicles%2C_Vehicle_Types%2C_and_Routes.html#traffic_assignment_zones_taz
- https://sumo.dlr.de/docs/Demand/Importing_O/D_Matrices.html

regards,
Jakob


Am Mi., 8. Dez. 2021 um 10:50 Uhr schrieb Ambreen Ilyas Athar <
ambreenilyasat...@gmail.com>:

> Hello to all
>
> I have a question. hope you people will guide me.
>
> I have a conventional grid network with 3 sources and 4 destination TAZ.
> In that network, all the vehicles traveling from one particular source TAZ
> (let say Taz 1) to some particular destination TAZ (let say TAZ 7), follow
> exactly the same edges.
>  What I want from them is to use different edges. How can I do that?
> A picture of my simulation is attached in which it can be seen that the
> whole network is empty and vehicles are following the same set of edges.
> --
> *Warm Regards,*
>
>
> *Ambreen Ilyas Athar,Assistant Professor of Computer Sc*
> *Govt Postgraduate College for Women,*
> *Mandian, Abbottabad*
> ___
> sumo-user mailing list
> sumo-user@eclipse.org
> To unsubscribe from this list, visit
> https://www.eclipse.org/mailman/listinfo/sumo-user
>
___
sumo-user mailing list
sumo-user@eclipse.org
To unsubscribe from this list, visit 
https://www.eclipse.org/mailman/listinfo/sumo-user


[sumo-user] (no subject)

2021-12-08 Thread Ambreen Ilyas Athar
Hello to all

I have a question. hope you people will guide me.

I have a conventional grid network with 3 sources and 4 destination TAZ.
In that network, all the vehicles traveling from one particular source TAZ
(let say Taz 1) to some particular destination TAZ (let say TAZ 7), follow
exactly the same edges.
 What I want from them is to use different edges. How can I do that?
A picture of my simulation is attached in which it can be seen that the
whole network is empty and vehicles are following the same set of edges.
-- 
*Warm Regards,*


*Ambreen Ilyas Athar,Assistant Professor of Computer Sc*
*Govt Postgraduate College for Women,*
*Mandian, Abbottabad*
___
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] (no subject)

2020-10-27 Thread nohtyp
You have to change speed to mode to 6. See
https://sumo.dlr.de/docs/TraCI/Change_Vehicle_State.html#speed_mode_0xb3



--
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


[sumo-user] (no subject)

2020-10-27 Thread Thilagavathy Giri
Hi everyone,
 within the intersection  is it possible to control the speed of vehicles.
i  tried . but the vehicles are not moving with speed set using traci  in
the intersection area. how to solve this issue?
   how to make a code writte n in python  to get implemented in the network
created in sumo.
 with thanks
M S Thilagavathy
___
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] (no subject)

2020-10-01 Thread Jakob Erdmann
The 'sumo' application by itself does not use python. What exactly are you
running?
Did you compare this to the running time on another computer with the same
hardware and a different operating system?
Possibly you are running the debug version. What is the output of calling
'sumo' without arguments?


Am Do., 1. Okt. 2020 um 16:19 Uhr schrieb Pallavi Mandhare <
mandhar...@gmail.com>:

> Hi,
> Why sumo is so slow on ubuntu 20.04 please help
> I am using python3.8
>
> --
> Thanks & Regards
> Pallavi Mandhare Burande
> ___
> sumo-user mailing list
> sumo-user@eclipse.org
> To unsubscribe from this list, visit
> https://www.eclipse.org/mailman/listinfo/sumo-user
>
___
sumo-user mailing list
sumo-user@eclipse.org
To unsubscribe from this list, visit 
https://www.eclipse.org/mailman/listinfo/sumo-user


[sumo-user] (no subject)

2020-10-01 Thread Pallavi Mandhare
Hi,
Why sumo is so slow on ubuntu 20.04 please help
I am using python3.8

-- 
Thanks & Regards
Pallavi Mandhare Burande
___
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] (no subject)

2020-08-03 Thread Jakob Erdmann
Hi Eugene,
can you provide a reproducible scenario?
I'm assuming your scenario runs within the flow framework. You can now make
reproducible traci scenarios by adding the optional argument
traci.start(..., traceFile="somefile") and then sending the generated
traceFile along with the other input files.

cheers,
Jakob

Am Do., 23. Juli 2020 um 16:56 Uhr schrieb :

> Hi,
>
>
>
> Have you checked this? https://sumo.dlr.de/docs/Simulation/Motorways.html
>
> How did you connect the lanes? Because for on ramps it’s important not to
> add a connection to the main edge/road. But for the off-ramps its better to
> do it. Here’s an example:
>
> [image: Add connection from main road][image: Connectivity at on-off-ramp]
>
>
>
> Regards,
>
> Giuliana
>
>
>
> *From:* sumo-user-boun...@eclipse.org [mailto:
> sumo-user-boun...@eclipse.org] *On Behalf Of *Eugene Vinitsky
> *Sent:* Mittwoch, 22. Juli 2020 18:42
> *To:* Sumo project User discussions
> *Subject:* [sumo-user] (no subject)
>
>
>
> Dear all,
>
>
>
> I have configured an on-ramp merge but am regularly seeing collisions on
> it as well as an odd phenomenon where the vehicles move incredibly slowly
> on the junction,
> I've tried both:
>
> 1. setting speed mode to make sure it's set to 25
>
> 2. increasing the length of the merge section
>
> Is there anything else that could be causing it? I can provide a picture
> if it's helpful.
>
>
>
> Thanks!
> ___
> sumo-user mailing list
> sumo-user@eclipse.org
> To unsubscribe from this list, visit
> https://www.eclipse.org/mailman/listinfo/sumo-user
>
___
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] (no subject)

2020-07-23 Thread Maria.Armellini
Hi,

Have you checked this? https://sumo.dlr.de/docs/Simulation/Motorways.html
How did you connect the lanes? Because for on ramps it’s important not to add a 
connection to the main edge/road. But for the off-ramps its better to do it. 
Here’s an example:
[Add connection from main 
road][cid:image008.png@01D66112.2D273C60][Connectivity at on-off-ramp]

Regards,
Giuliana

From: sumo-user-boun...@eclipse.org [mailto:sumo-user-boun...@eclipse.org] On 
Behalf Of Eugene Vinitsky
Sent: Mittwoch, 22. Juli 2020 18:42
To: Sumo project User discussions
Subject: [sumo-user] (no subject)

Dear all,

I have configured an on-ramp merge but am regularly seeing collisions on it as 
well as an odd phenomenon where the vehicles move incredibly slowly on the 
junction,
I've tried both:
1. setting speed mode to make sure it's set to 25
2. increasing the length of the merge section
Is there anything else that could be causing it? I can provide a picture if 
it's helpful.

Thanks!


image005.emz
Description: image005.emz


image007.emz
Description: image007.emz
___
sumo-user mailing list
sumo-user@eclipse.org
To unsubscribe from this list, visit 
https://www.eclipse.org/mailman/listinfo/sumo-user


[sumo-user] (no subject)

2020-07-22 Thread Eugene Vinitsky
Dear all,

I have configured an on-ramp merge but am regularly seeing collisions on it
as well as an odd phenomenon where the vehicles move incredibly slowly on
the junction,
I've tried both:
1. setting speed mode to make sure it's set to 25
2. increasing the length of the merge section

Is there anything else that could be causing it? I can provide a picture if
it's helpful.

Thanks!
___
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] (no subject)

2020-07-02 Thread Amirhosein Karbasi
thank you so much.

On Thu, Jul 2, 2020 at 5:02 PM Jakob Erdmann  wrote:

> Attribute density reports density per edge which gives you twice the
> number of vehicles for a two-lane edge. You can use laneDensity since
> version 1.6.0 for the scaled value.
>
> Am Do., 2. Juli 2020 um 14:27 Uhr schrieb Amirhosein Karbasi <
> amirhosein.karbas...@gmail.com>:
>
>> hi Jakob,
>> I have 2 lane freeway and I used edge data. my min gap is 2.5 and vehicle
>> length is 5 .so my jam density should be nearly 133 vehicle/km but in my
>> edge data jam density is nearly 260 vehicle/km.what is the problem?
>> ___
>> sumo-user mailing list
>> sumo-user@eclipse.org
>> To unsubscribe from this list, visit
>> https://www.eclipse.org/mailman/listinfo/sumo-user
>>
> ___
> sumo-user mailing list
> sumo-user@eclipse.org
> To unsubscribe from this list, visit
> https://www.eclipse.org/mailman/listinfo/sumo-user
>
___
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] (no subject)

2020-07-02 Thread Jakob Erdmann
Attribute density reports density per edge which gives you twice the number
of vehicles for a two-lane edge. You can use laneDensity since version
1.6.0 for the scaled value.

Am Do., 2. Juli 2020 um 14:27 Uhr schrieb Amirhosein Karbasi <
amirhosein.karbas...@gmail.com>:

> hi Jakob,
> I have 2 lane freeway and I used edge data. my min gap is 2.5 and vehicle
> length is 5 .so my jam density should be nearly 133 vehicle/km but in my
> edge data jam density is nearly 260 vehicle/km.what is the problem?
> ___
> sumo-user mailing list
> sumo-user@eclipse.org
> To unsubscribe from this list, visit
> https://www.eclipse.org/mailman/listinfo/sumo-user
>
___
sumo-user mailing list
sumo-user@eclipse.org
To unsubscribe from this list, visit 
https://www.eclipse.org/mailman/listinfo/sumo-user


[sumo-user] (no subject)

2020-07-02 Thread Amirhosein Karbasi
hi Jakob,
I have 2 lane freeway and I used edge data. my min gap is 2.5 and vehicle
length is 5 .so my jam density should be nearly 133 vehicle/km but in my
edge data jam density is nearly 260 vehicle/km.what is the problem?
___
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] (no subject)

2020-06-15 Thread Jakob Erdmann
Currently, the only method to determine departure times is to call
traci.simulation.getDepartedIDList in every simulation step and check
whether the vehicle of interest is part of that list.

Am Mo., 15. Juni 2020 um 15:56 Uhr schrieb Aristide BAMAZI <
aristide.bam...@imsp-uac.org>:

> Hello sumo users and developers,  actually, i am using TRACI coupled with
> SUMO, and faced a problem. I add   vehicles dynamically to the
> simulation with
> < traci.vehicle.add() > method. What I want to know, is it possible to
> retrieve each vehicle departure time from the simulation after adding it
> with the above method? If yes how ?  I have checked in < traci.vehicle >
> object and didn't find anything that can help. Thanks.
> ___
> sumo-user mailing list
> sumo-user@eclipse.org
> To unsubscribe from this list, visit
> https://www.eclipse.org/mailman/listinfo/sumo-user
>
___
sumo-user mailing list
sumo-user@eclipse.org
To unsubscribe from this list, visit 
https://www.eclipse.org/mailman/listinfo/sumo-user


[sumo-user] (no subject)

2020-06-15 Thread Aristide BAMAZI
Hello sumo users and developers,  actually, i am using TRACI coupled with
SUMO, and faced a problem. I add   vehicles dynamically to the
simulation with
< traci.vehicle.add() > method. What I want to know, is it possible to
retrieve each vehicle departure time from the simulation after adding it
with the above method? If yes how ?  I have checked in < traci.vehicle >
object and didn't find anything that can help. Thanks.
___
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] (no subject)

2020-03-23 Thread Flix Chu
Hi Jakob,

I found my way to output the values using CMD. Thank you.

Regards,
Felix

On Mon, 23 Mar 2020 at 17:13, Flix Chu  wrote:

> Hi Jakob,
>
> I am new to programming and I don't know where should I put the code into.
> If I want to output the , shall I include the whole 
> code in the .net file or the .rou file? Also if I want to extract a
> aggregated traffic measure with --duration-log.statistics , where should I
> put it? Thank you so much.
>
> Best regards,
> Felix
>
> On Wed, 4 Mar 2020 at 01:14, Jakob Erdmann  wrote:
>
>> see
>>
>> https://sumo.dlr.de/docs/Simulation/Output.html#aggregated_traffic_measures
>>
>> https://sumo.dlr.de/docs/Simulation/Output/Lane-_or_Edge-based_Traffic_Measures.html#edge-based_network_states
>> https://sumo.dlr.de/docs/Tools/Xml.html#xml2csvpy
>>
>> regards,
>> Jakob
>>
>> Am Di., 3. März 2020 um 17:03 Uhr schrieb Flix Chu <
>> yattsunchu1...@gmail.com>:
>>
>>> Hey guys,
>>>
>>> I am working on the network and demand building in NETEDIT, and I can
>>> successfully run it in SUMO for the visualisation of the simulation.
>>> However, I do not know how to output values in numbers, such as the average
>>> speed of the whole network (as I am simply simulating a 2-lane network of
>>> 5km only), as well as the jam density of the network.
>>>
>>> Is there any way to output the data into an excel file? I appreciate
>>> your help.
>>>
>>> Best Regards,
>>> Felix
>>> ___
>>> sumo-user mailing list
>>> sumo-user@eclipse.org
>>> To change your delivery options, retrieve your password, or unsubscribe
>>> from this list, visit
>>> https://www.eclipse.org/mailman/listinfo/sumo-user
>>>
>> ___
>> sumo-user mailing list
>> sumo-user@eclipse.org
>> To change your delivery options, retrieve your password, or unsubscribe
>> from this list, visit
>> https://www.eclipse.org/mailman/listinfo/sumo-user
>>
>
___
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] (no subject)

2020-03-23 Thread Flix Chu
Hi Jakob,

I am new to programming and I don't know where should I put the code into.
If I want to output the , shall I include the whole 
code in the .net file or the .rou file? Also if I want to extract a
aggregated traffic measure with --duration-log.statistics , where should I
put it? Thank you so much.

Best regards,
Felix

On Wed, 4 Mar 2020 at 01:14, Jakob Erdmann  wrote:

> see
> https://sumo.dlr.de/docs/Simulation/Output.html#aggregated_traffic_measures
>
> https://sumo.dlr.de/docs/Simulation/Output/Lane-_or_Edge-based_Traffic_Measures.html#edge-based_network_states
> https://sumo.dlr.de/docs/Tools/Xml.html#xml2csvpy
>
> regards,
> Jakob
>
> Am Di., 3. März 2020 um 17:03 Uhr schrieb Flix Chu <
> yattsunchu1...@gmail.com>:
>
>> Hey guys,
>>
>> I am working on the network and demand building in NETEDIT, and I can
>> successfully run it in SUMO for the visualisation of the simulation.
>> However, I do not know how to output values in numbers, such as the average
>> speed of the whole network (as I am simply simulating a 2-lane network of
>> 5km only), as well as the jam density of the network.
>>
>> Is there any way to output the data into an excel file? I appreciate your
>> help.
>>
>> Best Regards,
>> Felix
>> ___
>> sumo-user mailing list
>> sumo-user@eclipse.org
>> To change your delivery options, retrieve your password, or unsubscribe
>> from this list, visit
>> https://www.eclipse.org/mailman/listinfo/sumo-user
>>
> ___
> sumo-user mailing list
> sumo-user@eclipse.org
> To change your delivery options, retrieve your password, or unsubscribe
> from this list, visit
> https://www.eclipse.org/mailman/listinfo/sumo-user
>
___
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] (no subject)

2020-03-03 Thread Jakob Erdmann
see
https://sumo.dlr.de/docs/Simulation/Output.html#aggregated_traffic_measures
https://sumo.dlr.de/docs/Simulation/Output/Lane-_or_Edge-based_Traffic_Measures.html#edge-based_network_states
https://sumo.dlr.de/docs/Tools/Xml.html#xml2csvpy

regards,
Jakob

Am Di., 3. März 2020 um 17:03 Uhr schrieb Flix Chu :

> Hey guys,
>
> I am working on the network and demand building in NETEDIT, and I can
> successfully run it in SUMO for the visualisation of the simulation.
> However, I do not know how to output values in numbers, such as the average
> speed of the whole network (as I am simply simulating a 2-lane network of
> 5km only), as well as the jam density of the network.
>
> Is there any way to output the data into an excel file? I appreciate your
> help.
>
> Best Regards,
> Felix
> ___
> sumo-user mailing list
> sumo-user@eclipse.org
> To change your delivery options, retrieve your password, or unsubscribe
> from this list, visit
> https://www.eclipse.org/mailman/listinfo/sumo-user
>
___
sumo-user mailing list
sumo-user@eclipse.org
To change your delivery options, retrieve your password, or unsubscribe from 
this list, visit
https://www.eclipse.org/mailman/listinfo/sumo-user


[sumo-user] (no subject)

2020-03-03 Thread Flix Chu
Hey guys,

I am working on the network and demand building in NETEDIT, and I can
successfully run it in SUMO for the visualisation of the simulation.
However, I do not know how to output values in numbers, such as the average
speed of the whole network (as I am simply simulating a 2-lane network of
5km only), as well as the jam density of the network.

Is there any way to output the data into an excel file? I appreciate your
help.

Best Regards,
Felix
___
sumo-user mailing list
sumo-user@eclipse.org
To change your delivery options, retrieve your password, or unsubscribe from 
this list, visit
https://www.eclipse.org/mailman/listinfo/sumo-user


Re: [sumo-user] (no subject)

2020-01-08 Thread Jakob Erdmann
Yes, if you use a matlab toolbox (or write your own) that handles video
data and then write your own script to transform its results into
appropriate TraCI API calls for SUMO.

Am Mi., 8. Jan. 2020 um 10:31 Uhr schrieb Freeha Ibrar :

> ok if i use traci4matlab and try to control sumo scenario through matlab
> then is it possible to give video type input data ?
>
> On Wed, Jan 8, 2020 at 12:12 PM Jakob Erdmann 
> wrote:
>
>> SUMO cannot process video data. Input must either be in XML as described
>> in https://sumo.dlr.de/docs/SUMO_User_Documentation.html#demand_modelling
>> or created with a program via the TraCI API.
>>
>> Am Mi., 8. Jan. 2020 um 06:09 Uhr schrieb Freeha Ibrar <
>> freeha1...@gmail.com>:
>>
>>> if i just use only SUMO and not create its configuration with Matlab
>>> then SUMO accept the Video form input of traffic to control the traffic
>>> light algorithm?
>>>
>>>
>>> On Wed, Jan 8, 2020 at 10:07 AM Freeha Ibrar 
>>> wrote:
>>>
 Thank u so much

 On Wed, Jan 8, 2020 at 3:35 AM Jakob Erdmann 
 wrote:

> TraCI is used to control the simulation from an external script. This
> is a very flexible way to add custom behavior (such as traffic light
> algorithms) in a variety of programming languages (python, java etc.).
> TraCI4Matlab is for adding custom algorithms with Matlab.
> Without TraCI you can still configure the existing traffic light
> algorithms.
> - fixed time controls
> - traffic actuated controllers with variable phase duration
> - traffic actuated controllers with dynamic phase selection (new since
> version 1.4)
> See https://sumo.dlr.de/docs/Simulation/Traffic_Lights
>
> Am Di., 7. Jan. 2020 um 18:00 Uhr schrieb Freeha Ibrar <
> freeha1...@gmail.com>:
>
>> what is the use of TraCI4Matlab?
>> ___
>> sumo-user mailing list
>> sumo-user@eclipse.org
>> To change your delivery options, retrieve your password, or
>> unsubscribe from this list, visit
>> https://www.eclipse.org/mailman/listinfo/sumo-user
>>
> ___
> sumo-user mailing list
> sumo-user@eclipse.org
> To change your delivery options, retrieve your password, or
> unsubscribe from this list, visit
> https://www.eclipse.org/mailman/listinfo/sumo-user
>
 ___
>>> sumo-user mailing list
>>> sumo-user@eclipse.org
>>> To change your delivery options, retrieve your password, or unsubscribe
>>> from this list, visit
>>> https://www.eclipse.org/mailman/listinfo/sumo-user
>>>
>> ___
>> sumo-user mailing list
>> sumo-user@eclipse.org
>> To change your delivery options, retrieve your password, or unsubscribe
>> from this list, visit
>> https://www.eclipse.org/mailman/listinfo/sumo-user
>>
> ___
> sumo-user mailing list
> sumo-user@eclipse.org
> To change your delivery options, retrieve your password, or unsubscribe
> from this list, visit
> https://www.eclipse.org/mailman/listinfo/sumo-user
>
___
sumo-user mailing list
sumo-user@eclipse.org
To change your delivery options, retrieve your password, or unsubscribe from 
this list, visit
https://www.eclipse.org/mailman/listinfo/sumo-user


Re: [sumo-user] (no subject)

2020-01-08 Thread Freeha Ibrar
ok if i use traci4matlab and try to control sumo scenario through matlab
then is it possible to give video type input data ?

On Wed, Jan 8, 2020 at 12:12 PM Jakob Erdmann  wrote:

> SUMO cannot process video data. Input must either be in XML as described
> in https://sumo.dlr.de/docs/SUMO_User_Documentation.html#demand_modelling
> or created with a program via the TraCI API.
>
> Am Mi., 8. Jan. 2020 um 06:09 Uhr schrieb Freeha Ibrar <
> freeha1...@gmail.com>:
>
>> if i just use only SUMO and not create its configuration with Matlab
>> then SUMO accept the Video form input of traffic to control the traffic
>> light algorithm?
>>
>>
>> On Wed, Jan 8, 2020 at 10:07 AM Freeha Ibrar 
>> wrote:
>>
>>> Thank u so much
>>>
>>> On Wed, Jan 8, 2020 at 3:35 AM Jakob Erdmann 
>>> wrote:
>>>
 TraCI is used to control the simulation from an external script. This
 is a very flexible way to add custom behavior (such as traffic light
 algorithms) in a variety of programming languages (python, java etc.).
 TraCI4Matlab is for adding custom algorithms with Matlab.
 Without TraCI you can still configure the existing traffic light
 algorithms.
 - fixed time controls
 - traffic actuated controllers with variable phase duration
 - traffic actuated controllers with dynamic phase selection (new since
 version 1.4)
 See https://sumo.dlr.de/docs/Simulation/Traffic_Lights

 Am Di., 7. Jan. 2020 um 18:00 Uhr schrieb Freeha Ibrar <
 freeha1...@gmail.com>:

> what is the use of TraCI4Matlab?
> ___
> sumo-user mailing list
> sumo-user@eclipse.org
> To change your delivery options, retrieve your password, or
> unsubscribe from this list, visit
> https://www.eclipse.org/mailman/listinfo/sumo-user
>
 ___
 sumo-user mailing list
 sumo-user@eclipse.org
 To change your delivery options, retrieve your password, or unsubscribe
 from this list, visit
 https://www.eclipse.org/mailman/listinfo/sumo-user

>>> ___
>> sumo-user mailing list
>> sumo-user@eclipse.org
>> To change your delivery options, retrieve your password, or unsubscribe
>> from this list, visit
>> https://www.eclipse.org/mailman/listinfo/sumo-user
>>
> ___
> sumo-user mailing list
> sumo-user@eclipse.org
> To change your delivery options, retrieve your password, or unsubscribe
> from this list, visit
> https://www.eclipse.org/mailman/listinfo/sumo-user
>
___
sumo-user mailing list
sumo-user@eclipse.org
To change your delivery options, retrieve your password, or unsubscribe from 
this list, visit
https://www.eclipse.org/mailman/listinfo/sumo-user


Re: [sumo-user] (no subject)

2020-01-07 Thread Jakob Erdmann
SUMO cannot process video data. Input must either be in XML as described in
https://sumo.dlr.de/docs/SUMO_User_Documentation.html#demand_modelling or
created with a program via the TraCI API.

Am Mi., 8. Jan. 2020 um 06:09 Uhr schrieb Freeha Ibrar :

> if i just use only SUMO and not create its configuration with Matlab  then
> SUMO accept the Video form input of traffic to control the traffic light
> algorithm?
>
>
> On Wed, Jan 8, 2020 at 10:07 AM Freeha Ibrar  wrote:
>
>> Thank u so much
>>
>> On Wed, Jan 8, 2020 at 3:35 AM Jakob Erdmann 
>> wrote:
>>
>>> TraCI is used to control the simulation from an external script. This is
>>> a very flexible way to add custom behavior (such as traffic light
>>> algorithms) in a variety of programming languages (python, java etc.).
>>> TraCI4Matlab is for adding custom algorithms with Matlab.
>>> Without TraCI you can still configure the existing traffic light
>>> algorithms.
>>> - fixed time controls
>>> - traffic actuated controllers with variable phase duration
>>> - traffic actuated controllers with dynamic phase selection (new since
>>> version 1.4)
>>> See https://sumo.dlr.de/docs/Simulation/Traffic_Lights
>>>
>>> Am Di., 7. Jan. 2020 um 18:00 Uhr schrieb Freeha Ibrar <
>>> freeha1...@gmail.com>:
>>>
 what is the use of TraCI4Matlab?
 ___
 sumo-user mailing list
 sumo-user@eclipse.org
 To change your delivery options, retrieve your password, or unsubscribe
 from this list, visit
 https://www.eclipse.org/mailman/listinfo/sumo-user

>>> ___
>>> sumo-user mailing list
>>> sumo-user@eclipse.org
>>> To change your delivery options, retrieve your password, or unsubscribe
>>> from this list, visit
>>> https://www.eclipse.org/mailman/listinfo/sumo-user
>>>
>> ___
> sumo-user mailing list
> sumo-user@eclipse.org
> To change your delivery options, retrieve your password, or unsubscribe
> from this list, visit
> https://www.eclipse.org/mailman/listinfo/sumo-user
>
___
sumo-user mailing list
sumo-user@eclipse.org
To change your delivery options, retrieve your password, or unsubscribe from 
this list, visit
https://www.eclipse.org/mailman/listinfo/sumo-user


[sumo-user] (no subject)

2020-01-07 Thread Freeha Ibrar
Hi, I m very confused  is it is necessary to create configurtaion of SUMO
and Matlab  to create traffic light algorithm ? is it's not possible to
work on single software (SUMO)? will u plz help or tell me what steps
should i take to create traffic light control algorithm in SUMO ? and how i
can create (code) my own algorithm in SUMO?
I will b very thankful to u
___
sumo-user mailing list
sumo-user@eclipse.org
To change your delivery options, retrieve your password, or unsubscribe from 
this list, visit
https://www.eclipse.org/mailman/listinfo/sumo-user


Re: [sumo-user] (no subject)

2020-01-07 Thread Freeha Ibrar
if i just use only SUMO and not create its configuration with Matlab  then
SUMO accept the Video form input of traffic to control the traffic light
algorithm?


On Wed, Jan 8, 2020 at 10:07 AM Freeha Ibrar  wrote:

> Thank u so much
>
> On Wed, Jan 8, 2020 at 3:35 AM Jakob Erdmann 
> wrote:
>
>> TraCI is used to control the simulation from an external script. This is
>> a very flexible way to add custom behavior (such as traffic light
>> algorithms) in a variety of programming languages (python, java etc.).
>> TraCI4Matlab is for adding custom algorithms with Matlab.
>> Without TraCI you can still configure the existing traffic light
>> algorithms.
>> - fixed time controls
>> - traffic actuated controllers with variable phase duration
>> - traffic actuated controllers with dynamic phase selection (new since
>> version 1.4)
>> See https://sumo.dlr.de/docs/Simulation/Traffic_Lights
>>
>> Am Di., 7. Jan. 2020 um 18:00 Uhr schrieb Freeha Ibrar <
>> freeha1...@gmail.com>:
>>
>>> what is the use of TraCI4Matlab?
>>> ___
>>> sumo-user mailing list
>>> sumo-user@eclipse.org
>>> To change your delivery options, retrieve your password, or unsubscribe
>>> from this list, visit
>>> https://www.eclipse.org/mailman/listinfo/sumo-user
>>>
>> ___
>> sumo-user mailing list
>> sumo-user@eclipse.org
>> To change your delivery options, retrieve your password, or unsubscribe
>> from this list, visit
>> https://www.eclipse.org/mailman/listinfo/sumo-user
>>
>
___
sumo-user mailing list
sumo-user@eclipse.org
To change your delivery options, retrieve your password, or unsubscribe from 
this list, visit
https://www.eclipse.org/mailman/listinfo/sumo-user


Re: [sumo-user] (no subject)

2020-01-07 Thread Freeha Ibrar
Thank u so much

On Wed, Jan 8, 2020 at 3:35 AM Jakob Erdmann  wrote:

> TraCI is used to control the simulation from an external script. This is a
> very flexible way to add custom behavior (such as traffic light algorithms)
> in a variety of programming languages (python, java etc.). TraCI4Matlab is
> for adding custom algorithms with Matlab.
> Without TraCI you can still configure the existing traffic light
> algorithms.
> - fixed time controls
> - traffic actuated controllers with variable phase duration
> - traffic actuated controllers with dynamic phase selection (new since
> version 1.4)
> See https://sumo.dlr.de/docs/Simulation/Traffic_Lights
>
> Am Di., 7. Jan. 2020 um 18:00 Uhr schrieb Freeha Ibrar <
> freeha1...@gmail.com>:
>
>> what is the use of TraCI4Matlab?
>> ___
>> sumo-user mailing list
>> sumo-user@eclipse.org
>> To change your delivery options, retrieve your password, or unsubscribe
>> from this list, visit
>> https://www.eclipse.org/mailman/listinfo/sumo-user
>>
> ___
> sumo-user mailing list
> sumo-user@eclipse.org
> To change your delivery options, retrieve your password, or unsubscribe
> from this list, visit
> https://www.eclipse.org/mailman/listinfo/sumo-user
>
___
sumo-user mailing list
sumo-user@eclipse.org
To change your delivery options, retrieve your password, or unsubscribe from 
this list, visit
https://www.eclipse.org/mailman/listinfo/sumo-user


Re: [sumo-user] (no subject)

2020-01-07 Thread Jakob Erdmann
TraCI is used to control the simulation from an external script. This is a
very flexible way to add custom behavior (such as traffic light algorithms)
in a variety of programming languages (python, java etc.). TraCI4Matlab is
for adding custom algorithms with Matlab.
Without TraCI you can still configure the existing traffic light algorithms.
- fixed time controls
- traffic actuated controllers with variable phase duration
- traffic actuated controllers with dynamic phase selection (new since
version 1.4)
See https://sumo.dlr.de/docs/Simulation/Traffic_Lights

Am Di., 7. Jan. 2020 um 18:00 Uhr schrieb Freeha Ibrar :

> what is the use of TraCI4Matlab?
> ___
> sumo-user mailing list
> sumo-user@eclipse.org
> To change your delivery options, retrieve your password, or unsubscribe
> from this list, visit
> https://www.eclipse.org/mailman/listinfo/sumo-user
>
___
sumo-user mailing list
sumo-user@eclipse.org
To change your delivery options, retrieve your password, or unsubscribe from 
this list, visit
https://www.eclipse.org/mailman/listinfo/sumo-user


[sumo-user] (no subject)

2020-01-07 Thread Freeha Ibrar
what is the use of TraCI4Matlab?
___
sumo-user mailing list
sumo-user@eclipse.org
To change your delivery options, retrieve your password, or unsubscribe from 
this list, visit
https://www.eclipse.org/mailman/listinfo/sumo-user


Re: [sumo-user] (no subject)

2019-12-19 Thread Jakob Erdmann
see https://sumo.dlr.de/docs/Demand/Routes_from_Observation_Points.html

Am Do., 19. Dez. 2019 um 06:32 Uhr schrieb Freeha Ibrar <
freeha1...@gmail.com>:

> Hy, i m new to SUMO and im working on a project that will control traffic
> light signals dynamically.i want that i will create a program that take
> video as input in matlab and matlab will detect the number of cars in a
> road these number of cars become the input of SUMO and control the
> scenario. is it possible ?  please help me to understand what steps i
> should take to proceed.
>
> ___
> sumo-user mailing list
> sumo-user@eclipse.org
> To change your delivery options, retrieve your password, or unsubscribe
> from this list, visit
> https://www.eclipse.org/mailman/listinfo/sumo-user
>
___
sumo-user mailing list
sumo-user@eclipse.org
To change your delivery options, retrieve your password, or unsubscribe from 
this list, visit
https://www.eclipse.org/mailman/listinfo/sumo-user


[sumo-user] (no subject)

2019-12-18 Thread Freeha Ibrar
Hy, i m new to SUMO and im working on a project that will control traffic
light signals dynamically.i want that i will create a program that take
video as input in matlab and matlab will detect the number of cars in a
road these number of cars become the input of SUMO and control the
scenario. is it possible ?  please help me to understand what steps i
should take to proceed.
___
sumo-user mailing list
sumo-user@eclipse.org
To change your delivery options, retrieve your password, or unsubscribe from 
this list, visit
https://www.eclipse.org/mailman/listinfo/sumo-user


Re: [sumo-user] (no subject)

2019-12-10 Thread Albert Jeans
Hi Freeha,

What I would do is turn the video data into turning counts for each
intersection for all directions of travel. From that, turn ratios can be
calculated (use a spreadsheet), and those can be used by JTRROUTER along
with the network description and the vehicle input flows to generate routes
which can then be used by SUMO-GUI.

Albert Jeans (new user)

On Tue, Dec 10, 2019 at 10:28 PM Freeha Ibrar  wrote:

> How cab I build a realistic road traffic scenario using real  video type
> traffic data and SUMO?
> ___
> sumo-user mailing list
> sumo-user@eclipse.org
> To change your delivery options, retrieve your password, or unsubscribe
> from this list, visit
> https://www.eclipse.org/mailman/listinfo/sumo-user
>
___
sumo-user mailing list
sumo-user@eclipse.org
To change your delivery options, retrieve your password, or unsubscribe from 
this list, visit
https://www.eclipse.org/mailman/listinfo/sumo-user


Re: [sumo-user] (no subject)

2019-11-20 Thread Mouna karoui
Sorry, I tried to compress the file and treat it with python. But, It takes
a lot of time and it crashes. So what do you recommend to treat this
kind of file?

Le mer. 20 nov. 2019 à 14:10, Mouna karoui  a
écrit :

> I record emissions output for a scenario 24-hour.
> The output file is so large. So, I tried to compress the file with bzip2
> and to treas mentionned in the note here
> https://sumo.dlr.de/docs/Simulation/Output/FullOutput.html
>
>
___
sumo-user mailing list
sumo-user@eclipse.org
To change your delivery options, retrieve your password, or unsubscribe from 
this list, visit
https://www.eclipse.org/mailman/listinfo/sumo-user


[sumo-user] (no subject)

2019-11-20 Thread Mouna karoui
I record emissions output for a scenario 24-hour.
The output file is so large. So, I tried to compress the file with bzip2
and to treas mentionned in the note here
https://sumo.dlr.de/docs/Simulation/Output/FullOutput.html
___
sumo-user mailing list
sumo-user@eclipse.org
To change your delivery options, retrieve your password, or unsubscribe from 
this list, visit
https://www.eclipse.org/mailman/listinfo/sumo-user


Re: [sumo-user] (no subject)

2019-08-29 Thread Thilagavathy Giri
ok sir . i will try.

On Thu, Aug 29, 2019 at 12:16 PM Jakob Erdmann 
wrote:

> There is no direct support for grids. However, you can retrieve the x,y
> coordinates of all vehicles at all times and thus map them to an arbitrary
> grid by rounding towards the grid-cell-center coordiantes.
>
> Am Do., 29. Aug. 2019 um 06:53 Uhr schrieb Thilagavathy Giri <
> thilagagiri7...@gmail.com>:
>
>> Hello,
>> i modeled a four legged normal intersection with 5 nodes and 4 edges with
>> left-hand traffic mode.  i made the second node as intersection area  of 4
>> legs and hence made its type as traffic light . i need to have connected
>> autonomous vehicles of heterogeneous type on each lane.  i  have to model
>> the intersection area as grid of cells .  how to model this in sumo.  i
>> would like to implement intersection passing algorithm with respect to
>> grids at intersection based on data from  v2v communication. kindly refer
>> me with some material to model and do my implementation. it will be very
>> helpful for my research. please suggest me with some material.
>>
>> Thank you,
>> M S Thilagavathy
>> ___
>> sumo-user mailing list
>> sumo-user@eclipse.org
>> To change your delivery options, retrieve your password, or unsubscribe
>> from this list, visit
>> https://www.eclipse.org/mailman/listinfo/sumo-user
>>
> ___
> sumo-user mailing list
> sumo-user@eclipse.org
> To change your delivery options, retrieve your password, or unsubscribe
> from this list, visit
> https://www.eclipse.org/mailman/listinfo/sumo-user
>
___
sumo-user mailing list
sumo-user@eclipse.org
To change your delivery options, retrieve your password, or unsubscribe from 
this list, visit
https://www.eclipse.org/mailman/listinfo/sumo-user


Re: [sumo-user] (no subject)

2019-08-29 Thread Jakob Erdmann
There is no direct support for grids. However, you can retrieve the x,y
coordinates of all vehicles at all times and thus map them to an arbitrary
grid by rounding towards the grid-cell-center coordiantes.

Am Do., 29. Aug. 2019 um 06:53 Uhr schrieb Thilagavathy Giri <
thilagagiri7...@gmail.com>:

> Hello,
> i modeled a four legged normal intersection with 5 nodes and 4 edges with
> left-hand traffic mode.  i made the second node as intersection area  of 4
> legs and hence made its type as traffic light . i need to have connected
> autonomous vehicles of heterogeneous type on each lane.  i  have to model
> the intersection area as grid of cells .  how to model this in sumo.  i
> would like to implement intersection passing algorithm with respect to
> grids at intersection based on data from  v2v communication. kindly refer
> me with some material to model and do my implementation. it will be very
> helpful for my research. please suggest me with some material.
>
> Thank you,
> M S Thilagavathy
> ___
> sumo-user mailing list
> sumo-user@eclipse.org
> To change your delivery options, retrieve your password, or unsubscribe
> from this list, visit
> https://www.eclipse.org/mailman/listinfo/sumo-user
>
___
sumo-user mailing list
sumo-user@eclipse.org
To change your delivery options, retrieve your password, or unsubscribe from 
this list, visit
https://www.eclipse.org/mailman/listinfo/sumo-user


[sumo-user] (no subject)

2019-08-28 Thread Thilagavathy Giri
Hello,
i modeled a four legged normal intersection with 5 nodes and 4 edges with
left-hand traffic mode.  i made the second node as intersection area  of 4
legs and hence made its type as traffic light . i need to have connected
autonomous vehicles of heterogeneous type on each lane.  i  have to model
the intersection area as grid of cells .  how to model this in sumo.  i
would like to implement intersection passing algorithm with respect to
grids at intersection based on data from  v2v communication. kindly refer
me with some material to model and do my implementation. it will be very
helpful for my research. please suggest me with some material.

Thank you,
M S Thilagavathy
___
sumo-user mailing list
sumo-user@eclipse.org
To change your delivery options, retrieve your password, or unsubscribe from 
this list, visit
https://www.eclipse.org/mailman/listinfo/sumo-user


Re: [sumo-user] (no subject)

2019-04-26 Thread Jakob Erdmann
All the XSD files are in sumo/data/xsd so as long as you set SUMO_HOME you
never need an internet connection.

Am Fr., 26. Apr. 2019 um 19:41 Uhr schrieb Jose Monreal Bailey <
jmonr...@gmail.com>:

> What I did, was to download all XSD files and have them in my system. As I
> did not have internet connection from the server running the simulations
>
> On Fri, 26 Apr 2019, 18:22 Paolo Camacho,  wrote:
>
>> Hi,
>>
>> Could anyone help me?, please. Before I could run the simulations, but
>> now the next mistake appears.
>>
>> *Error: unable to open file 'https://sumo.dlr.de/xsd/routes_file.xsd
>> '*
>> * In file 'C:\Users\Paolo Camacho\Sumo\2019-02-14-21-04-32 - copia -
>> copia\TRIPB'*
>> * At line/column 1/0.*
>>
>> *Quitting (on error).*
>>
>>
>>  Thank you!
>> ___
>> sumo-user mailing list
>> sumo-user@eclipse.org
>> To change your delivery options, retrieve your password, or unsubscribe
>> from this list, visit
>> https://www.eclipse.org/mailman/listinfo/sumo-user
>>
> ___
> sumo-user mailing list
> sumo-user@eclipse.org
> To change your delivery options, retrieve your password, or unsubscribe
> from this list, visit
> https://www.eclipse.org/mailman/listinfo/sumo-user
>
___
sumo-user mailing list
sumo-user@eclipse.org
To change your delivery options, retrieve your password, or unsubscribe from 
this list, visit
https://www.eclipse.org/mailman/listinfo/sumo-user


Re: [sumo-user] (no subject)

2019-04-26 Thread Jose Monreal Bailey
What I did, was to download all XSD files and have them in my system. As I
did not have internet connection from the server running the simulations

On Fri, 26 Apr 2019, 18:22 Paolo Camacho,  wrote:

> Hi,
>
> Could anyone help me?, please. Before I could run the simulations, but now
> the next mistake appears.
>
> *Error: unable to open file 'https://sumo.dlr.de/xsd/routes_file.xsd
> '*
> * In file 'C:\Users\Paolo Camacho\Sumo\2019-02-14-21-04-32 - copia -
> copia\TRIPB'*
> * At line/column 1/0.*
>
> *Quitting (on error).*
>
>
>  Thank you!
> ___
> sumo-user mailing list
> sumo-user@eclipse.org
> To change your delivery options, retrieve your password, or unsubscribe
> from this list, visit
> https://www.eclipse.org/mailman/listinfo/sumo-user
>
___
sumo-user mailing list
sumo-user@eclipse.org
To change your delivery options, retrieve your password, or unsubscribe from 
this list, visit
https://www.eclipse.org/mailman/listinfo/sumo-user


[sumo-user] (no subject)

2019-04-26 Thread Paolo Camacho
Hi,

Could anyone help me?, please. Before I could run the simulations, but now
the next mistake appears.

*Error: unable to open file 'https://sumo.dlr.de/xsd/routes_file.xsd
'*
* In file 'C:\Users\Paolo Camacho\Sumo\2019-02-14-21-04-32 - copia -
copia\TRIPB'*
* At line/column 1/0.*

*Quitting (on error).*


 Thank you!
___
sumo-user mailing list
sumo-user@eclipse.org
To change your delivery options, retrieve your password, or unsubscribe from 
this list, visit
https://www.eclipse.org/mailman/listinfo/sumo-user


[sumo-user] (no subject)

2019-02-25 Thread Graziano Manduzio
Hello users!,

Using TraCI Lane Area detectors, the Traas command
conn.do_job_get(Lanearea.getLastStepVehicleIDs("yourdetector")) don't
recongnize the ID detector, altough specified in its relative additional
file; indeed the following message appears on display:

SUMO error for command 173: Lane area detector '' is not known.

Moreover, in the statement under examination the output command is
adequately casted to SumoStringList, so the assignment should be well done.

Anyone can help me?
Thanks in advance,
Graziano
___
sumo-user mailing list
sumo-user@eclipse.org
To change your delivery options, retrieve your password, or unsubscribe from 
this list, visit
https://www.eclipse.org/mailman/listinfo/sumo-user


Re: [sumo-user] (no subject)

2019-01-27 Thread Arslane Hamza Cherif
Hello Graziano,

Since you did not provide any details regarding your working environment, I
guess that is not a problem,

In my opinion, you should take a closer look at the TraCI API
 which allows you to simulate vehicles with
Python, and retrieve many interesting & useful data,

For instance, you can retrieve the number of Vehicles which entered an edge
of the road network during the last time step with the *last step vehicle
number (0x10) function *described here


Best wishes,
Arslane

Le dim. 27 janv. 2019 à 18:25, Graziano Manduzio <
graziano.mandu...@gmail.com> a écrit :

> hello,
>
> I'm a reasercher at the university of Florence and I'm using Sumo for my
> works.
> I'd like to know how is it possible to get as output, data related to the
> departure times of all vehicles crossing a given lane that is not an
> entering network lanes.
>
> Thanks,
> Graziano
>
> Il giorno dom 27 gen 2019 alle ore 17:56 Graziano Manduzio <
> graziano.mandu...@gmail.com> ha scritto:
>
>> hello,
>>
>> I'm a reasercher at the university of Florence and I'm using Sumo for my
>> works.
>> I'd like to know how is it possible to get as output, data related to the
>> departure times of all vehicles crossing a given lane that is not an
>> entering network lanes.
>>
>> Thanks,
>> Graziano
>>
> ___
> sumo-user mailing list
> sumo-user@eclipse.org
> To change your delivery options, retrieve your password, or unsubscribe
> from this list, visit
> https://www.eclipse.org/mailman/listinfo/sumo-user
>
___
sumo-user mailing list
sumo-user@eclipse.org
To change your delivery options, retrieve your password, or unsubscribe from 
this list, visit
https://www.eclipse.org/mailman/listinfo/sumo-user


[sumo-user] (no subject)

2019-01-27 Thread Graziano Manduzio
hello,

I'm a reasercher at the university of Florence and I'm using Sumo for my
works.
I'd like to know how is it possible to get as output, data related to the
departure times of all vehicles crossing a given lane that is not an
entering network lanes.

Thanks,
Graziano
___
sumo-user mailing list
sumo-user@eclipse.org
To change your delivery options, retrieve your password, or unsubscribe from 
this list, visit
https://www.eclipse.org/mailman/listinfo/sumo-user


Re: [sumo-user] (no subject)

2018-10-28 Thread Jakob Erdmann
This is currently not supported by a parkingAreaReroute definition.
but you could achieve this via TraCI.

regards,
Jakob

Am Sa., 27. Okt. 2018 um 19:46 Uhr schrieb Jane Cheung <
cheung180...@gmail.com>:

> Hi everyone, could I use option to let vehicles which have the "STOP"
> definition, but neither waiting for to park or choose another parking lot,
> in other words, this vehicle would directly go through the route to the
> pervious destination even though it planned  to  park in that parking lot?
>
> Appreciated for any kind help!
> Best regards!
>
> Jane
> ___
> sumo-user mailing list
> sumo-user@eclipse.org
> To change your delivery options, retrieve your password, or unsubscribe
> from this list, visit
> https://www.eclipse.org/mailman/listinfo/sumo-user
>
___
sumo-user mailing list
sumo-user@eclipse.org
To change your delivery options, retrieve your password, or unsubscribe from 
this list, visit
https://www.eclipse.org/mailman/listinfo/sumo-user


[sumo-user] (no subject)

2018-10-27 Thread Jane Cheung
Hi everyone, could I use option to let vehicles which have the "STOP"
definition, but neither waiting for to park or choose another parking lot,
in other words, this vehicle would directly go through the route to the
pervious destination even though it planned  to  park in that parking lot?

Appreciated for any kind help!
Best regards!

Jane
___
sumo-user mailing list
sumo-user@eclipse.org
To change your delivery options, retrieve your password, or unsubscribe from 
this list, visit
https://www.eclipse.org/mailman/listinfo/sumo-user


[sumo-user] (no subject)

2018-07-27 Thread un famous via sumo-user
Hello,
i'm trying to  create  a simulation where i need to do some rerouting of a
vehicle when it approach in intersection .

i tried using
traci.vehicle.subscribe("veh0", ( tc.VAR_NEXT_TLS ,))
and
raci.vehicle.getSubscriptionResults("veh0")[tc.VAR_NEXT_TLS]
to get the id of the next TLS but i don't know when it actually arrived at
that LTS

Thank you
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
sumo-user mailing list
sumo-u...@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sumo-user
___
sumo-user mailing list
sumo-user@eclipse.org
To change your delivery options, retrieve your password, or unsubscribe from 
this list, visit
https://dev.eclipse.org/mailman/listinfo/sumo-user


Re: [sumo-user] (no subject)

2018-06-05 Thread Jakob Erdmann
see
http://sumo.sourceforge.net/userdoc/FAQ.html#What.27s_the_deal_with_schema_resolution_warnings_.2F_xsd_errors.3F

2018-06-05 12:53 GMT+02:00 Claude Njoh via sumo-user <
sumo-u...@lists.sourceforge.net>:

> Hello ,
>
> I am using Duarouter to create the traffic , but I got an error when the
> file trips.trip tries to validate the xml shema online as the sumo.dlr.de
> is not available. Could you please tell me how to avoid this validation?
>
> Thank you.
>
> Claude
> 
> --
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> ___
> sumo-user mailing list
> sumo-u...@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/sumo-user
> ___
> sumo-user mailing list
> sumo-user@eclipse.org
> To change your delivery options, retrieve your password, or unsubscribe
> from this list, visit
> https://dev.eclipse.org/mailman/listinfo/sumo-user
>
___
sumo-user mailing list
sumo-user@eclipse.org
To change your delivery options, retrieve your password, or unsubscribe from 
this list, visit
https://dev.eclipse.org/mailman/listinfo/sumo-user


Re: [sumo-user] (no subject)

2018-04-26 Thread Jakob Erdmann
Hello,
i'm not sure I understood your question.
Do you wish to run SUMO with FCD data as input (i.e. to interpolate gaps)
or do you wish to integrate CTM as a new dynamic model into the SUMO
framework?
regards,
Jakob

2018-04-24 13:04 GMT+02:00 HANIFI Mohamed :

> Hi, i'm new SUMO user,
> i work on traffic estimation using FCD and model driven (Cell Transmission
> Model CTM), and i'm want to now how can i integrate CTM code who take (data
> extract from FCD as input) on SUMO.
> Thanks.
>
> ___
> sumo-user mailing list
> sumo-user@eclipse.org
> To change your delivery options, retrieve your password, or unsubscribe
> from this list, visit
> https://dev.eclipse.org/mailman/listinfo/sumo-user
>
>
___
sumo-user mailing list
sumo-user@eclipse.org
To change your delivery options, retrieve your password, or unsubscribe from 
this list, visit
https://dev.eclipse.org/mailman/listinfo/sumo-user


[sumo-user] (no subject)

2018-04-25 Thread HANIFI Mohamed
 Hi, i'm new SUMO user,
i work on traffic estimation using FCD and model driven (Cell Transmission
Model CTM), and i'm want to now how can i integrate CTM code who take (data
extract from FCD as input) on SUMO.
Thanks.
___
sumo-user mailing list
sumo-user@eclipse.org
To change your delivery options, retrieve your password, or unsubscribe from 
this list, visit
https://dev.eclipse.org/mailman/listinfo/sumo-user


Re: [sumo-user] (no subject)

2018-04-11 Thread Jakob Erdmann
Hello,
You can use traci.vehicle.getNextTLS(). As soon as the tls is no longer in
the returned list of upcoming traffic lights, you can be sure that it has
been passed.
regards,
Jakob

2018-04-11 13:27 GMT+02:00 Mouna Karoui via sumo-user <
sumo-u...@lists.sourceforge.net>:

> Dear sumo users,
>
> How  can I verify that vehicles are crossed a traffic light or not ?
>
> In fact, I developed this code;
>
>  verifyPassage(std::string tlsID)
> {
> bool passage;
> double p=0;
> std::vector ctrlLink;
>
> ctrlLink=
> vehicle->getLiteAPI().trafficlights().getControlledLinks(tlsID);
> std::string
> laneId=vehicle->getLiteAPI().vehicle().getLaneID(vehicle->getVehicleId());
>
> if(tlsIndex==1){
> for (int i=0; i <  ctrlLink.size(); ++i)
> {
>   for (int j=0; j <  ctrlLink[i].size(); ++j)
>   {
> if (ctrlLink[i][j].to == laneId) {
> passage=true;
> p=1;
> p_vec.record(p);
> return passage;
>  }
> else
> {
>   passage=false;
>   p=2;
>   p_vec.record(p);
>   return passage;
> }
> }
> }
> }
> }
>
> But it always return false. How can I rectify it ?  I have dificulties to
> understand getControlledLink() code  ??
>
> Best regards,
> 
> --
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> ___
> sumo-user mailing list
> sumo-u...@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/sumo-user
> ___
> sumo-user mailing list
> sumo-user@eclipse.org
> To change your delivery options, retrieve your password, or unsubscribe
> from this list, visit
> https://dev.eclipse.org/mailman/listinfo/sumo-user
>
___
sumo-user mailing list
sumo-user@eclipse.org
To change your delivery options, retrieve your password, or unsubscribe from 
this list, visit
https://dev.eclipse.org/mailman/listinfo/sumo-user


[sumo-user] (no subject)

2018-04-11 Thread Mouna Karoui via sumo-user
Dear sumo users,

How  can I verify that vehicles are crossed a traffic light or not ?

In fact, I developed this code;

 verifyPassage(std::string tlsID)
{
bool passage;
double p=0;
std::vector ctrlLink;

ctrlLink=
vehicle->getLiteAPI().trafficlights().getControlledLinks(tlsID);
std::string
laneId=vehicle->getLiteAPI().vehicle().getLaneID(vehicle->getVehicleId());

if(tlsIndex==1){
for (int i=0; i <  ctrlLink.size(); ++i)
{
  for (int j=0; j <  ctrlLink[i].size(); ++j)
  {
if (ctrlLink[i][j].to == laneId) {
passage=true;
p=1;
p_vec.record(p);
return passage;
 }
else
{
  passage=false;
  p=2;
  p_vec.record(p);
  return passage;
}
}
}
}
}

But it always return false. How can I rectify it ?  I have dificulties to
understand getControlledLink() code  ??

Best regards,
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
sumo-user mailing list
sumo-u...@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sumo-user
___
sumo-user mailing list
sumo-user@eclipse.org
To change your delivery options, retrieve your password, or unsubscribe from 
this list, visit
https://dev.eclipse.org/mailman/listinfo/sumo-user


Re: [sumo-user] (no subject)

2018-03-01 Thread Anne Onyango
Hello Jakob
Have a look at my screen shot in the attachment.
I am still getting the same error. Error is on processing the additional
file. Can you give me the syntax on how to run it on Cmd.
Thank you

On Feb 28, 2018 20:48, "Jakob Erdmann"  wrote:

> Hello,
> simulation objects defined in additional files are not processed with
> netconvert. Instead they are loaded directly into sumo
> (using the option --additional-files).
> regards,
> Jakob
>
> 2018-02-28 18:44 GMT+01:00 Anne Onyango via sumo-user <
> sumo-u...@lists.sourceforge.net>:
>
>> I am trying to have additional  files execute  but i keep getting this
>> error attached as a screen shot on the cmd line
>> my line is as
>> netconvert  --additional-files=lbs.add.xml --node-files=lbs.nod.xml
>> --edge-files=lbs.edg.xml  --output-file=lbs.net.xml
>>
>> attached is my screen-shot
>>
>> 
>> --
>> Check out the vibrant tech community on one of the world's most
>> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
>> ___
>> sumo-user mailing list
>> sumo-u...@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/sumo-user
>>
>>
>
___
sumo-user mailing list
sumo-user@eclipse.org
To change your delivery options, retrieve your password, or unsubscribe from 
this list, visit
https://dev.eclipse.org/mailman/listinfo/sumo-user


Re: [sumo-user] (no subject)

2018-01-29 Thread christopher.ew...@t-online.de
Hi Michael, 

thank you very much for your replys, after rearranging everything it now works, 
as it should, by setting the speed to 0 again, for every timestep. No more 
errors. 

Thanks, 
Christopher
 

-Original-Nachricht-
Betreff: Re: [sumo-user] (no subject)
Datum: 2018-01-28T14:55:15+0100
Von: "Michael Behrisch" <o...@behrisch.de>
An: "christopher.ew...@t-online.de" <christopher.ew...@t-online.de>

Hi Christopher,
setSpeed works only for the current step so this is to be expected, but
the NullPointerException is not. Please post the code you are using or
even better a (possibly reduced) example with network and routes showing
the behavior.

Best regards,
Michael

PS: Please keep the list posted.

Am 26.01.2018 um 17:39 schrieb christopher.ew...@t-online.de:
> Hello Michael, 
> 
> yes, I want to stop the car while the rest of the simulation continues. 
> If I set the speed of the car to 0 it will move again in the next timestep 
> and continue its route, which it shouldn't. 
> If I try to add a stop  I get a Java NullPointerException at the line where I 
> try to add the stop. 
> I am using sumo 0.32.0 and the latest TraaS version
> 
> Thanks, 
> Christopher
> 
> 
> 
> -Original-Nachricht-
> Betreff: Re: [sumo-user] (no subject)
> Datum: 2018-01-26T17:00:46+0100
> Von: "Michael Behrisch" <o...@behrisch.de>
> An: "christopher.ew...@t-online.de" <christopher.ew...@t-online.de>, "Sumo 
> project User discussions" <sumo-user@eclipse.org>
> 
> Hi Christopher,
> I am not sure I understand your question. You want the car to stop but
> the rest of the simulation should continue? So you set the speed to 0 or
> add a stop? And which error do you get? It would be also helpful if you
> mention the sumo / Traas version you use.
> 
> Best regards
> Michael
> 
> Am 26.01.2018 um 16:25 schrieb Christopher.Ewert--- via sumo-user:
>> Hello,
>> I am trying to stop a car right where it is, using Traas with Java.
>> At the same time I want the timer to still keep going but it won't work.
>> Either the car travels it's route to completion or I get an error and sumo 
>> stops.  
>>
>> What am I doing wrong? 
>>
>>
>> Thanks in advance.
>> Christopher
>>
>>  
>>
>>
>>  
>> Gesendet mit Telekom Mail <https://t-online.de/email-kostenlos> - kostenlos 
>> und sicher für alle!
>> --
>> Check out the vibrant tech community on one of the world's most
>> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
>> ___
>> sumo-user mailing list
>> sumo-u...@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/sumo-user
>> ___
>> sumo-user mailing list
>> sumo-user@eclipse.org
>> To change your delivery options, retrieve your password, or unsubscribe from 
>> this list, visit
>> https://dev.eclipse.org/mailman/listinfo/sumo-user
>>
> 
> 
> 
> 
> 
> Gesendet mit Telekom Mail <https://t-online.de/email-kostenlos> - kostenlos 
> und sicher für alle!
> 





Gesendet mit Telekom Mail <https://t-online.de/email-kostenlos> - kostenlos und 
sicher für alle!
___
sumo-user mailing list
sumo-user@eclipse.org
To change your delivery options, retrieve your password, or unsubscribe from 
this list, visit
https://dev.eclipse.org/mailman/listinfo/sumo-user


Re: [sumo-user] (no subject)

2018-01-28 Thread Michael Behrisch
Hi Christopher,
setSpeed works only for the current step so this is to be expected, but
the NullPointerException is not. Please post the code you are using or
even better a (possibly reduced) example with network and routes showing
the behavior.

Best regards,
Michael

PS: Please keep the list posted.

Am 26.01.2018 um 17:39 schrieb christopher.ew...@t-online.de:
> Hello Michael, 
> 
> yes, I want to stop the car while the rest of the simulation continues. 
> If I set the speed of the car to 0 it will move again in the next timestep 
> and continue its route, which it shouldn't. 
> If I try to add a stop  I get a Java NullPointerException at the line where I 
> try to add the stop. 
> I am using sumo 0.32.0 and the latest TraaS version
> 
> Thanks, 
> Christopher
> 
> 
> 
> -Original-Nachricht-
> Betreff: Re: [sumo-user] (no subject)
> Datum: 2018-01-26T17:00:46+0100
> Von: "Michael Behrisch" <o...@behrisch.de>
> An: "christopher.ew...@t-online.de" <christopher.ew...@t-online.de>, "Sumo 
> project User discussions" <sumo-user@eclipse.org>
> 
> Hi Christopher,
> I am not sure I understand your question. You want the car to stop but
> the rest of the simulation should continue? So you set the speed to 0 or
> add a stop? And which error do you get? It would be also helpful if you
> mention the sumo / Traas version you use.
> 
> Best regards
> Michael
> 
> Am 26.01.2018 um 16:25 schrieb Christopher.Ewert--- via sumo-user:
>> Hello,
>> I am trying to stop a car right where it is, using Traas with Java.
>> At the same time I want the timer to still keep going but it won't work.
>> Either the car travels it's route to completion or I get an error and sumo 
>> stops.  
>>
>> What am I doing wrong? 
>>
>>
>> Thanks in advance.
>> Christopher
>>
>>  
>>
>>
>>  
>> Gesendet mit Telekom Mail <https://t-online.de/email-kostenlos> - kostenlos 
>> und sicher für alle!
>> --
>> Check out the vibrant tech community on one of the world's most
>> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
>> ___
>> sumo-user mailing list
>> sumo-u...@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/sumo-user
>> ___
>> sumo-user mailing list
>> sumo-user@eclipse.org
>> To change your delivery options, retrieve your password, or unsubscribe from 
>> this list, visit
>> https://dev.eclipse.org/mailman/listinfo/sumo-user
>>
> 
> 
> 
> 
> 
> Gesendet mit Telekom Mail <https://t-online.de/email-kostenlos> - kostenlos 
> und sicher für alle!
> 




signature.asc
Description: OpenPGP digital signature
___
sumo-user mailing list
sumo-user@eclipse.org
To change your delivery options, retrieve your password, or unsubscribe from 
this list, visit
https://dev.eclipse.org/mailman/listinfo/sumo-user


[sumo-user] (no subject)

2018-01-26 Thread Christopher.Ewert--- via sumo-user
Hello,
I am trying to stop a car right where it is, using Traas with Java.
At the same time I want the timer to still keep going but it won't work.
Either the car travels it's route to completion or I get an error and sumo 
stops.  

What am I doing wrong? 


Thanks in advance.
Christopher

 


 
Gesendet mit Telekom Mail  - kostenlos 
und sicher für alle!
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
sumo-user mailing list
sumo-u...@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sumo-user
___
sumo-user mailing list
sumo-user@eclipse.org
To change your delivery options, retrieve your password, or unsubscribe from 
this list, visit
https://dev.eclipse.org/mailman/listinfo/sumo-user


[sumo-user] (no subject)

2017-12-02 Thread NAVEEN RAI via sumo-user
When I am trying to perform the netconvert on a net.xml file and generate it's 
equivalent XODR (Open Drive) file, for all the straight(line) geometry segments 
I get the length to be 0 in the OpenDrive format.
I have attached the OSM file which I used to generate the net.xml using the 
netconvert.

Regards,Naveen Rai
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
sumo-user mailing list
sumo-u...@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sumo-user
___
sumo-user mailing list
sumo-user@eclipse.org
To change your delivery options, retrieve your password, or unsubscribe from 
this list, visit
https://dev.eclipse.org/mailman/listinfo/sumo-user