Export IDRISI raster

This tool can be used to export Whitebox GAT raster files to IDRISI raster files (*.rdc and *.rst). This IDRISI raster format is a type of binary file that is not human-readable. The user must specify the name of one or more Whitebox raster files to be exported. The tool will create IDRISI raster files for each input file. Output file names are the same of the input files. The tool supports export to IDRISI integer, real, and RGB24 data types.

See Also:

Scripting:

The following is an example of a Python script using this tool:

wd = pluginHost.getWorkingDirectory()
# You may have multiple input files but they must
# be separated by semicolons in the string.
inputFiles = wd + "input1.dep" + ";" + wd + "input2.dep" + ";" + wd + "input3.dep"
args = [inputFiles]
pluginHost.runPlugin("ExportIDRISIRaster", args, False)

This is a Groovy script also using this tool:

def wd = pluginHost.getWorkingDirectory()
// You may have multiple input files but they must
// be separated by semicolons in the string.
def inputFiles = wd + "input1.dep" + ";" + wd + "input2.dep" + ";" + wd + "input3.dep"
String[] args = [inputFiles]
pluginHost.runPlugin("ExportIDRISIRaster", args, false)

Credits: