-
Notifications
You must be signed in to change notification settings - Fork 683
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update-parameters-obstacle-collision-checker
Signed-off-by: karishma <[email protected]>
- Loading branch information
1 parent
8e209a1
commit 70cabf8
Showing
1 changed file
with
60 additions
and
0 deletions.
There are no files selected for viewing
60 changes: 60 additions & 0 deletions
60
control/obstacle_collision_checker/schema/obstacle_collision_checker.json
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,60 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"title": "Parameters for obstacle collision checker", | ||
"type": "object", | ||
"definitions": { | ||
"vehicle_cmd_gate": { | ||
"type": "object", | ||
"properties": { | ||
"delay_time": { | ||
"type": "number", | ||
"default": 0.3, | ||
"description": "Delay time of vehicles." | ||
}, | ||
"update_rate": { | ||
"type": "number" | ||
}, | ||
"footprint_margin": { | ||
"type": "number", | ||
"default": 0.0, | ||
"description": "Foot print margin." | ||
}, | ||
"max_deceleration": { | ||
"type": "number", | ||
"default": 2.0, | ||
"description": "Max deceleration for ego vehicle to stop." | ||
}, | ||
"resample_interval": { | ||
"type": "number", | ||
"default": 0.3, | ||
"description": "Interval for resampling trajectory." | ||
}, | ||
"search_radius": { | ||
"type": "number", | ||
"default": 5.0, | ||
"description": "Search distance from trajectory to point cloud" | ||
} | ||
}, | ||
"required": [ | ||
"delay_time", | ||
"footprint_margin", | ||
"max_deceleration", | ||
"resample_interval", | ||
"search_radius", | ||
"update_rate" | ||
] | ||
} | ||
}, | ||
"properties": { | ||
"/**": { | ||
"type": "object", | ||
"properties": { | ||
"ros__parameters": { | ||
"$ref": "#/definitions/obstacle_collision_checker" | ||
} | ||
}, | ||
"required": ["ros__parameters"] | ||
} | ||
}, | ||
"required": ["/**"] | ||
} |