[GIS] Merging XYZ’s in ArcGIS Desktop

arcgis-desktopgeoprocessingmergepythonxyz

I have like 6 .xyz files that are to be included in a single map (they sort of overlap). However, I'd like to save time and automatically merge them together through python code into one .XYZ before processing them through my script.

Is there a seamless way to do this in ArcGIS Desktop?

BOTTOM LINE: MERGE XYZ's into one XYZ file. Any suggestions or alternatives to this?

Best Answer

If the XYZ files are just delineated text files, you could just copy/paste in notepad or some such editor. Six files doesn't seem like many. Sometimes you don't need to automate...

However, I think there are a few options that won't require ArcPy.

Things that come to mind:

  1. Load the data into a new feature class or table.

  2. Try the append tool.

  3. Try the merge tool.

  4. Try the union tool.

Related Question