This tool can merge multiple LiDAR LAS files (.las) into a single LAS file. The user must specify the names of two or more files to be joined, as well as the name of the output file.
The following is an example of a Python script that uses this tool:
wd = pluginHost.getWorkingDirectory()
inputs = wd + "input1.las" + ";" + wd + "input2.las" + ";" + wd + "input3.las"
outputFile = wd + "output.dep"
args = [inputs, outputFile]
pluginHost.runPlugin("LidarJoin", args, False)
This is a Groovy script also using this tool:
def wd = pluginHost.getWorkingDirectory()
def inputs = wd + "input1.las" + ";" + wd + "input2.las" + ";" + wd + "input3.las"
def outputFile = wd + "output.dep"
String[] args = [inputs, outputFile]
pluginHost.runPlugin("LidarJoin", args, false)