Skip to content

Commit

Permalink
Fix invalid attribute in gnss launch (autowarefoundation#191)
Browse files Browse the repository at this point in the history
Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>
  • Loading branch information
wep21 authored Apr 10, 2021
1 parent 443a524 commit 33a6efd
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
3 changes: 2 additions & 1 deletion sensing_launch/launch/aip_customized/gnss.launch.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<launch>

<arg name="launch_driver" default="true" />
<arg name="coordinate_system" default="1" description="0:UTM, 1:MGRS, 2:PLANE" />

<group>
<push-ros-namespace namespace="gnss"/>
Expand All @@ -21,7 +22,7 @@
<arg name="output_topic_gnss_pose_cov" value="pose_with_covariance" />
<arg name="output_topic_gnss_fixed" value="fixed" />

<arg name="coordinate_system" value="1" description="0:UTM, 1:MGRS, 2:PLANE" />
<arg name="coordinate_system" value="$(var coordinate_system)" />
<arg name="use_ublox_receiver" value="true" />

<arg name="gnss_frame" value="gnss_link" />
Expand Down
3 changes: 2 additions & 1 deletion sensing_launch/launch/aip_s1/gnss.launch.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<launch>

<arg name="launch_driver" default="true" />
<arg name="coordinate_system" default="1" description="0:UTM, 1:MGRS, 2:PLANE" />

<group>
<push-ros-namespace namespace="gnss"/>
Expand All @@ -21,7 +22,7 @@
<arg name="output_topic_gnss_pose_cov" value="pose_with_covariance" />
<arg name="output_topic_gnss_fixed" value="fixed" />

<arg name="coordinate_system" value="1" description="0:UTM, 1:MGRS, 2:PLANE" />
<arg name="coordinate_system" value="$(var coordinate_system)" />
<arg name="use_ublox_receiver" value="true" />

<arg name="gnss_frame" value="gnss_link" />
Expand Down
3 changes: 2 additions & 1 deletion sensing_launch/launch/aip_x1/gnss.launch.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

<arg name="use_gnss" default="false" />
<arg name="launch_driver" default="true" />
<arg name="coordinate_system" default="1" description="0:UTM, 1:MGRS, 2:PLANE" />

<group if="$(var use_gnss)">
<push-ros-namespace namespace="gnss"/>
Expand All @@ -22,7 +23,7 @@
<arg name="output_topic_gnss_pose_cov" value="pose_with_covariance" />
<arg name="output_topic_gnss_fixed" value="fixed" />

<arg name="coordinate_system" value="1" description="0:UTM, 1:MGRS, 2:PLANE" />
<arg name="coordinate_system" value="$(var coordinate_system)" />
<arg name="use_ublox_receiver" value="true" />

<arg name="gnss_frame" value="gnss_link" />
Expand Down
3 changes: 2 additions & 1 deletion sensing_launch/launch/aip_x2/gnss.launch.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<launch>

<arg name="launch_driver" default="true" />
<arg name="coordinate_system" default="1" description="0:UTM, 1:MGRS, 2:PLANE" />

<group>
<push-ros-namespace namespace="gnss"/>
Expand All @@ -21,7 +22,7 @@
<arg name="output_topic_gnss_pose_cov" value="pose_with_covariance" />
<arg name="output_topic_gnss_fixed" value="fixed" />

<arg name="coordinate_system" value="1" description="0:UTM, 1:MGRS, 2:PLANE" />
<arg name="coordinate_system" value="$(var coordinate_system)" />
<arg name="use_ublox_receiver" value="true" />

<arg name="gnss_frame" value="gnss_link" />
Expand Down
3 changes: 2 additions & 1 deletion sensing_launch/launch/aip_xx1/gnss.launch.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<launch>

<arg name="launch_driver" default="true" />
<arg name="coordinate_system" default="1" description="0:UTM, 1:MGRS, 2:PLANE" />

<group>
<push-ros-namespace namespace="gnss"/>
Expand All @@ -21,7 +22,7 @@
<arg name="output_topic_gnss_pose_cov" value="pose_with_covariance" />
<arg name="output_topic_gnss_fixed" value="fixed" />

<arg name="coordinate_system" value="1" description="0:UTM, 1:MGRS, 2:PLANE" />
<arg name="coordinate_system" value="$(var coordinate_system)" />
<arg name="use_ublox_receiver" value="true" />

<arg name="gnss_frame" value="gnss_link" />
Expand Down
3 changes: 2 additions & 1 deletion sensing_launch/launch/aip_xx2/gnss.launch.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<launch>

<arg name="launch_driver" default="true" />
<arg name="coordinate_system" default="1" description="0:UTM, 1:MGRS, 2:PLANE" />

<group>
<push-ros-namespace namespace="gnss"/>
Expand All @@ -21,7 +22,7 @@
<arg name="output_topic_gnss_pose_cov" value="pose_with_covariance" />
<arg name="output_topic_gnss_fixed" value="fixed" />

<arg name="coordinate_system" value="1" description="0:UTM, 1:MGRS, 2:PLANE" />
<arg name="coordinate_system" value="$(var coordinate_system)" />
<arg name="use_ublox_receiver" value="true" />

<arg name="gnss_frame" value="gnss_link" />
Expand Down

0 comments on commit 33a6efd

Please sign in to comment.