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

feat: first draft proposal implementation for handling invalid lanelets #235

Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
launch_run_out: false
launch_speed_bump: false
launch_out_of_lane: true
launch_no_drivable_lane: false
forward_path_length: 1000.0
backward_path_length: 5.0
stop_line_extend_length: 5.0
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/**:
ros__parameters:
no_drivable_lane:
stop_margin: 1.5 # Stop margin before the no drivable lane [m]
print_debug_info: false
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@
<arg name="run_out_param_path" value="$(var behavior_velocity_config_path)/run_out.param.yaml"/>
<arg name="speed_bump_param_path" value="$(var behavior_velocity_config_path)/speed_bump.param.yaml"/>
<arg name="out_of_lane_param_path" value="$(var behavior_velocity_config_path)/out_of_lane.param.yaml"/>
<arg name="no_drivable_lane_param_path" value="$(var behavior_velocity_config_path)/no_drivable_lane.param.yaml"/>
<arg name="behavior_velocity_planner_param_path" value="$(var behavior_velocity_config_path)/behavior_velocity_planner.param.yaml"/>

<!-- parking -->
Expand Down
24 changes: 24 additions & 0 deletions autoware_launch/rviz/autoware.rviz
Original file line number Diff line number Diff line change
Expand Up @@ -1639,6 +1639,18 @@ Visualization Manager:
Reliability Policy: Reliable
Value: /planning/scenario_planning/lane_driving/behavior_planning/behavior_velocity_planner/virtual_wall/out_of_lane
Value: true
- Class: rviz_default_plugins/MarkerArray
Enabled: true
Name: VirtualWall (NoDrivableLane)
Namespaces:
{}
Topic:
Depth: 5
Durability Policy: Volatile
History Policy: Keep Last
Reliability Policy: Reliable
Value: /planning/scenario_planning/lane_driving/behavior_planning/behavior_velocity_planner/virtual_wall/no_drivable_lane
Value: true
Enabled: true
Name: VirtualWall
- Class: rviz_common/Group
Expand Down Expand Up @@ -1909,6 +1921,18 @@ Visualization Manager:
Reliability Policy: Reliable
Value: /planning/scenario_planning/lane_driving/behavior_planning/behavior_path_planner/debug/dynamic_avoidance
Value: false
- Class: rviz_default_plugins/MarkerArray
Enabled: false
Name: NoDrivableLane
Namespaces:
{}
Topic:
Depth: 5
Durability Policy: Volatile
History Policy: Keep Last
Reliability Policy: Reliable
Value: /planning/scenario_planning/lane_driving/behavior_planning/behavior_velocity_planner/debug/no_drivable_lane
Value: false
Enabled: false
Name: DebugMarker
- Class: rviz_common/Group
Expand Down