Skip to contents

Displays the tags contained within a GeoTIFF file. This is useful when importing GeoTIFF files into different software environments. The tool prints tag information to the console. Tags containing more than 100 values are truncated in the output. GeoKeys are interpreted according to the GeoTIFF specification.

Usage

print_geotiff_tags(file_name)

Arguments

file_name

character, path to raster file

Examples

if (FALSE) { # \dontrun{
raster_path <- system.file("extdata/dem.tif", package = "wbw")
print_geotiff_tags(raster_path)
} # }