Skip to content

Commit 259f1aa

Browse files
committed
fix: Redo modification of the descriptions
Signed-off-by: Motsu-san <masahiro.sakamoto@tier4.jp>
1 parent d2c028b commit 259f1aa

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

localization/ekf_localizer/schema/sub/node.subschema.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -7,32 +7,32 @@
77
"properties": {
88
"show_debug_info": {
99
"type": "boolean",
10-
"description": "Displays debug information if set to true",
10+
"description": "Flag to display debug info",
1111
"default": false
1212
},
1313
"predict_frequency": {
1414
"type": "number",
15-
"description": "Frequency of prediction cycles for filtering and publishing [Hz]",
15+
"description": "Frequency for filtering and publishing [Hz]",
1616
"default": 50.0
1717
},
1818
"tf_rate": {
1919
"type": "number",
20-
"description": "Frequency at which transform frames are published [Hz]",
20+
"description": "Frequency for tf broadcasting [Hz]",
2121
"default": 50.0
2222
},
2323
"publish_tf": {
2424
"type": "boolean",
25-
"description": "Determines whether transform frames are published",
25+
"description": "Whether to publish tf",
2626
"default": true
2727
},
2828
"extend_state_step": {
2929
"type": "integer",
30-
"description": "Number of max delay steps which can be dealt with in EKF. Large number increases computational cost.",
30+
"description": "Max delay step which can be dealt with in EKF. Large number increases computational cost.",
3131
"default": 50
3232
},
3333
"enable_yaw_bias_estimation": {
3434
"type": "boolean",
35-
"description": "Enables yaw bias estimation.",
35+
"description": "Flag to enable yaw bias estimation",
3636
"default": true
3737
}
3838
},

localization/ekf_localizer/schema/sub/pose_measurement.subschema.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@
77
"properties": {
88
"pose_additional_delay": {
99
"type": "number",
10-
"description": "Additional delay for pose measurements [s]",
10+
"description": "Additional delay time for pose measurement [s]",
1111
"default": 0.0
1212
},
1313
"pose_measure_uncertainty_time": {
1414
"type": "number",
15-
"description": "Time uncertainty for covariance calculation [s]",
15+
"description": "Measured time uncertainty used for covariance calculation [s]",
1616
"default": 0.01
1717
},
1818
"pose_smoothing_steps": {
1919
"type": "integer",
20-
"description": "Number of steps for pose smoothing",
20+
"description": "A value for smoothing steps",
2121
"default": 5
2222
},
2323
"pose_gate_dist": {

localization/ekf_localizer/schema/sub/twist_measurement.subschema.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
"properties": {
88
"twist_additional_delay": {
99
"type": "number",
10-
"description": "Additional delay for twist calculation [s]",
10+
"description": "Additional delay time for twist [s]",
1111
"default": 0.0
1212
},
1313
"twist_smoothing_steps": {
1414
"type": "integer",
15-
"description": "Number of steps for twist smoothing",
15+
"description": "A value for smoothing steps",
1616
"default": 2
1717
},
1818
"twist_gate_dist": {

0 commit comments

Comments
 (0)