[sumo-user] Libsumo for Mac

2020-05-28 Thread Kathy Jang
Hi all, Does libsumo work for Mac? There are no references to a Mac install here . I've also attempted to re-install SUMO and use libsumo, but it doesn't seem like the libsumo library is in the installation. The libsumo directory contains an __init__ file

Re: [sumo-user] turnFile2EdgeRelations.py error

2020-05-28 Thread Fay Kostopoulou
Hello, I tried again (with the new latest development version), now no error appears but the file has no edgeRelation counts, like below. Could you help me with it? http://www.w3.org/2001/XMLSchema-instance; xsi:noNamespaceSchemaLocation="http://sumo.dlr.de/xsd/edgerelations_file.xsd ">

Re: [sumo-user] Random parking slot

2020-05-28 Thread The div
As Jakob says, this isn't possible at the moment with roadside parking. However if you have enough traffic passing, especially if only a proportion are parking, then IMHO the appearance eventually becomes random. I looked at this reasonably closely in the past because I wanted to create a model

Re: [sumo-user] Random parking slot

2020-05-28 Thread Илья Левашев
Thanks, it`s my plan B. чт, 28 мая 2020 г. в 18:24, Jakob Erdmann : > No, this is currently not possible. However, you might split your > parkingArea into 30 individual parkingAreas each having roadSideCapacity 1 > and let the vehicles target a random parkingArea. > > Am Do., 28. Mai 2020 um

[sumo-user] Changing lateral alignment

2020-05-28 Thread Reza
Hi, I am writing a code to change the lateral alignment of vehicles. There is a nested if in this code. In the second level if statement, the "if 20 < sim_time < 60" is performed, and the results of it is observed in the simulation. However, it does not perform the statement after "elif sim_time

Re: [sumo-user] Route errors using flowrouter.py

2020-05-28 Thread Jakob Erdmann
--vclass passenger is the correct way to put that option. The automatic sink detection looks for edges without successor edge to identify sinks. You can often create sinks by removing turn-around connections a the fringe of the network (there are also netconvert options for this) . Alternatively,

Re: [sumo-user] Random parking slot

2020-05-28 Thread Jakob Erdmann
No, this is currently not possible. However, you might split your parkingArea into 30 individual parkingAreas each having roadSideCapacity 1 and let the vehicles target a random parkingArea. Am Do., 28. Mai 2020 um 15:09 Uhr schrieb Илья Левашев < levashev1...@gmail.com>: > Hello, I`m trying to

[sumo-user] "Non-parallel parking" and "onTheRoad"

2020-05-28 Thread Илья Левашев
Hello! Is it possible to use non-parallel parking and onTheRoad options together? I want to reduce road capacity by parking area that has 90 degree angle, but I still have parallel parking slots in the simulations. When I switch off "onTheRoad" I have required non-parallel parking, but it`s not

Re: [sumo-user] Driving between two lanes

2020-05-28 Thread Reza
Thanks. It worked. -- 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] Random parking slot

2020-05-28 Thread Илья Левашев
Hello, I`m trying to simulate parking process in more realistic way, but I`v got a problem with choosing parking slot. I have roadside parking with roadsideCapacity 30 (30 parking slots) and vehicles that parking in order 30,29,28 etc. However, I want them to park in random order, is it possible?

[sumo-user] Route errors using flowrouter.py

2020-05-28 Thread Evans, Barry
Hi all, I have some traffic flow data from counts for a city and I was looking to use either DF Router or flowrouter.py. Looking on other threads I saw that flowrouter.py may be best option as I'm modelling flows within a city area. I am having issues however with the routes. I've been using

Re: [sumo-user] Generate ticket data while simulating public transit line (route)

2020-05-28 Thread Tripplanner Mumbai
Yes, the latest version works fine for retrieving the previous stage. It is especially helpful when two consecutive rides are there. On Mon, 25 May 2020 at 14:05, Jakob Erdmann wrote: > Yes. The error happened when accessing the vehicle (pointer) of a previous > stage in order to retrieve the

Re: [sumo-user] cutroutes.py for PT stops

2020-05-28 Thread Jakob Erdmann
an example call from our nightly tests looks like this: cutRoutes.py input_net.net.xml input_routes.rou.xml -a input_additional.add.xml --routes-output out.rou.xml --stops-output out.add.xml Am Do., 28. Mai 2020 um 05:14 Uhr schrieb Tetris < schmel...@campus.tu-berlin.de>: > Hello, > > I want to

Re: [sumo-user] Change in Lane Change Maneuver

2020-05-28 Thread Jakob Erdmann
Yes. See https://sumo.dlr.de/docs/Simulation/SublaneModel.html Am Do., 28. Mai 2020 um 00:54 Uhr schrieb Bae, Jong In : > Hello, > > I was wondering if there is any way in SUMO to change the way the vehicles > merge into different lanes. > The default way shows that the whole body of vehicle

Re: [sumo-user] randomTrips for multiple vTypes

2020-05-28 Thread Jakob Erdmann
Note: you can set randomTrips options --vtype-output to have the vType definition written into a separate file. Am Do., 28. Mai 2020 um 00:16 Uhr schrieb Dayuan Tan : > Dear Jakob, > > Thank you very much for helping! > > I did as what you said and it works now. > > Thank you very much and have