Skip to content

Commit e0c82f6

Browse files
committed
Fix: Modify the descriptions of parameters
Signed-off-by: Motsu-san <masahiro.sakamoto@tier4.jp>
1 parent b94f739 commit e0c82f6

7 files changed

+27
-27
lines changed

localization/ekf_localizer/schema/sub/diagnostics.sub_schema.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,22 @@
77
"properties": {
88
"pose_no_update_count_threshold_warn": {
99
"type": "integer",
10-
"description": "Warning threshold for pose update count.",
10+
"description": "The threshold at which a WARN state is triggered due to the Pose Topic update not happening continuously for a certain number of times",
1111
"default": 50
1212
},
1313
"pose_no_update_count_threshold_error": {
1414
"type": "integer",
15-
"description": "Error threshold for pose update count.",
15+
"description": "The threshold at which an ERROR state is triggered due to the Pose Topic update not happening continuously for a certain number of times",
1616
"default": 100
1717
},
1818
"twist_no_update_count_threshold_warn": {
1919
"type": "integer",
20-
"description": "Warning threshold for twist update count.",
20+
"description": "The threshold at which a WARN state is triggered due to the Twist Topic update not happening continuously for a certain number of times",
2121
"default": 50
2222
},
2323
"twist_no_update_count_threshold_error": {
2424
"type": "integer",
25-
"description": "Error threshold for twist update count.",
25+
"description": "The threshold at which an ERROR state is triggered due to the Twist Topic update not happening continuously for a certain number of times",
2626
"default": 100
2727
}
2828
},

localization/ekf_localizer/schema/sub/misc.sub_schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"properties": {
88
"threshold_observable_velocity_mps": {
99
"type": "number",
10-
"description": "Velocity threshold for observability in meters per second.",
10+
"description": "Minimum value for velocity that will be used for EKF. Mainly used for dead zone in velocity sensor [m/s] (0.0 means disabled)",
1111
"default": 0.0
1212
}
1313
},

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

+5-5
Original file line numberDiff line numberDiff line change
@@ -7,27 +7,27 @@
77
"properties": {
88
"show_debug_info": {
99
"type": "boolean",
10-
"description": "Displays debug information if set to true.",
10+
"description": "Displays debug information if set to true",
1111
"default": false
1212
},
1313
"predict_frequency": {
1414
"type": "number",
15-
"description": "Frequency of prediction cycles.",
15+
"description": "Frequency of prediction cycles 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.",
20+
"description": "Frequency at which transform frames are published [Hz]",
2121
"default": 50.0
2222
},
2323
"publish_tf": {
2424
"type": "boolean",
25-
"description": "Determines whether transform frames are published.",
25+
"description": "Determines whether transform frames are published",
2626
"default": true
2727
},
2828
"extend_state_step": {
2929
"type": "integer",
30-
"description": "Number of steps for extending the state.",
30+
"description": "Number of max delay steps which can be dealt with in EKF. Large number increases computational cost.",
3131
"default": 50
3232
},
3333
"enable_yaw_bias_estimation": {

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,22 @@
77
"properties": {
88
"pose_additional_delay": {
99
"type": "number",
10-
"description": "Additional delay for pose measurements.",
10+
"description": "Additional delay for pose measurements [s]",
1111
"default": 0.0
1212
},
1313
"pose_measure_uncertainty_time": {
1414
"type": "number",
15-
"description": "Time uncertainty for pose measurements.",
15+
"description": "Time uncertainty 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": "Number of steps for pose smoothing",
2121
"default": 5
2222
},
2323
"pose_gate_dist": {
2424
"type": "number",
25-
"description": "Gate distance for pose measurements.",
25+
"description": "Limit of Mahalanobis distance used for outliers detection",
2626
"default": 10000.0
2727
}
2828
},

localization/ekf_localizer/schema/sub/process_noise.sub_schema.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,20 @@
55
"process_noise": {
66
"type": "object",
77
"properties": {
8-
"proc_stddev_yaw_c": {
9-
"type": "number",
10-
"description": "Standard deviation of yaw in the process model.",
11-
"default": 0.005
12-
},
138
"proc_stddev_vx_c": {
149
"type": "number",
15-
"description": "Standard deviation of linear velocity in the process model.",
10+
"description": "Standard deviation of process noise in time differentiation expression of linear velocity x, noise for d_vx = 0",
1611
"default": 10.0
1712
},
1813
"proc_stddev_wz_c": {
1914
"type": "number",
20-
"description": "Standard deviation of angular velocity in the process model.",
15+
"description": "Standard deviation of process noise in time differentiation expression of angular velocity z, noise for d_wz = 0",
2116
"default": 5.0
17+
},
18+
"proc_stddev_yaw_c": {
19+
"type": "number",
20+
"description": "Standard deviation of process noise in time differentiation expression of yaw, noise for d_yaw = omega",
21+
"default": 0.005
2222
}
2323
},
2424
"required": [

localization/ekf_localizer/schema/sub/simple_1d_filter_parameters.sub_schema.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@
77
"properties": {
88
"z_filter_proc_dev": {
99
"type": "number",
10-
"description": "Process deviation for the Z-axis filter.",
10+
"description": "Simple1DFilter - Z filter process deviation",
1111
"default": 1.0
1212
},
1313
"roll_filter_proc_dev": {
1414
"type": "number",
15-
"description": "Process deviation for the roll filter.",
15+
"description": "Simple1DFilter - Roll filter process deviation",
1616
"default": 0.01
1717
},
1818
"pitch_filter_proc_dev": {
1919
"type": "number",
20-
"description": "Process deviation for the pitch filter.",
20+
"description": "Simple1DFilter - Pitch filter process deviation",
2121
"default": 0.01
2222
}
2323
},

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@
77
"properties": {
88
"twist_additional_delay": {
99
"type": "number",
10-
"description": "Additional delay for twist measurements.",
10+
"description": "Additional delay for twist calculation [s]",
1111
"default": 0.0
1212
},
1313
"twist_smoothing_steps": {
1414
"type": "integer",
15-
"description": "Number of steps for twist smoothing.",
15+
"description": "Number of steps for twist smoothing",
1616
"default": 2
1717
},
1818
"twist_gate_dist": {
1919
"type": "number",
20-
"description": "Gate distance for twist measurements.",
20+
"description": "Limit of Mahalanobis distance used for outliers detection",
2121
"default": 10000.0
2222
}
2323
},

0 commit comments

Comments
 (0)