diff --git a/autoware_launch/config/planning/scenario_planning/lane_driving/behavior_planning/behavior_path_planner/drivable_area_expansion.param.yaml b/autoware_launch/config/planning/scenario_planning/lane_driving/behavior_planning/behavior_path_planner/drivable_area_expansion.param.yaml index 160ebdc180..706a4fc2e4 100644 --- a/autoware_launch/config/planning/scenario_planning/lane_driving/behavior_planning/behavior_path_planner/drivable_area_expansion.param.yaml +++ b/autoware_launch/config/planning/scenario_planning/lane_driving/behavior_planning/behavior_path_planner/drivable_area_expansion.param.yaml @@ -8,6 +8,7 @@ # Dynamic expansion by projecting the ego footprint along the path dynamic_expansion: enabled: false + debug_print: false # if true, print some debug runtime measurements ego: extra_footprint_offset: front: 0.5 # [m] extra length to add to the front of the ego footprint @@ -15,7 +16,7 @@ left: 0.5 # [m] extra length to add to the left of the ego footprint right: 0.5 # [m] extra length to add to the rear of the ego footprint dynamic_objects: - avoid: true # if true, the drivable area is not expanded in the predicted path of dynamic objects + avoid: false # if true, the drivable area is not expanded in the predicted path of dynamic objects extra_footprint_offset: front: 0.5 # [m] extra length to add to the front of the dynamic object footprint rear: 0.5 # [m] extra length to add to the rear of the dynamic object footprint @@ -37,3 +38,7 @@ compensate: enable: true # if true, when the drivable area cannot be expanded in one direction to completely include the ego footprint, it is expanded in the opposite direction extra_distance: 3.0 # [m] extra distance to add to the compensation + replan_checker: + enable: true # if true, only recalculate the expanded drivable area when the path or its original drivable area change significantly + # not compatible with dynamic_objects.avoid + max_deviation: 0.5 # [m] full replan is only done if the path changes by more than this distance