-
Notifications
You must be signed in to change notification settings - Fork 675
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): lower stop decision velocity #525
Merged
tkimura4
merged 1 commit into
autowarefoundation:main
from
mkuri:fix/vehicle-stop-velocity
Mar 16, 2022
Merged
fix(behavior_velocity_planner): lower stop decision velocity #525
tkimura4
merged 1 commit into
autowarefoundation:main
from
mkuri:fix/vehicle-stop-velocity
Mar 16, 2022
Conversation
This file contains 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
Signed-off-by: Makoto Kurihara <mkuri8m@gmail.com>
tkimura4
approved these changes
Mar 16, 2022
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
mkuri
added a commit
to mkuri/autoware.universe
that referenced
this pull request
Mar 16, 2022
…efoundation#525) Signed-off-by: Makoto Kurihara <mkuri8m@gmail.com>
Merged
7 tasks
pull bot
pushed a commit
to kenji-miyake/autoware.universe
that referenced
this pull request
Mar 16, 2022
* Feature/goal distance calculator (#311) * add initial package * half lint * pass cpplint * add pose deviation * add autoware utils * fix prefix * beautify * add ament copyright * fix ament format * fix param name * refactor param * refactor params * [goal_sistance_calculator]: Fix CMakeLists.txt Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp> Co-authored-by: wep21 <border_goldenmarket@yahoo.co.jp> * ros2-v0.8.0-goal_distance_calulator (#319) * update to component * refactor node name * Ros2 v0.8.0 lane departure checker (#327) * Add lane departure checker (autowarefoundation#928) Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * Fix bug of lane_departure_checker (autowarefoundation#1011) * Fix bug of lane_departure_checker Since preceeding lanelets are missing, when vehicle is at the beginning of a lanelet, it's mistakenly considered as out of lane. Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * Fix typo Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * Reduce computational cost of lane_departure_checker (autowarefoundation#1026) Lanelet visualization will be too slow when big lanelets are visualized. Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * Fix typo (autowarefoundation#1062) Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * [lane_departure_checker]: Port to ROS2 Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp> * [lane_departure_checker]: Fix lint Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp> * [autoware_utils]: Publish autoware debug msgs Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp> * [lane_departure_checker]: Use autoware_debug_msgs instead of std_msgs Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp> * [goal_distance_calculator]: Use autoware_debug_msgs instead of std_msgs Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp> * [autoware_utils]: Add namespace to debug traits Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp> * [lane_departure_checker]: Fix lint Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp> Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com> * Rename ROS-related .yaml to .param.yaml (#352) * Rename ROS-related .yaml to .param.yaml Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * Remove prefix 'default_' of yaml files Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * Rename vehicle_info.yaml to vehicle_info.param.yaml Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * Rename diagnostic_aggregator's param files Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * Fix overlooked parameters Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * add use_sim-time option (autowarefoundation#454) * Unify Apache-2.0 license name (autowarefoundation#1242) * Remove use_sim_time for set_parameter (autowarefoundation#1260) Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp> * Change formatter to clang-format and black (autowarefoundation#2332) * Revert "Temporarily comment out pre-commit hooks" This reverts commit 748e9cdb145ce12f8b520bcbd97f5ff899fc28a3. * Replace ament_lint_common with autoware_lint_common Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * Remove ament_cmake_uncrustify and ament_clang_format Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * Apply Black Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * Apply clang-format Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * Fix build errors Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * Fix for cpplint * Fix include double quotes to angle brackets Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * Apply clang-format Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * Fix build errors Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * Add COLCON_IGNORE (autowarefoundation#500) Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * goal_distance_calculator port to .auto (autowarefoundation#525) * goal_distance_calculator port to .auto * Fix formatting * Fix pre commit * [goal_distance_calculator]add readme (autowarefoundation#545) * add readme * Update common/util/goal_distance_calculator/Readme.md Co-authored-by: taikitanaka3 <65527974+taikitanaka3@users.noreply.github.com> * fix format Co-authored-by: taikitanaka3 <65527974+taikitanaka3@users.noreply.github.com> * [path_distance_calculator]add readme (autowarefoundation#547) * add readme of path_distance_calculator * update readme * fix readme * update description * ci(pre-commit): autofix Co-authored-by: wep21 <border_goldenmarket@yahoo.co.jp> Co-authored-by: Daisuke Nishimatsu <42202095+wep21@users.noreply.github.com> Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com> Co-authored-by: tkimura4 <tomoya.kimura@tier4.jp> Co-authored-by: Kazuki Miyahara <kmiya@outlook.com> Co-authored-by: Yohei Mishina <66298900+YoheiMishina@users.noreply.github.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
taikitanaka3
referenced
this pull request
in tier4/autoware.universe
Apr 8, 2022
Signed-off-by: Makoto Kurihara <mkuri8m@gmail.com>
satoshi-ota
pushed a commit
to satoshi-ota/autoware.universe
that referenced
this pull request
May 20, 2022
…efoundation#525) (autowarefoundation#26) Signed-off-by: Makoto Kurihara <mkuri8m@gmail.com>
kosuke55
pushed a commit
to kosuke55/autoware.universe
that referenced
this pull request
May 29, 2023
…path feat(behavior_path_planner): output stop reasons (autowarefoundation#3807)
kyoichi-sugahara
pushed a commit
that referenced
this pull request
Sep 16, 2023
* add set-matrix job Signed-off-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com> * test update-beta-branch Signed-off-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com> * fix script Signed-off-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com> * remove debug script Signed-off-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com> * Update .github/workflows/update-beta-branch.yaml Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com> * Update .github/workflows/update-beta-branch.yaml Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com> * remove sd Signed-off-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com> * Update .github/workflows/update-beta-branch.yaml Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com> * fix beta branch name Signed-off-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com> * rename from set-matrix to search-beta-branch Signed-off-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com> * add if statement to avoid error Signed-off-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com> * Update .github/workflows/update-beta-branch.yaml Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com> * apply minor changes * Update .github/workflows/update-beta-branch.yaml Signed-off-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com> Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
iwatake2222
pushed a commit
to iwatake2222/autoware.universe
that referenced
this pull request
Jan 17, 2025
…cruise_planner (autowarefoundation#525) * feat(autoware_launch): add suppress_sudden_obstacle_stop in obstacle_cruise_planner Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com> * update Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com> --------- Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
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.
Signed-off-by: Makoto Kurihara mkuri8m@gmail.com
Related Issue(required)
Resolves #524
Description(required)
The behavior velocity planner's threshold for determining whether a vehicle has stopped is 0.1 m/s^2, which means that the vehicle still has speed.
In order to determine a complete stop, the threshold was changed from 0.1m/s^2 to 10e-3m/s^2.
Review Procedure(required)
Confirm that the ego vehicle's velocity falls below 10e-3m/s^2 and the stop line is released
Related PR(optional)
Pre-Review Checklist for the PR Author
PR Author should check the checkboxes below when creating the PR.
If you are adding new package following items are required:
Checklist for the PR Reviewer
Reviewers should check the checkboxes below before approval.
Post-Review Checklist for the PR Author
PR Author should check the checkboxes below before merging.
CI Checks