Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(ekf_localizer): add autoware prefix to ekf_localizer #119

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
</group>

<group>
<include file="$(find-pkg-share gyro_odometer)/launch/gyro_odometer.launch.xml">
<include file="$(find-pkg-share autoware_gyro_odometer)/launch/gyro_odometer.launch.xml">
<arg name="input_imu_topic" value="$(var out_imu)"/>
<arg name="input_vehicle_twist_with_covariance_topic" value="$(var out_wheel_odometry)"/>
<arg name="output_twist_with_covariance_topic" value="$(var out_twist_with_covariance)"/>
Expand All @@ -76,7 +76,7 @@

<group>
<push-ros-namespace namespace="dead_reckoning"/>
<include file="$(find-pkg-share ekf_localizer)/launch/ekf_localizer.launch.xml">
<include file="$(find-pkg-share autoware_ekf_localizer)/launch/ekf_localizer.launch.xml">
<arg name="input_pose_with_cov_name" value="$(var out_pose_with_covariance_dr)"/>
<arg name="input_twist_with_cov_name" value="$(var out_twist_with_covariance)"/>
<arg name="input_initial_pose_name" value="$(var out_init_pose_with_covariance)"/>
Expand All @@ -90,7 +90,7 @@

<group>
<push-ros-namespace namespace="ground_truth"/>
<include file="$(find-pkg-share ekf_localizer)/launch/ekf_localizer.launch.xml">
<include file="$(find-pkg-share autoware_ekf_localizer)/launch/ekf_localizer.launch.xml">
<arg name="input_pose_with_cov_name" value="$(var out_pose_with_covariance_gt)"/>
<arg name="input_twist_with_cov_name" value="$(var out_twist_with_covariance)"/>
<arg name="input_initial_pose_name" value="$(var out_init_pose_with_covariance)"/>
Expand Down
Loading