Skip to content

Commit

Permalink
fix(ekf_localizer): change roll, pitch proc dev (#8619)
Browse files Browse the repository at this point in the history
change roll, pitch proc dev

Signed-off-by: Yamato Ando <yamato.ando@tier4.jp>
  • Loading branch information
YamatoAndo authored Aug 26, 2024
1 parent f64c4ed commit f99aa3a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions localization/ekf_localizer/config/ekf_localizer.param.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
simple_1d_filter_parameters:
#Simple1DFilter parameters
z_filter_proc_dev: 1.0
roll_filter_proc_dev: 0.01
pitch_filter_proc_dev: 0.01
roll_filter_proc_dev: 0.1
pitch_filter_proc_dev: 0.1

diagnostics:
# for diagnostics
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
"roll_filter_proc_dev": {
"type": "number",
"description": "Simple1DFilter - Roll filter process deviation",
"default": 0.01
"default": 0.1
},
"pitch_filter_proc_dev": {
"type": "number",
"description": "Simple1DFilter - Pitch filter process deviation",
"default": 0.01
"default": 0.1
}
},
"required": ["z_filter_proc_dev", "roll_filter_proc_dev", "pitch_filter_proc_dev"],
Expand Down

0 comments on commit f99aa3a

Please sign in to comment.