In this tutorial, you’ll learn how to catalog data using Python. Specifically, we’ll use the arcpy and os modules to move through a directory tree to catalog and find data. The os module is used to interact with your operating system, move through a directory and find...
In this tutorial, you’ll learn multiple ways to add data to a map using Python. Specifically, we’ll add single shapefile feature classes and folders containing shapefile feature classes to the map using both arcpy and the os module. There are various ways to add data...
In this tutorial, you’ll learn how to create a script tool in ArcGIS Pro from a standalone Python script. A script tool is a Python script file that can be run as a geoprocessing tool. This means you only have to worry about setting the right parameters of the tool...
In this tutorial you’ll learn how to identify duplicate entries in a GIS dataset using ArcGIS Pro Python Notebooks. If you want to use Python to find duplicate entries in a feature dataset, there are several ways to do so. This tutorial features two...
In this tutorial, you’ll learn how to create a simple bar chart in an ArcGIS Pro python notebook. Pro includes a series of pre-installed Python packages. One of these packages is matplotlib, a plotting library which enables you to create bar charts, scatterplots and...
In this tutorial, we will be using an UpdateCursor object to edit an attribute table. Specifically, we will join field values from three separate fields to a single field value and apply string formatting for each iteration of the cursor object. An arcpy UpdateCursor...