Skip to content

Commit

Permalink
Fixed to reduce diff
Browse files Browse the repository at this point in the history
Signed-off-by: Shintaro Sakoda <[email protected]>
  • Loading branch information
SakodaShintaro committed Dec 20, 2024
1 parent a2b9c00 commit 8fd160b
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions common_sensor_launch/launch/nebula_node_container.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,10 +202,7 @@ def create_parameter_dict(*args):
plugin="autoware::pointcloud_preprocessor::DistortionCorrectorComponent",
name="distortion_corrector_node",
remappings=[
(
"~/input/twist",
"/sensing/vehicle_velocity_converter/twist_with_covariance",
),
("~/input/twist", "/sensing/vehicle_velocity_converter/twist_with_covariance"),
("~/input/imu", "/sensing/imu/imu_data"),
("~/input/pointcloud", "mirror_cropped/pointcloud_ex"),
("~/output/pointcloud", "rectified/pointcloud_ex"),
Expand All @@ -219,7 +216,8 @@ def create_parameter_dict(*args):
if LaunchConfiguration("output_as_sensor_frame").perform(context).lower() == "true":
ring_outlier_output_frame = {"output_frame": LaunchConfiguration("frame_id")}
else:
ring_outlier_output_frame = {"output_frame": ""} # keep the output frame as the input frame
# keep the output frame as the input frame
ring_outlier_output_frame = {"output_frame": ""}
nodes.append(
ComposableNode(
package="autoware_pointcloud_preprocessor",
Expand Down

0 comments on commit 8fd160b

Please sign in to comment.