Skip to content

Commit

Permalink
feat(aip_x1_launch): rename some topics
Browse files Browse the repository at this point in the history
Signed-off-by: 1222-takeshi <[email protected]>
  • Loading branch information
1222-takeshi committed Feb 16, 2024
1 parent b42ff60 commit 199563e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion aip_x1_launch/launch/new_livox_horizon.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def get_crop_box_min_range_component(context, livox_frame_id):
name="crop_box_filter_min_range",
remappings=[
("input", "livox/tag_filtered/lidar" if use_tag_filter else "livox/lidar"),
("output", "min_range_cropped/pointcloud"),
("output", "pointcloud"),
],
parameters=[
{
Expand Down
6 changes: 3 additions & 3 deletions aip_x1_launch/launch/pointcloud_preprocessor.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ def launch_setup(context, *args, **kwargs):
{
"input_topics": [
"/sensing/lidar/top/pointcloud",
"/sensing/lidar/front_left/min_range_cropped/pointcloud",
"/sensing/lidar/front_right/min_range_cropped/pointcloud",
"/sensing/lidar/front_center/min_range_cropped/pointcloud",
"/sensing/lidar/front_left/pointcloud",
"/sensing/lidar/front_right/pointcloud",
"/sensing/lidar/front_center/pointcloud",
],
"output_frame": LaunchConfiguration("base_frame"),
"timeout_sec": 1.0,
Expand Down
6 changes: 3 additions & 3 deletions aip_x1_launch/launch/topic_state_monitor.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def generate_launch_description():
name="topic_state_monitor_livox_front_left_min_range_cropped",
parameters=[
{
"topic": "/sensing/lidar/front_left/min_range_cropped/pointcloud",
"topic": "/sensing/lidar/front_left/pointcloud",
"topic_type": "sensor_msgs/msg/PointCloud2",
"best_effort": True,
"diag_name": "sensing_topic_status",
Expand All @@ -117,7 +117,7 @@ def generate_launch_description():
name="topic_state_monitor_livox_front_right_min_range_cropped",
parameters=[
{
"topic": "/sensing/lidar/front_right/min_range_cropped/pointcloud",
"topic": "/sensing/lidar/front_right/pointcloud",
"topic_type": "sensor_msgs/msg/PointCloud2",
"best_effort": True,
"diag_name": "sensing_topic_status",
Expand All @@ -135,7 +135,7 @@ def generate_launch_description():
name="topic_state_monitor_livox_front_center_min_range_cropped",
parameters=[
{
"topic": "/sensing/lidar/front_center/min_range_cropped/pointcloud",
"topic": "/sensing/lidar/front_center/pointcloud",
"topic_type": "sensor_msgs/msg/PointCloud2",
"best_effort": True,
"diag_name": "sensing_topic_status",
Expand Down
2 changes: 1 addition & 1 deletion aip_x1_launch/launch/velodyne_node_container.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def create_parameter_dict(*args):
# set container to run all required components in the same process
container = ComposableNodeContainer(
# need unique name, otherwise all processes in same container and the node names then clash
name="velodyne_node_container",
name="pointcloud_container",
namespace="pointcloud_preprocessor",
package="rclcpp_components",
executable=LaunchConfiguration("container_executable"),
Expand Down

0 comments on commit 199563e

Please sign in to comment.