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

docs(lane_change): use json schema #9883

Closed
Closed
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -1044,16 +1044,7 @@ The following parameters are used to configure terminal lane change path feature

The following parameters are configurable in `lane_change.param.yaml`.

| Name | Unit | Type | Description | Default value |
| :------------------------------------- | ------- | ------- | ---------------------------------------------------------------------------------------------------------------- | ------------- |
| `cancel.enable_on_prepare_phase` | [-] | boolean | Enable cancel lane change | true |
| `cancel.enable_on_lane_changing_phase` | [-] | boolean | Enable abort lane change. | false |
| `cancel.delta_time` | [s] | double | The time taken to start steering to return to the center line. | 3.0 |
| `cancel.duration` | [s] | double | The time taken to complete returning to the center line. | 3.0 |
| `cancel.max_lateral_jerk` | [m/sss] | double | The maximum lateral jerk for abort path | 1000.0 |
| `cancel.overhang_tolerance` | [m] | double | Lane change cancel is prohibited if the vehicle head exceeds the lane boundary more than this tolerance distance | 0.0 |
| `cancel.unsafe_hysteresis_threshold` | [-] | int | threshold that helps prevent frequent switching between safe and unsafe decisions | 10 |
| `cancel.deceleration_sampling_num` | [-] | int | Number of deceleration patterns to check safety to cancel lane change | 5 |
{{ json_to_markdown("planning/behavior_path_planner/autoware_behavior_path_lane_change_module/schema/lane_change_abort.schema.json") }}

### Debug

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "lane_change_abort",
"type": "object",
"definitions": {
"behavior_path_lane_change_module": {
"type": "object",
"properties": {
"cancel": {
"type": "object",
"properties": {
"enable_on_prepare_phase": {
"type": "boolean",
"units": "s",
"description": "Enable cancel lane change.",
"default": true
},
"enable_on_lane_changing_phase": {
"type": "boolean",
"units": "s",
"description": "Enable abort lane change.",
"default": true
},
"overhang_tolerance": {
"type": "number",
"units": "s",
"description": "Threshold to determine ego vehicle diverges from the current lane.",
"default": 0.0,
"minimum": 0.0
},
"delta_time": {
"type": "number",
"units": "s",
"description": "The time taken to start steering to return to the center line.",
"default": 2.0,
"minimum": 1.0,
"maximum": 3.0
},
"duration": {
"type": "number",
"units": "s",
"description": "The time taken to complete returning to the center line.",
"default": 2.0,
"minimum": 1.0,
"maximum": 3.0
},
"max_lateral_jerk": {
"type": "number",
"units": "m/s³",
"description": "The maximum lateral jerk for abort path.",
"default": 1000.0
},
"unsafe_hysteresis_threshold": {
"type": "integer",
"description": "Threshold to determine ego vehicle diverges from the current lane.",
"default": 5,
"minimum": 1
},
"deceleration_sampling_num": {
"type": "integer",
"units": "m/s³",
"description": "Number of samples used for deceleration.",
"default": 5,
"minimum": 1
}
},
"required": [
"enable_on_prepare_phase",
"enable_on_lane_changing_phase",
"overhang_tolerance",
"delta_time",
"duration",
"max_lateral_jerk",
"unsafe_hysteresis_threshold",
"deceleration_sampling_num"
],
"additionalProperties": false
}
},
"required": ["cancel"],
"additionalProperties": false
}
},
"properties": {
"/**": {
"type": "object",
"properties": {
"ros__parameters": {
"type": "object",
"properties": {
"lane_change": {
"$ref": "#/definitions/behavior_path_lane_change_module"
}
},
"required": ["lane_change"],
"additionalProperties": false
}
},
"required": ["ros__parameters"],
"additionalProperties": false
}
},
"required": ["/**"],
"additionalProperties": false
}
Loading