Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [sumo-user] Use predefined routes in route distribution

Thank you Giuliana,
However https://sumo.dlr.de/docs/Definition_of_Vehicles,_Vehicle_Types,_and_Routes.html#route_distributions is a little bit different as the routes in the route distributions in the example is not predefined outside the route distribution itself (i.e. the routes contain the attribute edges).

If I can do what I have suggested, then I guess that the two following route files will be understand the same way:
<routes> <route id="route0" color="1,1,0" edges="beg middle end rend"/> <vehicle id="0" route="route0" depart="0" color="1,0,0"/> </routes>

end

<routes> <route id="route0" color="1,1,0" edges="beg middle end rend"/> <vehicle id="0" depart="0" color="1,0,0">
<route id="route0" />
</vehicle>
</routes>

Is this correct?

Thank you a lot!

On Mon, Nov 9, 2020 at 3:05 PM <Maria.Armellini@xxxxxx> wrote:

Hi Theo,

 

Yes it is possible, see https://sumo.dlr.de/docs/Definition_of_Vehicles,_Vehicle_Types,_and_Routes.html#route_distributions.

 

Regards,

Giuliana

Von: sumo-user-bounces@xxxxxxxxxxx <sumo-user-bounces@xxxxxxxxxxx> Im Auftrag von Theophile Cabannes
Gesendet: Montag, 9. November 2020 13:39
An: sumo-user@xxxxxxxxxxx
Betreff: [sumo-user] Use predefined routes in route distribution

 

Hi,

I would like to use route distribution using routes that have been already defined in the route file. Is this possible?
I was thinking about writting something like:
 <routes>
   <route id="route_0" edges="beg middle end rend" />
   <route id="route_1" edges="beg middle2 end rend" />
   <vehicle id="0" type="type1" depart="0">
      <routeDistribution>
        <route id="route_0" probability="0.1" />
        <route id="route_1" probability="0.9" />
      </routeDistribution>
</routes>
Would that work?

Thank you a lot!
Theo

_______________________________________________
sumo-user mailing list
sumo-user@xxxxxxxxxxx
To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/sumo-user

Back to the top