Skip to content

Commit

Permalink
Add an pose_source argument in the autoware.launch.xml.
Browse files Browse the repository at this point in the history
  • Loading branch information
jerry73204 committed Sep 24, 2024
1 parent 0df7034 commit 2d4ff2a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion autoware_launch/launch/autoware.launch.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@
<!-- Auto mode setting-->
<arg name="enable_all_modules_auto_mode" default="false" description="enable all module's auto mode"/>
<arg name="is_simulation" default="false" description="Autoware's behavior will change depending on whether this is a simulation or not."/>
<!-- Localization-->
<arg name="pose_source" default="ndt" description="component for localization"/>

<!-- Global parameters -->
<group scoped="false">
Expand Down Expand Up @@ -92,7 +94,9 @@

<!-- Localization -->
<group if="$(var launch_localization)">
<include file="$(find-pkg-share autoware_launch)/launch/components/tier4_localization_component.launch.xml"/>
<include file="$(find-pkg-share autoware_launch)/launch/components/tier4_localization_component.launch.xml">
<arg name="pose_source" value="$(var pose_source)"/>
</include>
</group>

<!-- Perception -->
Expand Down

0 comments on commit 2d4ff2a

Please sign in to comment.