2.4 Geographic Transformations and Spatial References

Key Takeaways

  • A Geographic Transformation is a mathematical calculation required when converting data between two different Geographic Coordinate Systems (Datums).
  • ArcGIS Pro performs "Projection on-the-fly" to dynamically align layers with different coordinate systems in the map view, but this does not alter the source data.
  • The "Define Projection" tool only overwrites the coordinate system metadata; it does not change the actual coordinate geometry.
  • The "Project" tool creates a new dataset and recalculates the coordinates to match the new target spatial reference.
  • If you encounter alignment issues between layers (often an offset of a few meters), a missing or incorrect geographic transformation is usually the culprit.
Last updated: July 2026

In a perfect world, all GIS data would be delivered in the exact same coordinate system. In reality, GIS professionals constantly integrate data utilizing different projections and datums. Properly managing these differences using geographic transformations and geoprocessing tools is a critical skill tested on the exam.

Projection On-The-Fly

When you add a layer to an empty Map in ArcGIS Pro, the Map automatically adopts the coordinate system of that first layer.

If you subsequently add a second layer that has a different coordinate system, ArcGIS Pro automatically performs Projection On-The-Fly. It temporarily recalculates the coordinates of the second layer in computer memory to match the Map's coordinate system, allowing the layers to draw perfectly aligned on the screen.

  • Pros: Excellent for visual overlay and map authoring without having to alter source data.
  • Cons: Projection on-the-fly consumes CPU resources and can slow down map rendering. More importantly, it does not change the underlying data. Spatial analysis tools (like Intersect or Buffer) will still use the data's native coordinate system, which can cause topological errors if the layers are in different projections.

Geographic Transformations (Datum Transformations)

Converting between two different Projected Coordinate Systems (e.g., UTM Zone 10 to State Plane) is a straightforward mathematical process, provided both use the same underlying datum.

However, if the data layers use different datums (e.g., one is NAD 1927 and the other is NAD 1983, or NAD 1983 to WGS 1984), a Geographic Transformation is strictly required.

Because the datums define the shape of the earth differently and anchor it in different locations, failing to apply a transformation will result in the data being misaligned—often shifted by a few meters or up to hundreds of meters. This is a classic symptom of a missing transformation.

Types of Transformations

  1. Equation-based (3-parameter or 7-parameter): Uses mathematical formulas to translate, rotate, and scale coordinates between datums. They are fast but may lack local precision.
  2. Grid-based (e.g., NADCON, HARN, NTv2): Uses detailed grid files of precalculated differences to interpolate the transformation. These are highly accurate for specific regions but require the grid files to be installed on the machine.

[!TIP] ArcGIS Pro will display a Transformation Warning at the top of the map view when a layer is added that requires a geographic transformation, allowing you to select the appropriate method. The software sorts the available transformations, placing the most accurate transformation for the current map extent at the top of the list.

Define Projection vs. Project Tool

One of the most frequently confused concepts in ArcGIS—and a guaranteed exam topic—is the difference between the Define Projection tool and the Project tool.

Define Projection

  • What it does: It updates the metadata (the .prj file for a shapefile, or the system tables in a geodatabase) to declare what coordinate system the data is currently stored in.
  • What it DOES NOT do: It does not change the actual x,y coordinates stored in the geometry.
  • When to use it: Use Define Projection ONLY when a dataset has an "Unknown Coordinate System" (the coordinate system is missing), or if someone previously assigned the wrong coordinate system to it.
  • Warning: If a dataset is truly in WGS 1984 (coordinates are -120.0, 45.0), and you use Define Projection to set it to Web Mercator, the data will instantly disappear from your map because the software now thinks those tiny decimal degree values are meters near the equator.

Project

  • What it does: It physically recalculates the x,y coordinates of the features and outputs them into a new dataset in the target coordinate system.
  • When to use it: Use the Project tool when your data has a known, correctly defined coordinate system, but you need the data to be in a different coordinate system for analysis or standardized storage.
  • Transformations: The Project tool interface allows you to explicitly select the Geographic Transformation if a datum shift is occurring.

Map and Environment Settings

In ArcGIS Pro, you can control coordinate systems at multiple levels:

  • Map Coordinate System: Right-click the Map -> Properties -> Coordinate Systems. This controls how the map is drawn (Projection on-the-fly) and allows you to configure specific Geographic Transformations for the map.
  • Geoprocessing Environments: You can set the "Output Coordinate System" environment. When running analysis tools (like Buffer), the output feature class will automatically be projected into this specified coordinate system during creation.
Loading diagram...
Define Projection vs Project Tool
Test Your Knowledge

A user downloads a shapefile from a government portal. When added to ArcGIS Pro, an error states the data has an 'Unknown Coordinate System'. The metadata document states the data was collected in NAD 1983 UTM Zone 15N. Which tool must be used to fix the data?

A
B
C
D
Test Your Knowledge

You add a road feature class (NAD 1983) and a parcel feature class (WGS 1984) to an empty ArcGIS Pro map. The roads appear shifted 5 meters to the east of the parcels. What is the most likely cause?

A
B
C
D
Test Your Knowledge

What is the primary drawback of relying entirely on 'Projection on-the-fly' for spatial analysis workflows?

A
B
C
D