Merge Feature Layers

Running programmatically

Merges multiple layers from the same geometry type together into a single output layer.

Inputs:

Outputs:

Running Programmatically

(Go to TOP)

Parameters

Expression Explanation
Function Name MergeMulti
<Base Dataset> A String representing the input layer.
<merge datasets> A String representing a list (separator - ";") of layers to be merged to the base dataset. All layers in this list be of the same geometry type as the base layer.
<output dataset> A String - the full name of the output layer.

Running the function

ETGWPath used in the table below is the full path to ETGWRun.exe (E.G. "C:\Program Files\ETSpatial Techniques\ETGeo Wizards\ETGWRun.exe")

Language Syntax
Python subprocess.call([ETGWPath, "MergeMulti", "Base Dataset", "merge datasets", "output dataset"])
.NET using ETGWRun.exe StartInfo.FileName = ETGWPath
StartInfo.Arguments = "MergeMulti" "Base Dataset"  "merge datasets" "output dataset"
.NET using ETGWOutX.dll MergeMulti(Base Dataset, merge datasets, output dataset)
ArcPy arcpy.MergeMulti(Base Dataset, merge datasets, "output dataset")

Notes:

(Go to TOP)