Merges multiple layers from the same geometry type together into a single output layer.
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. |
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:
<> - required parameter
{} - optional parameter
The argument separator for StartInfo.Arguments is space. If a string might contain a space, you need to double quote it.