On some recent projects, I have been using ArcPy to script out some ArcGIS Pro feature automation. ArcPy ships as a package available via ArcGIS Pro's Python package manager (which is essentially a GUI on top of Conda), and can be imported to any Python script. ArcGIS Pro's package manager allows you to clone environments, … Continue reading How to resolve a version mis-match error when using ArcPy
Tag: Python
Configuring VS Code for ArcPy/ArcGIS Pro development
I have been using Esri's ArcGIS Pro and its companion Python package, ArcPy, more and more often as of late, and have really been enjoying developing with Python. For the unfamiliar, ArcGIS is geographic information system (GIS) software, primarily used to visualize and analyze geographic data. Python is commonly used to automate these analysis tasks … Continue reading Configuring VS Code for ArcPy/ArcGIS Pro development
How to automate a Python script (or anything else) in Windows and Linux
A common task I need to perform both at work and on my personal/home computers is configuring a script to run automatically on a schedule. Some examples from my experience include running a script nightly to update an application database with new data from an external source, or running a weekly script on my laptop … Continue reading How to automate a Python script (or anything else) in Windows and Linux