can not generate path from co-located lanes #3586
Replies: 1 comment
-
@beyzanurkaya we can resolve the discussion since autowarefoundation/autoware.universe#4013 is merged |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The current
route_handler
package is considered as thestart_lanelet
, the lane closest to theroad_lanelets_
at the given start checkpoint for path generation. However, this method can cause problems with overlapped lanes.For example, these two lanes overlap as shown. Since the next_lanes they have are different from each other, different paths are generated to the given goal pose, and sometimes even the path is not created if the appropriate next_lane is not available.
In this case, all current_lanes should be checked and considered as start_lane, from which the shortest path can be generated.
What do you think about this idea?
Beta Was this translation helpful? Give feedback.
All reactions