From 491c77620c74f3681684672ff48e8eebba8be4ca Mon Sep 17 00:00:00 2001 From: "tier4-autoware-public-bot[bot]" <98652886+tier4-autoware-public-bot[bot]@users.noreply.github.com> Date: Thu, 5 Dec 2024 11:17:53 +0900 Subject: [PATCH] chore: sync awf-latest (#701) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * refactor(system_diagnostic_monitor, dummy_diag_publisher, diagnostic_graph_aggregator): combine diag list setting directories (#1253) Signed-off-by: yuki-takagi-66 * feat(object_lanelet_filter): add configurable margin for object lanel… (#1210) feat(object_lanelet_filter): add configurable margin for object lanelet filter Signed-off-by: Sebastian Zęderowski Co-authored-by: Sebastian Zęderowski * fix(rviz): fix a bug about visualizing ego model (#1257) fix a visulization bug. Signed-off-by: temkei.kem <1041084556@qq.com> * refactor(glog_component): prefix package and namespace with autoware (#1245) Signed-off-by: Esteve Fernandez * refactor(global_parameter_loader): prefix package and namespace with autoware (#1246) Signed-off-by: Esteve Fernandez * feat(lane_change): add new lane change parameter (#1224) * add minimum prepare duration parameter Signed-off-by: mohammad alqudah * increase min_prepare_duration to 1.0 s Signed-off-by: mohammad alqudah * increase min prepare duration value, add new parameter Signed-off-by: mohammad alqudah --------- Signed-off-by: mohammad alqudah --------- Signed-off-by: yuki-takagi-66 Signed-off-by: Sebastian Zęderowski Signed-off-by: temkei.kem <1041084556@qq.com> Signed-off-by: Esteve Fernandez Signed-off-by: mohammad alqudah Co-authored-by: Yuki TAKAGI <141538661+yuki-takagi-66@users.noreply.github.com> Co-authored-by: Sebastian Zęderowski Co-authored-by: Sebastian Zęderowski Co-authored-by: Kem (TiankuiXian) <1041084556@qq.com> Co-authored-by: Esteve Fernandez <33620+esteve@users.noreply.github.com> Co-authored-by: mkquda <168697710+mkquda@users.noreply.github.com> --- .../lane_change/lane_change.param.yaml | 4 +++- autoware_launch/config/system/diagnostics/control.yaml | 6 ------ autoware_launch/launch/autoware.launch.xml | 4 ++-- .../launch/components/tier4_system_component.launch.xml | 4 ++-- autoware_launch/launch/e2e_simulator.launch.xml | 2 +- autoware_launch/launch/logging_simulator.launch.xml | 2 +- autoware_launch/launch/planning_simulator.launch.xml | 2 +- autoware_launch/launch/pointcloud_container.launch.py | 2 +- autoware_launch/package.xml | 2 +- 9 files changed, 12 insertions(+), 16 deletions(-) diff --git a/autoware_launch/config/planning/scenario_planning/lane_driving/behavior_planning/behavior_path_planner/lane_change/lane_change.param.yaml b/autoware_launch/config/planning/scenario_planning/lane_driving/behavior_planning/behavior_path_planner/lane_change/lane_change.param.yaml index fe8915c784..27349f077d 100644 --- a/autoware_launch/config/planning/scenario_planning/lane_driving/behavior_planning/behavior_path_planner/lane_change/lane_change.param.yaml +++ b/autoware_launch/config/planning/scenario_planning/lane_driving/behavior_planning/behavior_path_planner/lane_change/lane_change.param.yaml @@ -11,7 +11,8 @@ # trajectory generation trajectory: - prepare_duration: 4.0 + max_prepare_duration: 4.0 + min_prepare_duration: 2.0 lateral_jerk: 0.5 min_longitudinal_acc: -1.0 max_longitudinal_acc: 1.0 @@ -20,6 +21,7 @@ min_lane_changing_velocity: 2.78 lon_acc_sampling_num: 5 lat_acc_sampling_num: 3 + lane_changing_decel_factor: 0.5 # delay lane change delay_lane_change: diff --git a/autoware_launch/config/system/diagnostics/control.yaml b/autoware_launch/config/system/diagnostics/control.yaml index 6a04ed6714..5551ed4575 100644 --- a/autoware_launch/config/system/diagnostics/control.yaml +++ b/autoware_launch/config/system/diagnostics/control.yaml @@ -9,7 +9,6 @@ units: - { type: link, link: /autoware/control/performance_monitoring/lane_departure } - { type: link, link: /autoware/control/performance_monitoring/trajectory_deviation } - { type: link, link: /autoware/control/performance_monitoring/control_state } - - { type: link, link: /autoware/control/collision_detector } - path: /autoware/control/local type: and @@ -67,8 +66,3 @@ units: type: diag node: external_cmd_converter name: remote_control_topic_status - - - path: /autoware/control/collision_detector - type: diag - node: collision_detector - name: collision_detect diff --git a/autoware_launch/launch/autoware.launch.xml b/autoware_launch/launch/autoware.launch.xml index e22cd542f7..b125d23186 100644 --- a/autoware_launch/launch/autoware.launch.xml +++ b/autoware_launch/launch/autoware.launch.xml @@ -37,7 +37,7 @@ - + @@ -52,7 +52,7 @@ - + diff --git a/autoware_launch/launch/components/tier4_system_component.launch.xml b/autoware_launch/launch/components/tier4_system_component.launch.xml index a94960d8bf..e729fef464 100644 --- a/autoware_launch/launch/components/tier4_system_component.launch.xml +++ b/autoware_launch/launch/components/tier4_system_component.launch.xml @@ -1,7 +1,7 @@ - + @@ -14,7 +14,7 @@ - + diff --git a/autoware_launch/launch/e2e_simulator.launch.xml b/autoware_launch/launch/e2e_simulator.launch.xml index 03044cf090..c4fd15b41c 100644 --- a/autoware_launch/launch/e2e_simulator.launch.xml +++ b/autoware_launch/launch/e2e_simulator.launch.xml @@ -71,7 +71,7 @@ - + diff --git a/autoware_launch/launch/logging_simulator.launch.xml b/autoware_launch/launch/logging_simulator.launch.xml index ad11e90bdf..123bd01ed3 100644 --- a/autoware_launch/launch/logging_simulator.launch.xml +++ b/autoware_launch/launch/logging_simulator.launch.xml @@ -65,7 +65,7 @@ - + diff --git a/autoware_launch/launch/planning_simulator.launch.xml b/autoware_launch/launch/planning_simulator.launch.xml index 3e0ed8d20c..3c56e11412 100644 --- a/autoware_launch/launch/planning_simulator.launch.xml +++ b/autoware_launch/launch/planning_simulator.launch.xml @@ -70,7 +70,7 @@ - + diff --git a/autoware_launch/launch/pointcloud_container.launch.py b/autoware_launch/launch/pointcloud_container.launch.py index 650e555e27..d7e31a3e9b 100644 --- a/autoware_launch/launch/pointcloud_container.launch.py +++ b/autoware_launch/launch/pointcloud_container.launch.py @@ -39,7 +39,7 @@ def add_launch_arg(name: str, default_value=None): ) glog_component = ComposableNode( - package="glog_component", + package="autoware_glog_component", plugin="GlogComponent", name="glog_component", namespace="pointcloud_container", diff --git a/autoware_launch/package.xml b/autoware_launch/package.xml index 678c08d7b6..52101d1034 100644 --- a/autoware_launch/package.xml +++ b/autoware_launch/package.xml @@ -12,7 +12,7 @@ ament_cmake_auto ad_api_adaptors - global_parameter_loader + autoware_global_parameter_loader python3-bson python3-tornado rviz2