Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(sensing-imu-corrector): rework parameters #5780

Merged
merged 6 commits into from
Dec 21, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 61 additions & 0 deletions sensing/imu_corrector/schema/imu_corrector.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Parameters for imu_corrector",
"type": "object",
"definitions": {
"imu_corrector": {
"type": "object",
"properties": {
"angular_velocity_offset_x": {
"type": "number",
"description": "roll rate offset in imu_link [rad/s]."
},
"angular_velocity_offset_y": {
"type": "number",
"description": "pitch rate offset imu_link [rad/s]."
},
"angular_velocity_offset_z": {
"type": "number",
"description": "yaw rate offset imu_link [rad/s]."
},
"angular_velocity_stddev_xx": {
"type": "number",
"description": "roll rate standard deviation imu_link [rad/s]."
},
"angular_velocity_stddev_yy": {
"type": "number",
"description": "pitch rate standard deviation imu_link [rad/s]."
},
"angular_velocity_stddev_zz": {
"type": "number",
"description": "yaw rate standard deviation imu_link [rad/s]."
},
"acceleration_stddev": {
"type": "number",
"description": "acceleration standard deviation imu_link [m/s^2]."
}
},
"required": [
"angular_velocity_offset_x",
"angular_velocity_offset_y",
"angular_velocity_offset_z",
"angular_velocity_stddev_xx",
"angular_velocity_stddev_yy",
"angular_velocity_stddev_zz",
"acceleration_stddev"
]
}
},
"properties": {
"/**": {
"type": "object",
"properties": {
"ros__parameters": {
"$ref": "#/definitions/imu_corrector"
}
},
"required": ["ros__parameters"]
}
},
"required": ["/**"]
}
Loading