forked from autowarefoundation/autoware_launch
-
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(autoware_lauch): modify launch for planning_validator (autowaref…
…oundation#180) * modify launch for planning_validator Signed-off-by: Takamasa Horibe <[email protected]> * fix Signed-off-by: Takamasa Horibe <[email protected]> Signed-off-by: Takamasa Horibe <[email protected]>
- Loading branch information
1 parent
5599f38
commit 355537e
Showing
2 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
...config/planning/scenario_planning/common/planning_validator/planning_validator.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,28 @@ | ||
/**: | ||
ros__parameters: | ||
# Operation option when invalid trajectory is detected | ||
# 0: publish the trajectory even if it is invalid | ||
# 1: stop publishing the trajectory | ||
# 2: publish the last validated trajectory | ||
invalid_trajectory_handling_type: 0 | ||
|
||
publish_diag: true # if true, diagnostic msg is published | ||
|
||
# If the number of consecutive invalid trajectory exceeds this threshold, the Diag will be set to ERROR. | ||
# (For example, threshold = 1 means, even if the trajectory is invalid, Diag will not be ERROR if | ||
# the next trajectory is valid.) | ||
diag_error_count_threshold: 0 | ||
|
||
display_on_terminal: true # show error msg on terminal | ||
|
||
thresholds: | ||
interval: 100.0 | ||
relative_angle: 2.0 # (= 115 degree) | ||
curvature: 1.0 | ||
lateral_acc: 9.8 | ||
longitudinal_max_acc: 9.8 | ||
longitudinal_min_acc: -9.8 | ||
steering: 1.414 | ||
steering_rate: 10.0 | ||
velocity_deviation: 100.0 | ||
distance_deviation: 100.0 |
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