Skip to content
Open
Show file tree
Hide file tree
Changes from 3 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
5 changes: 5 additions & 0 deletions planning/autoware_obstacle_cruise_planner/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -405,6 +405,11 @@ Note that if a new stop obstacle appears and the previous closest obstacle remov
| ---------------------------------------------------------- | ------ | -------------------------------------------------- |
| `behavior_determination.stop_obstacle_hold_time_threshold` | double | maximum time for holding closest stop obstacle [s] |

#### Parameters

{{ json_to_markdown("planning/autoware_obstacle_cruise_planner/schema/default_common.schema.json") }}
{{ json_to_markdown("planning/autoware_obstacle_cruise_planner/schema/obstacle_cruise_planner.schema.json") }}

## How To Debug

How to debug can be seen [here](docs/debug.md).
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,125 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "autoware_obstacle_cruise_planner parameters",
"type": "object",
"definitions": {
"deafult_common": {

Check warning on line 6 in planning/autoware_obstacle_cruise_planner/schema/default_common.schema.json

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (deafult)
"type": "object",
"properties": {
"max_vel": {
"type": "number",
"description": "Maximum velocity limit [m/s].",
"default": 11.1,
"minimum": 0.0
},
"normal": {
"type": "object",
"properties": {
"min_acc": {
"type": "number",
"description": "Minimum deceleration for normal driving [m/s²].",
"default": -1.0,
"minimum": -10.0,
"maximum": 0.0
},
"max_acc": {
"type": "number",
"description": "Maximum acceleration for normal driving [m/s²].",
"default": 1.0,
"minimum": 0.0,
"maximum": 10.0
},
"min_jerk": {
"type": "number",
"description": "Minimum jerk for normal driving [m/s³].",
"default": -1.0,
"minimum": -10.0,
"maximum": 0.0
},
"max_jerk": {
"type": "number",
"description": "Maximum jerk for normal driving [m/s³].",
"default": 1.0,
"minimum": 0.0,
"maximum": 10.0
}
},
"required": ["min_acc", "max_acc", "min_jerk", "max_jerk"],
"additionalProperties": false
},
"slow_down": {
"type": "object",
"properties": {
"min_acc": {
"type": "number",
"description": "Minimum deceleration for slowing down [m/s²].",
"default": -1.0,
"minimum": -10.0,
"maximum": 0.0
},
"min_jerk": {
"type": "number",
"description": "Minimum jerk for slowing down [m/s³].",
"default": -1.0,
"minimum": -10.0,
"maximum": 0.0
}
},
"required": ["min_acc", "min_jerk"],
"additionalProperties": false
},
"limit": {
"type": "object",
"properties": {
"min_acc": {
"type": "number",
"description": "Minimum deceleration limit [m/s²].",
"default": -2.5,
"minimum": -10.0,
"maximum": 0.0
},
"max_acc": {
"type": "number",
"description": "Maximum acceleration limit [m/s²].",
"default": 1.0,
"minimum": 0.0,
"maximum": 10.0
},
"min_jerk": {
"type": "number",
"description": "Minimum jerk limit [m/s³].",
"default": -1.5,
"minimum": -10.0,
"maximum": 0.0
},
"max_jerk": {
"type": "number",
"description": "Maximum jerk limit [m/s³].",
"default": 1.5,
"minimum": 0.0,
"maximum": 10.0
}
},
"required": ["min_acc", "max_acc", "min_jerk", "max_jerk"],
"additionalProperties": false
}
},
"required": ["max_vel", "normal", "slow_down", "limit"],
"additionalProperties": false
}
},
"properties": {
"/**": {
"type": "object",
"properties": {
"ros__parameters": {
"$ref": "#/definitions/deafult_common"

Check warning on line 116 in planning/autoware_obstacle_cruise_planner/schema/default_common.schema.json

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (deafult)
}
},
"required": ["ros__parameters"],
"additionalProperties": false
}
},
"required": ["/**"],
"additionalProperties": false
}
Loading
Loading