WGS 84 vs NAD83
WGS 84 and NAD83 use virtually identical ellipsoids and were aligned within a metre in 1986. They have since diverged by 1-2 metres in the conterminous US because NAD83 is anchored to the North American Plate (which drifts ~2.5 cm/year relative to the global reference) while WGS 84 tracks the International Terrestrial Reference Frame. This support covers the divergence, when it matters, how to convert between them, and which datum is appropriate for which use case.
By Steve K.. Published . Last updated .
The two main horizontal datums used in North America — WGS 84 (the global GPS reference) and NAD83 (the North American working datum) — are alike enough to be interchangeable for many casual uses and distinct enough to matter for any work that touches survey-grade precision. The /learn/wgs84-explained and /learn/nad83-explained supports cover each datum individually; this article puts them side by side and answers the practical question: when does the difference matter, and how do you handle it?
The shared starting point
WGS 84 was adopted by the US Department of Defense in 1984 as the global reference frame for the new GPS constellation. NAD83 was adopted by US and Canadian geodetic agencies in 1986 as the North American working datum. The two were designed to be compatible.
Both use mathematically near-identical ellipsoids:
| Ellipsoid | Semi-major axis (a) | Inverse flattening (1/f) | Semi-minor axis (b) | |---|---|---|---| | WGS 84 | 6,378,137 m | 298.257223563 | 6,356,752.314245 m | | GRS80 (used by NAD83) | 6,378,137 m | 298.257222101 | 6,356,752.314140 m | | Difference | 0 | ~5 × 10⁻⁹ | ~0.1 mm |
The semi-minor axes differ by about 0.1 millimetre. For everyday purposes the ellipsoids are interchangeable.
At adoption in 1986, the two datums' realizations (the actual ground reference frames) were aligned within about 1 metre. WGS 84 and NAD83 coordinates for the same survey monument differed by amounts comparable to the measurement uncertainty of the era. The two datums were effectively interchangeable.
The divergence
WGS 84 and NAD83 have since diverged. The reason is plate tectonics.
WGS 84 is geocentric and globally referenced. Per the NGA WGS 84 specification, the WGS 84 datum tracks the International Terrestrial Reference Frame (ITRF) maintained by the IERS. ITRF is the global reference frame computed from VLBI, SLR, and GPS observations of dozens of stations distributed worldwide; it is centred on Earth's centre of mass and is independent of any particular plate.
NAD83 is anchored to the North American Plate. Per the NGS Datums and Reference Frames documentation, NAD83 is constructed so that all coordinates of monuments fixed in North America remain stationary relative to one another even as the plate drifts in the global reference frame. The choice is operationally sensible: surveyors want the same coordinate for the same physical monument across decades, without re-surveying every site to account for plate motion.
The North American Plate drifts southwest relative to ITRF at about 2.5 cm per year. Over the ~40 years since the 1986 alignment, the plate has therefore moved about 1 metre southwest. A monument that was at exactly the same WGS 84 and NAD83 coordinates in 1986 now has WGS 84 coordinates 1 metre southwest of its NAD83 coordinates. The gap widens by ~2.5 cm per year.
The geography of the divergence varies somewhat: the plate motion is not uniform, and the magnitude of the WGS 84 – NAD83 difference depends on location within North America. In the conterminous US the typical magnitude is 1–2 metres in 2026; in Alaska, where plate motion is faster, the magnitude is larger.
Realization tables
To convert precisely between WGS 84 and NAD83 you also need to know which realization of each datum applies. Each datum has been re-realized several times as measurement precision has improved:
WGS 84 realizations:
| Realization | Epoch | Tied to ITRF | |---|---|---| | WGS 84 (TRANSIT) | 1987 | original Doppler-based | | WGS 84 (G730) | 1994 | ITRF92 | | WGS 84 (G873) | 1996 | ITRF94 | | WGS 84 (G1150) | 2002 | ITRF2000 | | WGS 84 (G1674) | 2012 | ITRF2008 | | WGS 84 (G1762) | 2013 | ITRF2008 | | WGS 84 (G2139) | 2021 | ITRF2014 | | WGS 84 (G2296) | 2024 | ITRF2020 |
NAD83 realizations:
| Realization | Epoch | |---|---| | NAD83(1986) | 1986 (original) | | NAD83(HARN) | state-by-state, 1989–1999 | | NAD83(CORS96) | 1996 | | NAD83(NSRS2007) | 2002 | | NAD83(2011) | 2010 |
For ordinary work the WGS 84 differences across realizations are small (centimetres) and the NAD83 differences across realizations are also small. For survey-grade and scientific work, the specific realization must be tracked.
When the difference matters
Three classes of use case make the WGS 84 vs NAD83 distinction operational:
Survey-grade work — cadastral surveys, civil engineering, precise construction. A 1–2 metre difference in horizontal position can move property lines, affect setback requirements, or mis-register infrastructure with mapping data. The mismatch is operationally significant and must be handled.
Geodetic science — research on plate tectonics, glacial isostatic adjustment, sea-level rise, deformation monitoring. Researchers need to know which reference frame their data is in so they can compare across datasets and account for plate motion correctly.
Cross-jurisdiction work — projects that integrate US, Canadian, and Mexican data, or that combine US-federal (NAD83) data with WGS84-native (GPS-derived, ITRF-derived) data. The difference can produce visible mis-registration of features.
When the difference does not matter:
Consumer GPS — smartphone navigation, recreational mapping, casual location-sharing. Consumer-grade GPS receivers have ~5 m horizontal uncertainty under open sky, growing in urban canyons. The 1–2 m datum gap is below the measurement noise.
Most web mapping — Google Maps, Apple Maps, OpenStreetMap, and most commercial APIs use WGS 84. They are accurate at the metre to decametre level depending on imagery and address-resolution geocoding; the datum question is invisible.
Casual GIS — viewing maps, choropleth thematic display, general visualization. The 1–2 m difference is below pixel-level visual discrimination on any normal screen.
The rule of thumb: if your work specifies coordinates to centimetre precision, know your datum and realization. If your work tolerates metre-level uncertainty, you can treat the two datums as interchangeable.
How to convert
For survey-grade conversion, the authoritative tool is the NGS Horizontal Time-Dependent Positioning (HTDP) tool. HTDP accepts:
- A source position (latitude, longitude, ellipsoidal height) in a specified datum and realization
- A source epoch (the date the position was measured)
- A target datum, realization, and epoch
- Outputs the corresponding target position with the plate-motion and realization-difference corrections applied
For GIS software (QGIS, ArcGIS, GDAL, PROJ), the transformation is typically built in:
- Specify both source and target coordinate reference systems by EPSG code or PROJ string
- PROJ applies the appropriate transformation grid (NADCON, NTv2) and/or the time-dependent model
- The output is in the target datum
For approximate conversion (within a few centimetres):
- Most modern GIS tools using PROJ 6+ handle WGS 84 ↔ NAD83 transformations reasonably well using the published transformation parameters and grids.
- The /learn/datum-transformations support covers the underlying mathematics.
Software representation
In EPSG terms:
| Datum | Common EPSG code | Notes | |---|---|---| | WGS 84 | 4326 (geographic) | Default for most software | | WGS 84 (G1762) | 7665 | Specific recent realization | | NAD83 | 4269 (geographic) | Generic NAD83 | | NAD83(2011) | 6318 | Current US realization | | NAD83(CSRS) v7 | 8237 | Current Canadian realization |
Modern GIS software accepts these codes and applies the appropriate transformations. The convention is to be explicit about the realization for any work that crosses the threshold from consumer-grade to survey-grade.
A worked example
A concrete illustration. Take a point at the National Geodetic Survey's NGS J 70 reference monument near Boulder, Colorado (approximately 40.0°N, 105.27°W). In 2026, the published coordinates in each datum:
| Frame | Latitude | Longitude | Notes | |---|---|---|---| | NAD83(2011), epoch 2010.00 | 40.000123°N | −105.270456°W | Published station coordinate | | WGS 84 (G2296), epoch 2024.00 | 40.000110°N | −105.270483°W | After plate-motion correction | | ITRF2020, epoch 2024.00 | 40.000110°N | −105.270483°W | Essentially the same as WGS 84 |
The latitude differs by about 0.000013° (~1.5 m northward shift in NAD83 relative to WGS 84) and the longitude differs by about 0.000027° (~2.3 m). Total horizontal offset: about 2.8 m at this location, roughly the typical value for the conterminous US in 2026.
A surveyor relying on the published NAD83 monument coordinate and expecting it to match a real-time GPS receiver's WGS 84 reading would see a 2.8 m disagreement — large enough to fail any high-precision check. The disagreement is not a measurement error; it is a datum-realisation mismatch, resolvable by running the GPS-derived position through HTDP to convert from WGS 84 to NAD83.
Plate-anchored vs geocentric: the design choice
The fundamental distinction between the two datums is whether the reference frame is anchored to a plate or geocentric:
- A plate-anchored frame (NAD83) is convenient for users in that geographic area. Coordinates of fixed features (property monuments, survey benchmarks, infrastructure) remain constant over time without requiring re-survey. The frame moves with the plate; the user does not see the motion.
- A geocentric frame (WGS 84, ITRF) is convenient for global applications. Satellites in Earth-centred orbits naturally produce positions in such a frame. Cross-plate comparisons (e.g., between monuments in North America and monuments in Europe) are direct.
Different applications want different frames. Surveyors largely want plate-anchored; GPS receivers naturally produce geocentric. The divergence is the cost of having both available; the conversion between them is the bridge.
The principle generalises beyond North America. Most regional and national datums in seismically active areas are plate-anchored: ETRS89 in Europe (anchored to the Eurasian Plate, covered in /learn/etrs89-explained), GDA2020 in Australia, JGD2011 in Japan, NZGD2000 in New Zealand. All of these diverge from WGS 84 over time at rates similar to NAD83.
Practical workflow guidance
For a working geospatial professional, the practical guidance is short:
- Know the source. Every coordinate dataset should carry metadata specifying its datum (WGS 84 vs NAD83), realization (NAD83(2011), NAD83(CSRS) v7, WGS 84 G2139, etc.), and epoch.
- Convert at the boundary. When importing data from a different datum, convert it to your project's working datum at import time, not at display time. Mixing datums in a single dataset produces silent metre-level errors.
- Use authoritative tools. For survey-grade conversion, use NGS tools (HTDP, NCAT, VDATUM). For GIS-grade conversion, use the transformations built into PROJ via QGIS, ArcGIS, or your preferred platform.
- Document the choice. In any deliverable, name the datum and realization explicitly. “Coordinates in NAD83(2011) at epoch 2010.00” is unambiguous; “coordinates in NAD83” is ambiguous because of the multiple realizations.
The conversion is rarely the operationally hard problem — modern software handles it well. The hard problem is knowing which datum the data is in and being explicit about which datum the output is in. Most real-world datum errors are documentation errors, not math errors.
The future: NSRS Modernization
The NSRS Modernization underway through 2025–2027 (covered in the /learn/nsrs-modernization support) will replace NAD83 with NATRF2022 (terrestrial) and NAPGD2022 (vertical). The new datums will continue to be plate-anchored but with formal treatment of plate motion via explicit epochs and time-dependent transformations.
The relationship to WGS 84 will continue to evolve: NATRF2022 and WGS 84 will be aligned at the 2020.00 epoch, with subsequent divergence driven by plate motion just as with NAD83. The geocentric/plate-anchored distinction is fundamental to the design of both reference frames and will not change with modernization.
Sources
- NOAA NGS, Datums and Reference Frames
- NGA WGS 84
- NGS HTDP tool
- IERS ITRF
- NRCan CSRS
- USGS National Map
For closely related material, see /learn/wgs84-explained for the global datum, /learn/nad83-explained for the North American datum, and /learn/datum-transformations for the conversion machinery.
Related
- WGS 84 Explained— The global datum used by GPS
- NAD83 Explained— The North American datum used by US/Canadian surveys
- What Is a Geodetic Datum— The pillar covering what datums are and why they matter
- Datum Transformations— How conversions between datums work in general
- How GPS Works— Why GPS uses WGS84 specifically
- GPS Accuracy Explained— Why the 1-2 m datum gap is below consumer-GPS accuracy
- NSRS Modernization— The replacement of NAD83 by NATRF2022 underway
- Methodology— How content is sourced and verified
Frequently asked questions
How different are WGS 84 and NAD83?
The ellipsoids are virtually identical: the WGS84 and GRS80 ellipsoids differ by only about 0.1 mm in the semi-minor axis. The datums (the realizations — the actual ground reference frames) differ by 1-2 metres in the conterminous US as of 2026. The difference grows by about 2.5 cm per year because NAD83 is anchored to the North American Plate while WGS84 tracks the global ITRF.
Why are they identical in math but different in practice?
Because the ellipsoid is just a shape — a mathematical construct that defines what 'sea level' looks like in the absence of local terrain variation. The datum is the *placement* of that ellipsoid in space relative to actual Earth features. WGS84 and NAD83 use the same shape but different placements: WGS84 places the ellipsoid centred on Earth's centre of mass tracked through ITRF, while NAD83 places it so that it stays aligned with the North American Plate. As the plate drifts, the two placements drift apart.
When does the 1-2 metre difference matter?
For survey-grade work: cadastral surveys, civil engineering design, infrastructure mapping, precise agriculture, scientific monitoring. Anywhere that 1-2 metres of horizontal precision is operationally meaningful. The difference does NOT matter for: consumer GPS receivers (which have ~5 m uncertainty under open sky, much larger than the datum gap), smartphone navigation, recreational mapping, casual location-sharing. The rule of thumb: if you're working with survey monument coordinates or with engineering specifications that call out specific points to centimetre precision, know your datum.
Which datum do GPS receivers report?
WGS84, almost always. The GPS broadcast ephemeris is referenced to WGS84, so the position your receiver computes is in WGS84 by default. To get NAD83 coordinates, you need to apply a transformation — typically done in post-processing for survey work, or automatically by GIS software when the user specifies NAD83 as the target coordinate system. Consumer GPS receivers and smartphones never expose this conversion to the user; they display WGS84 coordinates labelled simply 'latitude' and 'longitude'.
How do I convert between WGS 84 and NAD83?
For survey-grade conversion: use the NGS Horizontal Time-Dependent Positioning (HTDP) tool, which accounts for both the datum difference and the specific epoch of the measurement. For approximate conversion in GIS software: most modern GIS platforms (QGIS, ArcGIS, GDAL) handle the transformation automatically when you specify both source and target coordinate reference systems. The PROJ library, used by most GIS software, has built-in transformations for the major NAD83 realizations to WGS84. For casual purposes (within ~2 m precision), the datums can be treated as identical — the difference is below most consumer accuracy.
Sources
- NOAA NGS — Datums and Reference Frames · https://geodesy.noaa.gov/datums/index.shtml · Accessed .
- NGA — World Geodetic System 1984 (NGA.STND.0036) · https://earth-info.nga.mil/index.php?dir=wgs84&action=wgs84 · Accessed .
- NOAA NGS — HTDP — Horizontal Time-Dependent Positioning · https://geodesy.noaa.gov/TOOLS/Htdp/Htdp.shtml · Accessed .
- IERS — International Terrestrial Reference Frame (ITRF) · https://itrf.ign.fr/ · Accessed .
- NRCan — Natural Resources Canada — Canadian Geodetic Reference System · https://www.nrcan.gc.ca/earth-sciences/geomatics/canadian-spatial-reference-system-csrs/9105 · Accessed .
- USGS — The National Map · https://www.usgs.gov/programs/national-geospatial-program/national-map · Accessed .
Cite this article
APA format:
Steve K. (2026). WGS 84 vs NAD83. Coordinately. https://coordinately.org/learn/wgs84-vs-nad83
BibTeX:
@misc{coordinately_wgs84vs_2026,
author = {K., Steve},
title = {WGS 84 vs NAD83},
year = {2026},
publisher = {Coordinately},
url = {https://coordinately.org/learn/wgs84-vs-nad83},
note = {Accessed: 2026-06-05}
}