7.1 Geographic Coordinate Systems & Datums

Key Takeaways

  • A Geographic Coordinate System (GCS) uses a 3D spherical or ellipsoidal surface to model the Earth and defines positions using angular units such as latitude and longitude.
  • An ellipsoid (spheroid) defines the mathematical 3D shape of the Earth, whereas a datum anchors that ellipsoid to a specific origin point on Earth's surface or at its center of mass.
  • Common datums include WGS 1984 (global geocentric datum), NAD 1983 (North American geocentric datum), and NAD 1927 (local North American datum based on Meades Ranch, Kansas).
  • Displaying or analyzing spatial data across different datums without applying a transformation causes datum shifts, resulting in feature misalignments ranging from 10 to over 200 meters.
  • Geographic transformations convert coordinates between different datums using equation-based methods (3-parameter, 7-parameter) or high-accuracy grid-based files (NADCON, NTv2).
Last updated: August 2026

7.1 Geographic Coordinate Systems & Datums

Every spatial dataset in a Geographic Information System (GIS) relies on a reference framework to establish where features exist in real-world space. At the foundational level of spatial reference modeling is the Geographic Coordinate System (GCS). A Geographic Coordinate System provides a three-dimensional spherical or ellipsoidal reference model that defines locations on the surface of the Earth using angular measurements. Understanding how GCS models are constructed—and how their underlying ellipsoids and datums interact—is essential for accurate mapping, spatial analysis, and geodatabase administration in Esri ArcGIS Pro 3.x.


Fundamentals of Geographic Coordinate Systems

A Geographic Coordinate System treats the Earth as a 3D sphere or ellipsoid. Locations on this surface are expressed in spherical coordinates consisting of latitude (represented by the Greek letter phi, $\phi$) and longitude (represented by the Greek letter lambda, $\lambda$).

  • Latitude measures the angular distance north or south of the Equator ($0^\circ$ latitude), ranging from $-90^\circ$ at the South Pole to $+90^\circ$ at the North Pole. Lines of latitude are parallel circles running east-west around the globe.
  • Longitude measures the angular distance east or west of the Prime Meridian ($0^\circ$ longitude, which passes through Greenwich, England). Longitude values range from $-180^\circ$ west of Greenwich to $+180^\circ$ east of Greenwich. Lines of longitude (meridians) converge at the geographic poles.

Angular Units of Measurement

Geographic coordinates are measured in angular units. Historically, coordinates were expressed in Degrees-Minutes-Seconds (DMS) format (e.g., $34^\circ 03' 08''\text{ N}, 118^\circ 14' 34''\text{ W}$). Modern GIS software, including ArcGIS Pro, stores and processes coordinates internally using Decimal Degrees (DD) format (e.g., $+34.0522^\circ, -118.2428^\circ$).

Converting between DMS and DD is a basic mathematical operation:

Decimal Degrees=Degrees+(Minutes60)+(Seconds3600)\text{Decimal Degrees} = \text{Degrees} + \left(\frac{\text{Minutes}}{60}\right) + \left(\frac{\text{Seconds}}{3600}\right)

For western longitudes and southern latitudes, the resulting decimal degree value is assigned a negative sign. Because lines of longitude converge toward the poles, one decimal degree of longitude varies in ground distance—from approximately 111 kilometers at the Equator to zero at the poles. In contrast, one degree of latitude remains roughly 111 kilometers everywhere on Earth.


Spheroids and Ellipsoids: Geometric Earth Modeling

Although the Earth is frequently conceptualized as a sphere, its true physical shape is irregular. The rotation of the Earth creates a centrifugal force that causes the planet to bulge slightly at the Equator and flatten at the poles. This 3D geometric shape is known as an oblate spheroid or ellipsoid.

An ellipsoid is mathematically defined by two primary parameters:

  1. Semimajor axis ($a$): The equatorial radius (distance from the center of Earth to the Equator).
  2. Semiminor axis ($b$): The polar radius (distance from the center of Earth to the North or South Pole).

The degree of polar flattening ($f$) is calculated as:

f=abaf = \frac{a - b}{a}

Over the past two centuries, geodesists have derived numerous standard ellipsoids to approximate the Earth's geometry. The choice of ellipsoid directly influences coordinate calculations across a geographic surface. Prominent ellipsoids used in modern GIS include:

  • WGS 1984 Ellipsoid: Used globally by the Global Positioning System (GPS) and global satellite networks ($a = 6,378,137.0\text{ meters}, 1/f \approx 298.257223563$).
  • GRS 1980 Ellipsoid: The Geodetic Reference System 1980 ellipsoid, adopted for modern North American mapping ($a = 6,378,137.0\text{ meters}, 1/f \approx 298.257222101$).
  • Clarke 1866 Ellipsoid: A historical ellipsoid designed for North American ground survey data ($a = 6,378,206.4\text{ meters}, b = 6,356,583.8\text{ meters}$).

