-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(lane_change): use planning factor #1727
feat(lane_change): use planning factor #1727
Conversation
Signed-off-by: satoshi-ota <[email protected]>
Signed-off-by: satoshi-ota <[email protected]>
Signed-off-by: satoshi-ota <[email protected]>
Thank you for contributing to the Autoware project! 🚧 If your pull request is in progress, switch it to draft mode. Please ensure:
|
@@ -452,5 +471,17 @@ void LaneChangeInterface::updateSteeringFactorPtr( | |||
{selected_path.info.shift_line.start, selected_path.info.shift_line.end}, | |||
{output.start_distance_to_path_change, output.finish_distance_to_path_change}, | |||
steering_factor_direction, SteeringFactor::APPROACHING, ""); | |||
|
|||
const uint16_t planning_factor_direction = std::invoke([&output]() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
const uint16_t planning_factor_direction = std::invoke([&output]() { | |
const auto planning_factor_direction = std::invoke([&output]() { |
Just for code consistency purpose.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Quality Gate passedIssues Measures |
bb03595
into
feat/development-branch-planning-factor
Description
Add
PlanningFactorInterface
to output planning factor.Related links
Parent Issue:
How was this PR tested?
movie-2024-12-23_09.42.26.mp4
Notes for reviewers
None.
Interface changes
/planing/planning_factors/lane_change_right
tier4_planning_msgs/PlanningFactorArray
/planing/planning_factors/lane_change_left
tier4_planning_msgs/PlanningFactorArray
Effects on system behavior
None.