Skip to content

Commit 58261e1

Browse files
committed
Patch bug in bringing up wrong node by hard-coding it off
Signed-off-by: Ryan Friedman <ryanfriedman5410+github@gmail.com>
1 parent 32bb128 commit 58261e1

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

launch/load_tif.launch.py

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def generate_launch_description():
4040
],
4141
output="screen",
4242
emulate_tty=True,
43-
condition=LaunchConfigurationEquals(LaunchConfiguration("params_file"), "")
43+
# condition=LaunchConfigurationEquals(LaunchConfiguration("params_file"), "")
4444
)
4545

4646
# map publisher node with params file
@@ -86,13 +86,6 @@ def generate_launch_description():
8686
default_value=f'{Path(pkg_grid_map_geo) / "resources" / default_gdal_color_dataset}',
8787
description="Full path to the elevation texture file.",
8888
),
89-
DeclareLaunchArgument(
90-
"gdal_dataset_color_path",
91-
default_value=os.path.join(
92-
pkg_grid_map_geo, "resources", default_gdal_color_dataset
93-
),
94-
description="Full path to the elevation texture file.",
95-
),
9689
DeclareLaunchArgument(
9790
"params_file",
9891
default_value="",
@@ -101,7 +94,7 @@ def generate_launch_description():
10194

10295
static_transform_publisher,
10396
map_publisher,
104-
map_publisher_with_param_file,
97+
# map_publisher_with_param_file,
10598
rviz,
10699
]
107100
)

0 commit comments

Comments
 (0)