Re: [sumo-user] Insert Randomness on route file

2018-05-15 Thread Jakob Erdmann
Hello,
1) Thank for reporting this issue which is now being tracked at
https://github.com/eclipse/sumo/issues/4076
The warning, which is invalid, was intended as a fail-safe when loading
unsorted route files incrementally.
As a work-around you can load your route file all at once by adding it to
the list of additional files (this disables the check for sorted
departures):
sumo --additional-files yourVehicles.rou.xml
This way, the option --random-depart-offset should work as expected

2) set --random-depart-offset, set vehicle (or flow) attribute
departPos="random". Then call sumo with different values of --seed or add
option --random (which uses a random seed)
See http://sumo.dlr.de/wiki/Simulation/Randomness
Another important aspect of stochastic simulations are speed distributions:
http://sumo.dlr.de/wiki/Definition_of_Vehicles,_Vehicle_Types,_and_Routes#Speed_Distributions

regards,
Jakob


2018-05-15 16:24 GMT+02:00 Thanos Tasakos :

> Hello all,
>
>1. if u have a given rou.xml file is it possible to create many
>different perturbed versions of it (i want to add stochasticity at each
>run). One option that i came accross was to use --random-depart-offset
> but when i add this tag to my sumocfg file the sumo-gui wouldnt
>run giving a Warning that the departures should be ordered.
>2.  Generally given a .rou file how can i change it(different
>departures, different starting positions)
>
> Kind regards,
>
> Thanos Tasakos
>
>
>
> ___
> 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] CMake with git daily build does not work

2018-05-15 Thread Harald Schaefer

Dear all,

CMake with the daily build from 
http://sumo.dlr.de/daily/sumo-src-git.tar.gz does not work,

I got this error:

CMake Error: File /dosd/src/opensource/Sumo/sumo-git/src/config.h.cmake 
does not exist.

CMake Error at src/CMakeLists.txt:81 (configure_file):
  configure_file Problem configuring file

Best regards,

Harald




smime.p7s
Description: S/MIME Cryptographic 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] NetConvert Pedestrian Traffic Light Sequencing

2018-05-15 Thread Alex Sawczuk via sumo-user
Hi there,

I see under netconvert we have many options to set various timings. However
we do not have control over how long a pedestrian crossing should be green,
and perhaps more importantly red after that green period.

At present we have issues that auto generated traffic light sequences only
have 5 seconds of green followed by 5 seconds of all red before the traffic
is allowed to continue and this is not enough time for pedestrians to cross
the road.

When I set --tls.allred.time this just results in a longer red sequence
before the pedestrians start crossing.

Perhaps it's just a bug and allred should be applied after the pedestrian
green sequencing, I'm not sure what the intended behaviour is?

Regards

Alex Sawczuk
Simulation Engineer
rFpro

e: alex.sawc...@rfpro.com 
w: http://www.rfpro.com 

This e-mail and any files transmitted with it are private and confidential.
If you have received this email in error please notify the sender
immediately and delete this e-mail from your system. The recipient should
check this email and any attachments for the presence of viruses. rFpro
accepts no liability for any damage caused by any virus transmitted by this
email. rFpro is the trading name of Kangaloosh Limited, registered in
England No. 06427019.
--
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] Insert Randomness on route file

2018-05-15 Thread Thanos Tasakos
Hello all,

   1. if u have a given rou.xml file is it possible to create many
   different perturbed versions of it (i want to add stochasticity at each
   run). One option that i came accross was to use --random-depart-offset
but when i add this tag to my sumocfg file the sumo-gui wouldnt
   run giving a Warning that the departures should be ordered.
   2.  Generally given a .rou file how can i change it(different
   departures, different starting positions)

Kind regards,

Thanos Tasakos
___
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] Traci ContextSubscription of Vechicle

2018-05-15 Thread Surya Soman
   Thank you Jakob!  The code is working now.

But unfortunately the vehicle speed and position I'm getting at each step
is the ego vehicle's speed and position were I wanted to retrieve the speed
and position of  the vehicles around my ego vehicle.

Could you help me with this. Thanks in advance!

Regards,
Surya Soman


On Mon, May 14, 2018 at 8:50 AM, Jakob Erdmann 
wrote:

> try using curly brackets vor varIDs:
> {traci.constants.VAR_SPEED,traci.constants.VAR_POSITION}
>
> 2018-05-11 10:16 GMT+02:00 Surya Soman :
>
>> Hi ,
>>
>> I'm a new user of SUMO. As a part of my research, I was trying a code to
>> access the speed and position of the vehicles around my ego vehicle
>> using Traci vehicle contextsubscription command. Given below is the
>> command I used:-
>>
>> traci.vehicle.subscribeContext('2567#6',...
>>traci.constants.CMD_GET_VEHICLE_VARIABLE, 20,...
>>[traci.constants.VAR_SPEED,traci.constants.VAR_POSITION]);
>>
>>
>> It is giving an error :-
>>
>> Error using vehicle.subscribeContext
>> The value of 'varIDs' is invalid. It must satisfy the function: iscell.
>>
>> Error in traci.vehicle.subscribeContext (line 34)
>> p.parse(vehID, domain, dist, varargin{:})
>>
>> Error in vehicleconsub (line 58)
>>traci.vehicle.subscribeContext('2567#6',...
>>
>>
>> Could anyone help me with this. Thanks in advance !
>>
>>
>> Regards,
>> Surya
>>
>>
>>
>>
>> ___
>> 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 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] The wiki is down

