diff --git a/awsim_labs_sensor_kit_launch/config/concatenate_and_time_sync_node.param.yaml b/awsim_labs_sensor_kit_launch/config/concatenate_and_time_sync_node.param.yaml deleted file mode 100644 index 3605ef5..0000000 --- a/awsim_labs_sensor_kit_launch/config/concatenate_and_time_sync_node.param.yaml +++ /dev/null @@ -1,22 +0,0 @@ -/**: - ros__parameters: - debug_mode: false - has_static_tf_only: false - rosbag_replay: false - rosbag_length: 20.0 - maximum_queue_size: 5 - timeout_sec: 0.2 - is_motion_compensated: false - publish_synchronized_pointcloud: true - keep_input_frame_in_synchronized_pointcloud: true - publish_previous_but_late_pointcloud: false - synchronized_pointcloud_postfix: pointcloud - input_twist_topic_type: twist - input_topics: [ - "/sensing/lidar/right/pointcloud_before_sync", # 0.05 - "/sensing/lidar/top/pointcloud_before_sync", # 0.05 - "/sensing/lidar/left/pointcloud_before_sync", # 0.05 - ] - output_frame: base_link - lidar_timestamp_offsets: [0.0, 0.0, 0.0] - lidar_timestamp_noise_window: [0.01, 0.01, 0.01] diff --git a/awsim_labs_sensor_kit_launch/launch/pointcloud_preprocessor.launch.py b/awsim_labs_sensor_kit_launch/launch/pointcloud_preprocessor.launch.py index 4f23c70..d878914 100644 --- a/awsim_labs_sensor_kit_launch/launch/pointcloud_preprocessor.launch.py +++ b/awsim_labs_sensor_kit_launch/launch/pointcloud_preprocessor.launch.py @@ -65,7 +65,7 @@ def generate_launch_description(): def add_launch_arg(name: str, default_value=None): launch_arguments.append(DeclareLaunchArgument(name, default_value=default_value)) - awsim_labs_sensor_kit_launch_share_dir = get_package_share_directory("awsim_labs_sensor_kit_launch") + individual_params_share_dir = get_package_share_directory("individual_params") add_launch_arg("use_multithread", "False") add_launch_arg("use_intra_process", "False") @@ -73,8 +73,8 @@ def add_launch_arg(name: str, default_value=None): add_launch_arg( "concatenate_and_time_sync_node_param_path", os.path.join( - awsim_labs_sensor_kit_launch_share_dir, - "config", + individual_params_share_dir, + "config/default/awsim_labs_sensor_kit", "concatenate_and_time_sync_node.param.yaml", ), )