Hello,
intermodal route computation (which includes routing over access edges) is
only supported in duarouter at the moment.
SUMO needs fully specified <walk> definitions.
Instead of

    <person id="foo"
depart="0">

        <walk from="gneE2" departPos="0"
busStop="busStop_gneE0_0_0"/>

        <ride from="gneE0" busStop="busStop_gneE1_0_1"
lines="1"/>

        <walk from="gneE1" to="gneE1"
arrivalPos="0"/>

    </person>

use:


    <person id="foo"
depart="0.00">

        <walk edges="gneE2 gneE3"
busStop="busStop_gneE0_0_0"/>

        <ride busStop="busStop_gneE1_0_1"
lines="L1"/>

        <walk
edges="gneE1"/>

    </person>

regards,
Jakob

2017-06-19 21:26 GMT+02:00 Matthias Wirtz <[email protected]>:

> Hi,
>
> I'm encountering difficulties when simulating public transport and the
> passengers riding the vehicles.
>
> In the scenario I'm using busStops which have access lanes. They define
> from which lane and point of the network the bus stop can be reaches.
>
> But when defining walks for persons and specifying a busStop as the
> destination of one leg, I get the error message:
>
> <No connection found between 'gneE2' and 'gneE0' for person 'foo'.>
>
> Where gneE2 is the start edge and gneE0 is the edge where the busStop is
> located on. It looks like that the access lane is not used to get the
> person to the busStop.
>
> Example attached.
>
> If I give the start point of the access lane as destination and the
> busStop as the starting point of the next leg, I get the error message that
> the plan is disconnected. Which makes sense cause the access lane is then
> excluded.
>
> Thanks for the help.
>
> --
> Matthias
>
> ------------------------------------------------------------
> ------------------
> 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
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/sumo-user
>
>
------------------------------------------------------------------------------
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
[email protected]
https://lists.sourceforge.net/lists/listinfo/sumo-user

Reply via email to