forked from tier4/autoware.universe
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(planning_error_monitor): read params from yaml (tier4#792)
* feat(planning_error_monitor): read params from yaml Signed-off-by: Kazuki Matsumoto <kazuki.matsumoto@tier4.jp> * Update planning/planning_error_monitor/CMakeLists.txt Signed-off-by: Kazuki Matsumoto <kazuki.matsumoto@tier4.jp> Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com> * fix: arg line in launch Signed-off-by: Kazuki Matsumoto <kazuki.matsumoto@tier4.jp> * fix: add units of some parameters in yaml Signed-off-by: Kazuki Matsumoto <kazuki.matsumoto@tier4.jp> Co-authored-by: Kazuki Matsumoto <kazuki.matsumoto@tier.jp>
- Loading branch information
Showing
3 changed files
with
12 additions
and
4 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -58,5 +58,6 @@ endif() | |
|
||
ament_auto_package( | ||
INSTALL_TO_SHARE | ||
config | ||
launch | ||
) |
7 changes: 7 additions & 0 deletions
7
planning/planning_error_monitor/config/planning_error_monitor.param.yaml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
/**: | ||
ros__parameters: | ||
# trajectory check | ||
error_interval: 100.0 # error interval distance threshold [m] | ||
error_curvature: 2.0 # error curvature threshold [rad/m] | ||
error_sharp_angle: 0.785398 # error sharp angle threshold [rad] | ||
ignore_too_close_points: 0.01 # ignore too close distance threshold [m] |
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