Show GeoTiff tags

This tool can be used to view the tags contained within a GeoTiff file. The user must specify the name of a GeoTiff file. Viewing the tags of a GeoTiff file can be useful when trying to import the GeoTiff to Whitebox raster format.

See Also:

Scripting:

This is an example of a Python script using this tool:

wd = pluginHost.getWorkingDirectory()
input_file = wd + "input.tif"
args = [input_file]
pluginHost.runPlugin("ShowGeoTiffTags", args, False)

And the following is a Groovy script also using this tool:

def wd = pluginHost.getWorkingDirectory()
def inputFile = wd + "input.tif"
String[] args = [inputFile]
pluginHost.runPlugin("ShowGeoTiffTags", args, false)

Credits: