feat: add support for area for route planning#12381
Open
emmeyteja wants to merge 12 commits intoautowarefoundation:mainfrom
Open
feat: add support for area for route planning#12381emmeyteja wants to merge 12 commits intoautowarefoundation:mainfrom
emmeyteja wants to merge 12 commits intoautowarefoundation:mainfrom
Conversation
Signed-off-by: Ryohsuke Mitsudome <ryohsuke.mitsudome@tier4.jp>
|
Thank you for contributing to the Autoware project! 🚧 If your pull request is in progress, switch it to draft mode. Please ensure:
|
Signed-off-by: emmeyteja <emmeyteja@gmail.com>
…areas Signed-off-by: emmeyteja <emmeyteja@gmail.com>
… RViz Signed-off-by: emmeyteja <emmeyteja@gmail.com>
…when areas present in the route Signed-off-by: emmeyteja <emmeyteja@gmail.com>
…lanelet-area-lanelet
…height Removes cppcheck redundantInitialization warning; goal_height is always set in the area vs lane branches before use. Made-with: Cursor
Author
|
@mitsudome-r @soblin Could you please review this PR? |
…lanelet-area-lanelet
…lanelet-area-lanelet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Universe updates for mission routes that can include Lanelet2 Area segments (
LaneletPrimitive.primitive_type == "area").default_planner): Plans with area-inclusiveRouteHandlerAPIs, buildsLaneletRoute.segmentswith mixed lane and area primitives, and refines goal Z when the last segment is an area. Lane-onlysetRouteLaneletsstill receives only lanelets; full L–A–L topology is carried in segments.LaneletRoute(skipping areas for arc length) instead of lane-onlyRoutingGraph::getRoute, and recomputes when the map arrives after the route.Related links
Parent Issue:
Related PRs
Design Documents
Tier IV Internal Design Document: Area Visualization
Tier IV Internal Design Document: Route Serach through Areas
How was this PR tested?
Notes for reviewers
Please check segment handling and RouteHandler usage in mission planner; remaining-distance path is gated on presence of any area segment in the cached route.
Interface changes
No new topics or message types.
LaneletRoutepayload may includeareasegments when the map and routing rules allow.Effects on system behavior
Missions that only connect via Areas can get a published route where pure lane routing could not. Subscribers that ignore
primitive_typeor only usegetRoutemay still misbehave. Trajectory / behavior through the connector is not defined by this PR alone.