File tree 3 files changed +3
-3
lines changed
behavior_path_avoidance_by_lane_change_module/src
behavior_path_avoidance_module
include/behavior_path_avoidance_module
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ void AvoidanceByLaneChangeModuleManager::init(rclcpp::Node * node)
132
132
}
133
133
134
134
{
135
- const std::string ns = " avoidance.target_filtering.force_avoidance ." ;
135
+ const std::string ns = " avoidance.target_filtering.avoidance_for_ambiguous_vehicle ." ;
136
136
p.enable_force_avoidance_for_stopped_vehicle =
137
137
getOrDeclareParameter<bool >(*node, ns + " enable" );
138
138
p.threshold_time_force_avoidance_for_stopped_vehicle =
Original file line number Diff line number Diff line change 153
153
backward_distance : 10.0 # [m]
154
154
155
155
# params for avoidance of vehicle type objects that are ambiguous as to whether they are parked.
156
- force_avoidance :
156
+ avoidance_for_ambiguous_vehicle :
157
157
enable : false # [-]
158
158
time_threshold : 1.0 # [s]
159
159
distance_threshold : 1.0 # [m]
Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ AvoidanceParameters getParameter(rclcpp::Node * node)
140
140
}
141
141
142
142
{
143
- const std::string ns = " avoidance.target_filtering.force_avoidance ." ;
143
+ const std::string ns = " avoidance.target_filtering.avoidance_for_ambiguous_vehicle ." ;
144
144
p.enable_force_avoidance_for_stopped_vehicle =
145
145
getOrDeclareParameter<bool >(*node, ns + " enable" );
146
146
p.threshold_time_force_avoidance_for_stopped_vehicle =
You can’t perform that action at this time.
0 commit comments