The default param for the color_path on test_tif_loader is "." ( a period). That said, the logic in grid_map_geo.cpp is checking for empty string to determine whether to load the color data.
Thus, if a user wants to load just an elevation map with no color data, they would have to change the default to empty string in their launch file, which is not that intuitive.
This PR is a trivial fix for the issue that can be merged before #38.
Purpose
The default param for the color_path on test_tif_loader is
"."
( a period). That said, the logic in grid_map_geo.cpp is checking for empty string to determine whether to load the color data.Thus, if a user wants to load just an elevation map with no color data, they would have to change the default to empty string in their launch file, which is not that intuitive.
This PR is a trivial fix for the issue that can be merged before #38.
Demo