Book Image

Python for ArcGIS Pro

By : Silas Toms, Bill Parker
Book Image

Python for ArcGIS Pro

By: Silas Toms, Bill Parker

Overview of this book

Integrating Python into your day-to-day ArcGIS work is highly recommended when dealing with large amounts of geospatial data. Python for ArcGIS Pro aims to help you get your work done faster, with greater repeatability and higher confidence in your results. Starting from programming basics and building in complexity, two experienced ArcGIS professionals-turned-Python programmers teach you how to incorporate scripting at each step: automating the production of maps for print, managing data between ArcGIS Pro and ArcGIS Online, creating custom script tools for sharing, and then running data analysis and visualization on top of the ArcGIS geospatial library, all using Python. You’ll use ArcGIS Pro Notebooks to explore and analyze geospatial data, and write data engineering scripts to manage ongoing data processing and data transfers. This exercise-based book also includes three rich real-world case studies, giving you an opportunity to apply and extend the concepts you studied earlier. Irrespective of your expertise level with Esri software or the Python language, you’ll benefit from this book’s hands-on approach, which takes you through the major uses of Python for ArcGIS Pro to boost your ArcGIS productivity.
Table of Contents (20 chapters)
1
Part I: Introduction to Python Modules for ArcGIS Pro
5
Part II: Applying Python Modules to Common GIS Tasks
10
Part III: Geospatial Data Analysis
14
Part IV: Case Studies
18
Other Books You May Enjoy
19
Index

Walking through a directory to find data

So far, you have been working with single datasets and using ArcPy to do many things that you could do as single tools. The benefit of ArcPy has been in helping you track your tasks and in being able to use Notebooks, which make sharing your analysis easy. However, what about when you have a lot of datasets and need to search through them and organize them, or do analysis on them? This is where the Data Access module comes in.

The first thing to look at in the Data Access module is the walk function, which will allow you to walk through directories.

arcpy.da.Walk

The Python os module is one that you have seen in previous chapters. You have used os.path.join to create a full path of a file from the directory and filename. It also has a walk() function that will walk through a directory tree and find data. This means that you can run it on a folder and be able to walk through all the data, not just within that folder but within the...