Hi,
Combining data in Arcgis can take a long time. Is there an easier way to do this with python code?
Thanks in advance
Solved! Go to Solution.
Use the tools in arctoolbox. "python code" effectively accesses the same code-base as the tools do and would provide no speed advantages.
You can examine the code snippets associated with the tools in the help files for both arcmap and arcgis pro.
For example
Join Field (Data Management)—ArcGIS Pro | Documentation
scroll to the bottom... no hidden python magic, just a call to the tool itself after the parameters are defined.
what do you mean by combine or join? i.e. are you merging shapefiles, joining by attributes, joining by location (spatial join)?
yes merging shapefiles, joining by attributes
Use the tools in arctoolbox. "python code" effectively accesses the same code-base as the tools do and would provide no speed advantages.
You can examine the code snippets associated with the tools in the help files for both arcmap and arcgis pro.
For example
Join Field (Data Management)—ArcGIS Pro | Documentation
scroll to the bottom... no hidden python magic, just a call to the tool itself after the parameters are defined.
thanks