Datum Definitions: Anchoring the Ellipsoid

While an ellipsoid provides the mathematical shape of the Earth, an ellipsoid alone does not fix coordinates to physical locations on Earth's surface. To bind an ellipsoid to physical ground locations, GIS systems utilize a Datum.

A datum defines the position of the ellipsoid relative to the Earth's surface or its center of mass. A datum establishes the origin point and orientation of the coordinate axes. Datums fall into two primary categories:

1. Earth-Centered (Geocentric) Datums

A geocentric datum aligns the center of the reference ellipsoid with the Earth's center of mass (including oceans and atmosphere). Because the origin is geocentric, the datum provides a consistent global baseline suitable for satellite navigation and international spatial data integration.

  • WGS 1984 (World Geodetic System 1984): The standard reference datum for GPS positioning and web mapping services worldwide.
  • NAD 1983 (North American Datum 1983): The primary geocentric datum for North America, based on the GRS 1980 ellipsoid. Its origin is aligned with Earth's center of mass based on satellite geodesy.
  • ITRF (International Terrestrial Reference Frame): A highly precise global reference frame updated periodically to account for tectonic plate motion.

2. Local (Geodetic) Datums

A local datum optimizes the fit of an ellipsoid to a specific geographic region, continent, or country. The center of the reference ellipsoid is offset from Earth's center of mass to align perfectly with a designated surface benchmark point.

  • NAD 1927 (North American Datum 1927): A historical local datum based on the Clarke 1866 ellipsoid. Its origin point is fixed at a single surface benchmark location: Meades Ranch in Kansas. While highly accurate for North America in 1927, its surface alignment introduces systematic offsets when viewed on a global scale.

Datum Shifts and Misalignments

Because different datums rely on distinct ellipsoids and origin points, the same physical location on Earth will have different latitude and longitude coordinates under different datums. This phenomenon is known as a datum shift.

If a survey point collected under NAD 1927 is displayed in ArcGIS Pro alongside datasets referenced to NAD 1983 without applying a geographic transformation, the features will not align correctly. In North America, the horizontal shift between NAD 1927 and NAD 1983 typically ranges from 10 meters to over 200 meters depending on the region. On the EAPF_2025 exam, identifying uncorrected datum shifts as the root cause of spatial misalignment is a core candidate requirement.


Geographic (Datum) Transformations

When working with layers originating from different datums (e.g., overlaying historical NAD 1927 county boundaries onto modern NAD 1983 imagery or WGS 1984 GPS points), coordinates must be mathematically converted between datums. This process is called a Geographic Transformation (or datum transformation).

Geographic transformations operate through two primary methodologies:

Equation-Based (Mathematical Parameter) Transformations

  • 3-Parameter (Geocentric Translation): Shifts the center of the ellipsoid along the X, Y, and Z axes ($\Delta X, \Delta Y, \Delta Z$) in 3D Cartesian space.
  • 7-Parameter (Coordinate Frame / Bursa-Wolf / Molodensky-Badekas): Applies three linear translation shifts, three rotational adjustments around the axes, and a scale factor parameter. This method provides higher precision across larger regions.

Grid-Based Transformations

For localized regions, mathematical equations cannot model local crustal variations or historical survey distortions accurately. Grid-based transformations use precomputed raster grid files that store precise shift vectors for specific latitude/longitude cells.

  • NADCON / NADCON5: Developed by the National Geodetic Survey (NGS) for converting coordinates between NAD 27, NAD 83, and HARN state networks in the USA.
  • NTv2 (National Transformation Version 2): Developed in Canada and adopted globally (e.g., Australia, New Zealand, European nations) for high-accuracy grid interpolation.

Selecting Geographic Transformations in ArcGIS Pro

When a user adds a layer whose datum differs from the map frame's datum, ArcGIS Pro triggers a Geographic Transformation Warning. Analysts can open Map Properties -> Coordinate Systems -> Transformations to inspect or select the appropriate transformation path. Selecting the correct transformation depends on geographic extent, source data history, and target accuracy requirements.

Test Your Knowledge

What is the fundamental distinction between an ellipsoid (spheroid) and a datum in a Geographic Coordinate System?

A
B
C
D
Test Your Knowledge

A GIS technician overlays historical property boundary lines created under NAD 1927 onto modern aerial imagery referenced to NAD 1983 in ArcGIS Pro without defining a geographic transformation. What visual anomaly will occur?

A
B
C
D
Test Your Knowledge

Which transformation methodology uses precomputed grid shift files to achieve high regional precision when converting coordinates between NAD 1927 and NAD 1983?

A
B
C
D