Merge points files

This tool merges multiple vector points files into a single output file. The input vector files must be of a POINT ShapeType.

See Also:

Scripting:

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

wd = pluginHost.getWorkingDirectory()
# You may have multiple input files but they must
# be separated by semicolons in the string.
inputFiles = wd + "input1.shp" + ";" + wd + "input2.shp" + ";" + wd + "input3.shp"
outputFile = wd + "output.shp"
args = [inputFiles, outputFile]
pluginHost.runPlugin("MergePointsFiles", 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.shp" + ";" + wd + "input2.shp" + ";" + wd + "input3.shp"
def outputFile = wd + "output.shp"
String[] args = [inputFiles, outputFile]
pluginHost.runPlugin("MergePointsFiles", args, false)

Credits: