-
Notifications
You must be signed in to change notification settings - Fork 682
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
fix(behavior_velocity_planner): do not consider stop_line_margin when a stop line is defined at map in crosswalk module #1978
Conversation
… a stop line is defined at map in crosswalk module Signed-off-by: tomoya.kimura <tomoya.kimura@tier4.jp>
Codecov ReportBase: 10.28% // Head: 10.25% // Decreases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## main #1978 +/- ##
==========================================
- Coverage 10.28% 10.25% -0.03%
==========================================
Files 1158 1158
Lines 82151 82327 +176
Branches 19120 19260 +140
==========================================
Hits 8446 8446
- Misses 64564 64735 +171
- Partials 9141 9146 +5
*This pull request uses carry forward flags. Click here to find out more.
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
… a stop line is defined at map in crosswalk module (autowarefoundation#1978) Signed-off-by: tomoya.kimura <tomoya.kimura@tier4.jp> Signed-off-by: tomoya.kimura <tomoya.kimura@tier4.jp>
… a stop line is defined at map in crosswalk module (autowarefoundation#1978) Signed-off-by: tomoya.kimura <tomoya.kimura@tier4.jp> Signed-off-by: tomoya.kimura <tomoya.kimura@tier4.jp>
… a stop line is defined at map in crosswalk module (autowarefoundation#1978) Signed-off-by: tomoya.kimura <tomoya.kimura@tier4.jp> Signed-off-by: tomoya.kimura <tomoya.kimura@tier4.jp>
… a stop line is defined at map in crosswalk module (autowarefoundation#1978) Signed-off-by: tomoya.kimura <tomoya.kimura@tier4.jp> Signed-off-by: tomoya.kimura <tomoya.kimura@tier4.jp>
Signed-off-by: tomoya.kimura tomoya.kimura@tier4.jp
Description
In crosswalk module, the parameter
stop_line_distance
should be considered only when the explicit stop_line is not defined in lanelet.(
It is described in the parameter description
autoware.universe/planning/behavior_velocity_planner/config/crosswalk.param.yaml
Line 7 in 30e968e
)
But, in the current implementation,
![image](https://user-images.githubusercontent.com/59680180/192734502-ef99ce11-91f8-4abf-88bd-ff288eb5eafd.png)
stop_line_distance
is always considered, and the position of stop lines in crosswalk and walkway module are misaligned.I fixed it.
![image](https://user-images.githubusercontent.com/59680180/192734934-d19a07a6-18d9-4bff-9136-dc2ac6cc705f.png)
Related links
Tests performed
Notes for reviewers
Pre-review checklist for the PR author
The PR author must check the checkboxes below when creating the PR.
In-review checklist for the PR reviewers
The PR reviewers must check the checkboxes below before approval.
Post-review checklist for the PR author
The PR author must check the checkboxes below before merging.
After all checkboxes are checked, anyone who has write access can merge the PR.