-
Notifications
You must be signed in to change notification settings - Fork 668
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into refactor/start_planner_rss
Signed-off-by: kyoichi-sugahara <[email protected]>
- Loading branch information
Showing
238 changed files
with
13,273 additions
and
5,921 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
common/goal_distance_calculator/config/goal_distance_calculator.param.yaml
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
/**: | ||
ros__parameters: | ||
update_rate: 10.0 | ||
oneshot: false |
2 changes: 0 additions & 2 deletions
2
common/goal_distance_calculator/launch/goal_distance_calculator.launch.xml
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 |
---|---|---|
@@ -1,8 +1,6 @@ | ||
<launch> | ||
<arg name="oneshot" default="false"/> | ||
<arg name="config_file" default="$(find-pkg-share goal_distance_calculator)/config/goal_distance_calculator.param.yaml"/> | ||
<node pkg="goal_distance_calculator" exec="goal_distance_calculator_node" name="goal_distance_calculator" output="screen"> | ||
<param from="$(var config_file)"/> | ||
<param name="oneshot" value="$(var oneshot)"/> | ||
</node> | ||
</launch> |
36 changes: 36 additions & 0 deletions
36
common/goal_distance_calculator/schema/goal_distance_calculator.schema.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,36 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"title": "Parameters for Goal Distance Calculator Node", | ||
"type": "object", | ||
"definitions": { | ||
"goal_distance_calculator": { | ||
"type": "object", | ||
"properties": { | ||
"update_rate": { | ||
"type": "number", | ||
"default": "10.0", | ||
"exclusiveMinimum": 0, | ||
"description": "Timer callback period. [Hz]" | ||
}, | ||
"oneshot": { | ||
"type": "boolean", | ||
"default": "false", | ||
"description": "Publish deviations just once or repeatedly." | ||
} | ||
}, | ||
"required": ["update_rate", "oneshot"] | ||
} | ||
}, | ||
"properties": { | ||
"/**": { | ||
"type": "object", | ||
"properties": { | ||
"ros__parameters": { | ||
"$ref": "#/definitions/goal_distance_calculator" | ||
} | ||
}, | ||
"required": ["ros__parameters"] | ||
} | ||
}, | ||
"required": ["/**"] | ||
} |
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
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
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
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
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
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": ["/**"] | ||
} |
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
Oops, something went wrong.