Skip to content

Commit

Permalink
Undo conditional branch of stop_check_enabled
Browse files Browse the repository at this point in the history
Signed-off-by: Ryohei Sasaki <[email protected]>
  • Loading branch information
rsasaki0109 committed Mar 9, 2023
1 parent ba6a71d commit fded6ce
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions launch/tier4_localization_launch/launch/util/util.launch.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,11 @@
<!-- Topics -->
<arg name="input/pointcloud" description="input topic name"/>
<arg name="output/pointcloud" default="downsample/pointcloud" description="final output topic name"/>
<arg name="stop_check_enabled" default="true"/>

<let name="ndt_enabled" value="true" if="$(eval &quot;'$(var pose_estimator_mode)'=='lidar'&quot;)"/>
<let name="ndt_enabled" value="false" if="$(eval &quot;'$(var pose_estimator_mode)'=='gnss'&quot;)"/>
<let name="gnss_pose_cov" value="/sensing/gnss/pose_with_covariance" if="$(eval &quot;'$(var pose_estimator_mode)'=='lidar'&quot;)"/>
<let name="gnss_pose_cov" value="/localization/pose_estimator/pose_with_covariance" if="$(eval &quot;'$(var pose_estimator_mode)'=='gnss'&quot;)"/>
<let name="stop_check_enabled" value="false" if="$(eval &quot;'$(var pose_estimator_mode)'=='gnss'&quot;)"/>
<!-- container -->
<arg name="use_pointcloud_container" default="True" description="launch pointcloud container"/>
<arg name="pointcloud_container_name" default="/pointcloud_container" description="container name"/>
Expand All @@ -22,7 +20,7 @@
<arg name="gnss_enabled" value="true"/>
<arg name="ndt_enabled" value="$(var ndt_enabled)"/>
<arg name="ekf_enabled" value="true"/>
<arg name="stop_check_enabled" value="$(var stop_check_enabled)"/>
<arg name="stop_check_enabled" value="true"/>
<arg name="gnss_pose_cov" value="$(var gnss_pose_cov)"/>
</include>

Expand Down

0 comments on commit fded6ce

Please sign in to comment.