ArcGIS Pro¶
Goal: Get fluent in ArcGIS Pro — the desktop tool 90% of GIS analyst job postings require.
What you'll learn
- Why ArcGIS Pro matters for GIS careers
- The interface and the project file model
- The 18 essential workflows you should know cold
- Resources for licensing as a student
Why ArcGIS Pro?¶
ArcGIS Pro is the industry-standard desktop GIS, made by Esri. If you want a job at a city, county, federal agency, environmental consultancy, planning firm, or utility — they almost certainly use ArcGIS Pro.
| Compared to | Notes |
|---|---|
| QGIS | Free, open source, very capable. Good for academic/research. Less common in US enterprise GIS. |
| ArcMap | Esri's older desktop tool. Retired in 2026. Don't learn it. Learn Pro. |
| GeoPandas / Python only | Powerful, but not a hiring requirement on its own. Pair it with Pro. |
Get a license
- Students: Esri offers a free 1-year license through your school or via Learn ArcGIS Student Plan. Use it.
- Career changers: Free 21-day trial at esri.com.
- Linux / Mac users: ArcGIS Pro is Windows only. Use a VM, dual boot, or Parallels. Or use QGIS for the same workflows.
The 18 essential workflows¶
This is the entire ArcGIS Pro learning path — read each in order:
ArcGIS Pro vs ArcMap¶
If you read older tutorials, you'll see references to ArcMap. The paradigms are different:
| ArcMap (old) | ArcGIS Pro (current) | |
|---|---|---|
| File | .mxd | .aprx (project, can have many maps) |
| UI | Toolbars | Ribbon (like Office) |
| Layouts | Single layout per .mxd | Many layouts per project |
| Python | arcpy (Python 2) | arcpy (Python 3) |
| Status | Retired 2026 | Actively developed |
If you find an ArcMap tutorial, find a Pro equivalent. Don't waste time on ArcMap.
The .aprx project model¶
Pro uses a project (.aprx) that can contain:
- Multiple maps (2D)
- Multiple scenes (3D)
- Multiple layouts (print/PDF compositions)
- A default file geodatabase (
.gdb) - Toolboxes, models, scripts
- Folder connections
- Tasks, layouts, and styles
Always start by creating a new project before doing analysis. Don't work in the system temp.
The Catalog Pane¶
Your project's "file explorer" inside Pro:
- Maps — 2D maps in the project
- Toolboxes — Python scripts, models, and Esri tools
- Databases — connected geodatabases
- Folders — connected file system paths
- Locators — geocoding services
- Portal — your AGOL items
Spend time mastering the Catalog Pane. It's where every workflow starts.
Geoprocessing pane¶
Press Ctrl+F or click Analysis → Tools to open. This is where you run buffer, clip, intersect, etc.
- Search by tool name
- Star tools to favorite them
- See History of every tool you've run (great for debugging and reproducibility)
Performance tips¶
Make Pro fast
- Store data in a file geodatabase, not shapefile.
- Set the project's default geodatabase to a fast SSD.
- Use Display Filters for huge layers (only render at certain zoom levels).
- Disable layers you're not using.
- For very large analyses, consider Make Feature Layer with a query first to subset.
Practice¶
Day 1 in ArcGIS Pro
Build Your First Map in ArcGIS Pro. Then come back here and proceed through the ArcGIS Pro learning path.
Next up¶
→ Python for GIS — automate the tools you just learned.