2018-05-15 Thread Surya Soman
Wiki page is up now !

On Tue, May 15, 2018 at 11:05 AM, Surya Soman 
wrote:

> Wiki page is not working for me neither.
>
> On Tue, May 15, 2018 at 9:53 AM, Arvin Johansson Arbab 
> wrote:
>
>> Doesn't seem to be working for me at least.
>>
>> On Tue, May 15, 2018 at 8:27 AM, Jakob Erdmann 
>> wrote:
>>
>>> The wiki should be working again now.
>>>
>>> 2018-05-14 23:12 GMT+02:00 Pedro Matuck :
>>>
 Hi guys,

 any ETA to get the wiki back?

 Thanks.

 2018-05-14 7:53 GMT-03:00 Jakob Erdmann :

> Thanks for the info. The problem is being worked on.
>
> 2018-05-14 12:02 GMT+02:00 Jose Monreal Bailey :
>
>>
>>
>> ___
>> 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
>
>


 --
 *Pedro J. Matuck*
 Github  - Linkedin
  - Youtube
 

 "The hardest battle lies within."

 ___
 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 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] Questions about manipulating SUMO networks

2018-05-15 Thread sumo
Hello,

I have two networks that were originally converted from OSM to .net.xml and 
heavily edited in `netedit` afterwards. These networks cover neighbouring areas 
in the city and they share common edges/nodes. I would like to join them into 
one larger network, but manual approach is not feasible, the networks are quite 
large. Before I start to develop something, I wanted to ask if by chance there 
is a tool that would be able to accomplish this (maybe `netconvert` has 
something that I have overlooked?).

If not, my best shot would be to patch `sumolib` to allow easier merge of both 
network graphs (not easy but doable) and then patch `sumolib` again to be able 
to write out a network file (I looked only briefly into the source and I did 
find only a method to read the network, there seems to be no write method 
available). Any thoughts about this approach?

The second question regards adding elevation to an existing .net.xml file. The 
original data in OSM are flat, but I have now a possibility to map 
geo-coordinates to elevation data. I cannot use the original OSM to extend it 
with elevation data due to the fact that the network has been already edited, 
so my approach would be again to use `sumolib`, map the XY coordinates to 
LatLon coordinates using the provided `sumolib` methods, request the elevation 
from the mapping server, update the nodes/edges with elevation data (just 
assigning the elevation to Z axis) and then use the above mentioned patched 
`sumolib` to spit out a new network. Does it sound reasonable or am I missing 
something?

Thanks a lot for comments.

Jan

___
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] The wiki is down

2018-05-15 Thread Surya Soman
Wiki page is not working for me neither.

On Tue, May 15, 2018 at 9:53 AM, Arvin Johansson Arbab 
wrote:

> Doesn't seem to be working for me at least.
>
> On Tue, May 15, 2018 at 8:27 AM, Jakob Erdmann 
> wrote:
>
>> The wiki should be working again now.
>>
>> 2018-05-14 23:12 GMT+02:00 Pedro Matuck :
>>
>>> Hi guys,
>>>
>>> any ETA to get the wiki back?
>>>
>>> Thanks.
>>>
>>> 2018-05-14 7:53 GMT-03:00 Jakob Erdmann :
>>>
 Thanks for the info. The problem is being worked on.

 2018-05-14 12:02 GMT+02:00 Jose Monreal Bailey :

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


>>>
>>>
>>> --
>>> *Pedro J. Matuck*
>>> Github  - Linkedin
>>>  - Youtube
>>> 
>>>
>>> "The hardest battle lies within."
>>>
>>> ___
>>> 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 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] The wiki is down

2018-05-15 Thread Arvin Johansson Arbab
Doesn't seem to be working for me at least.

On Tue, May 15, 2018 at 8:27 AM, Jakob Erdmann 
wrote:

> The wiki should be working again now.
>
> 2018-05-14 23:12 GMT+02:00 Pedro Matuck :
>
>> Hi guys,
>>
>> any ETA to get the wiki back?
>>
>> Thanks.
>>
>> 2018-05-14 7:53 GMT-03:00 Jakob Erdmann :
>>
>>> Thanks for the info. The problem is being worked on.
>>>
>>> 2018-05-14 12:02 GMT+02:00 Jose Monreal Bailey :
>>>


 ___
 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
>>>
>>>
>>
>>
>> --
>> *Pedro J. Matuck*
>> Github  - Linkedin
>>  - Youtube
>> 
>>
>> "The hardest battle lies within."
>>
>> ___
>> 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 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] The wiki is down

2018-05-15 Thread Jakob Erdmann
The wiki should be working again now.

2018-05-14 23:12 GMT+02:00 Pedro Matuck :

> Hi guys,
>
> any ETA to get the wiki back?
>
> Thanks.
>
> 2018-05-14 7:53 GMT-03:00 Jakob Erdmann :
>
>> Thanks for the info. The problem is being worked on.
>>
>> 2018-05-14 12:02 GMT+02:00 Jose Monreal Bailey :
>>
>>>
>>>
>>> ___
>>> 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
>>
>>
>
>
> --
> *Pedro J. Matuck*
> Github  - Linkedin
>  - Youtube
> 
>
> "The hardest battle lies within."
>
> ___
> 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