Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [sumo-user] Stops don't work on rerouting properly.

Hello,
recurrent stops are not supported when using destProbReroute.
Instead you can use routeProbReroute and define the stops in the referenced route:

    <route id="e1e2" edges="edge1 gneE0 gneE1 gneE2 gneE3 edge2">                                                                                                     
        <stop lane="gneE2_0" endPos="4" duration="10"/>                                                                                                               
    </route>                                                                                                                                                          
    <route id="e2e1" edges="edge2 gneE5 gneE6 edge1"/>                                                                                                                
                                                                                                                                                                      
    <rerouter id="rerouter_0" edges="edge1">                                                                                                                          
        <interval end="1e3">                                                                                                                                          
           <routeProbReroute id="e1e2"/>                                                                                                                              
        </interval>                                                                                                                                                   
    </rerouter>                                                                                                                                                       
                                                                                                                                                                      
    <rerouter id="rerouter_1" edges="edge2">                                                                                                                          
        <interval end="1e3">                                                                                                                                          
           <routeProbReroute id="e2e1"/>                                                                                                                              
        </interval>                                                                                                                                                   
    </rerouter>        

regards,
Jakob

Am Mo., 1. Okt. 2018 um 16:15 Uhr schrieb Konstantinos Chartomatzis <constchart@xxxxxxxxx>:

Hi everyone,

 

I’m trying to create a simple example of a circular route that includes stops.

Although, the stop is successfully happening the first time, it doesn’t happen the following times.

Searching the mailing list, a few other users had the same problem. Some of the advice that is suggested is to include the stops in the additionals xml file, but this didn’t work for me. Even when placing it before, as child, after etc. It seems that there was a bug a raised and then it was closed as fixed.

 

Could you please let me know if this is a bug, or if I am missing anything?

I have attached the source code. It’s the circle example, with an additional stop.

 

Many thanks!!

 

Kind regards,

Konstantinos Chartomatzis

 

 

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

Back to the top