Skip to content

Commit c50da1e

Browse files
Merge pull request #1788 from tier4/sync-awf-latest
chore: sync awf-latest
2 parents 7a3af04 + bad4ec5 commit c50da1e

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

planning/motion_velocity_planner/autoware_motion_velocity_planner_common_universe/package.xml

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77

88
<maintainer email="maxime.clement@tier4.jp">Maxime Clement</maintainer>
99
<maintainer email="alqudah.mohammad@tier4.jp">Alqudah Mohammad</maintainer>
10+
<maintainer email="takayuki.murooka@tier4.jp">Takayuki Murooka</maintainer>
11+
<maintainer email="yuki.takagi@tier4.jp">Yuki Takagi</maintainer>
1012

1113
<license>Apache License 2.0</license>
1214

planning/motion_velocity_planner/autoware_motion_velocity_planner_common_universe/src/utils.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ double calc_possible_min_dist_from_obj_to_traj_poly(
169169
const double object_possible_max_dist =
170170
calc_object_possible_max_dist_from_center(object->predicted_object.shape);
171171
const double possible_min_dist_to_traj_poly =
172-
std::abs(object->get_dist_to_traj_lateral(traj_points)) - vehicle_info.vehicle_width_m -
172+
std::abs(object->get_dist_to_traj_lateral(traj_points)) - vehicle_info.vehicle_width_m / 2.0 -
173173
object_possible_max_dist;
174174
return possible_min_dist_to_traj_poly;
175175
}
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
/**:
22
ros__parameters:
33
topic: "/default"
4-
topic_type: "std_msgs/msg/String" # unneccessary for /tf or /tf_static
4+
topic_type: "std_msgs/msg/String" # unnecessary for /tf or /tf_static
55
remap_topic: "/remap_default"
6-
#frame_id: neccessary for /tf or /tf_static
7-
#child_frame_id: neccessary for /tf or /tf_static
6+
#frame_id: necessary for /tf or /tf_static
7+
#child_frame_id: necessary for /tf or /tf_static
88
qos_depth: 1
99
transient_local: false # Change qos to transient_local. Default is volatile.
1010
best_effort: false # Change qos to best_effort. Default is reliable.
1111
enable_relay_control: true
12-
srv_name: "/system/topic_relay_controller_default/operate" # neccessary for enable_relay_control is true
12+
srv_name: "/system/topic_relay_controller_default/operate" # necessary for enable_relay_control is true
1313
enable_keep_publishing: false
14-
#update_rate: #neccessary for enable_keep_publishing is true
14+
#update_rate: #necessary for enable_keep_publishing is true

0 commit comments

Comments
 (0)