Skip to content

Commit cb266c4

Browse files
authored
refactor(static_obstacle_avoidance): organize params for drivable lane (#1042)
Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
1 parent d26150e commit cb266c4

File tree

1 file changed

+6
-2
lines changed
  • autoware_launch/config/planning/scenario_planning/lane_driving/behavior_planning/behavior_path_planner/autoware_behavior_path_static_obstacle_avoidance_module

1 file changed

+6
-2
lines changed

autoware_launch/config/planning/scenario_planning/lane_driving/behavior_planning/behavior_path_planner/autoware_behavior_path_static_obstacle_avoidance_module/static_obstacle_avoidance.param.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,13 @@
55
resample_interval_for_planning: 0.3 # [m] FOR DEVELOPER
66
resample_interval_for_output: 4.0 # [m] FOR DEVELOPER
77

8+
# drivable lane setting. this module is able to use not only current lane but also right/left lane
9+
# if the current lane(=lanelet::Lanelet) and the right/left lane share the boundary(=lanelet::Linestring) in HDMap.
10+
# "current_lane" : use only current lane. this module doesn't use adjacent lane to avoid object.
11+
# "same_direction_lane" : this module uses same direction lane to avoid object if need.
12+
# "opposite_direction_lane": this module uses both same direction and opposite direction lane.
13+
use_lane_type: "opposite_direction_lane"
814
# drivable area setting
9-
use_adjacent_lane: true
10-
use_opposite_lane: true
1115
use_intersection_areas: true
1216
use_hatched_road_markings: true
1317
use_freespace_areas: true

0 commit comments

Comments
 (0)