-
Notifications
You must be signed in to change notification settings - Fork 676
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(sensing-imu-corrector): rework parameters (#5780)
* sensing-imu-corrector Signed-off-by: karishma <[email protected]> * sensing-imu-corrector Signed-off-by: karishma <[email protected]> * sensing-imu-corrector Signed-off-by: karishma <[email protected]> --------- Signed-off-by: karishma <[email protected]> Co-authored-by: KK <[email protected]>
- Loading branch information
1 parent
a3e3db6
commit 0f8e78f
Showing
1 changed file
with
61 additions
and
0 deletions.
There are no files selected for viewing
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,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": ["/**"] | ||
} |