forked from autowarefoundation/autoware_launch
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(ekf_localizer): move parameters to its dedicated yaml file (#244)
* chores(ekf_localizer): move parameters to its dedicated yaml file Signed-off-by: Vincent Richard <[email protected]> * style(pre-commit): autofix --------- Signed-off-by: Vincent Richard <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
- Loading branch information
1 parent
5bf8658
commit f93df2b
Showing
2 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
23 changes: 23 additions & 0 deletions
23
autoware_launch/config/localization/ekf_localizer.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,23 @@ | ||
/**: | ||
ros__parameters: | ||
show_debug_info: false | ||
enable_yaw_bias_estimation: True | ||
predict_frequency: 50.0 | ||
tf_rate: 50.0 | ||
extend_state_step: 50 | ||
|
||
# for Pose measurement | ||
pose_additional_delay: 0.0 | ||
pose_measure_uncertainty_time: 0.01 | ||
pose_smoothing_steps: 5 | ||
pose_gate_dist: 10000.0 | ||
|
||
# for twist measurement | ||
twist_additional_delay: 0.0 | ||
twist_smoothing_steps: 2 | ||
twist_gate_dist: 10000.0 | ||
|
||
# for process model | ||
proc_stddev_yaw_c: 0.005 | ||
proc_stddev_vx_c: 10.0 | ||
proc_stddev_wz_c: 5.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