Import TAS vector (.vtr)

This tool can be used to import vector files that were created using the Terrain Analysis System (TAS).

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.vtr" + ";" + wd + "input2.vtr" + ";" + wd + "input3.vtr"
args = [inputFiles]
pluginHost.runPlugin("ImportTASVector", 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.vtr" + ";" + wd + "input2.vtr" + ";" + wd + "input3.vtr"
String[] args = [inputFiles]
pluginHost.runPlugin("ImportTASVector", args, false)

Credits: