Skip to content
transform

Convert NAD83 to NAD83(2011)

Convert coordinates from NAD83 (EPSG:4269) to NAD83(2011) (EPSG:6318) — official EPSG transformation parameters, accuracy and area of use, with a free in-browser converter.

Direct link to this transformation: epsgtransform.com/transform/epsg-4269-to-epsg-6318

About converting NAD83 to NAD83(2011)

Converting from generic NAD83 (EPSG:4269) to NAD83(2011) (EPSG:6318) is the conversion needed when migrating older U.S. federal data — tagged with the unspecified "NAD83" code — to the modern NAD83(2011) realisation. The two share a name and ellipsoid but differ by up to a metre in seismically active regions.

The transformation is published by NGS and is applied via Helmert parameters or NADCON 5.0 grid files. For most analytical work the NADCON grid result and the Helmert approximation agree at the centimetre level; for survey-grade work always use NADCON 5.0 in a desktop GIS or NGS's NCAT online service.

Why people convert EPSG:4269 to EPSG:6318

  • Migrating legacy USGS/Census data to current realisation
  • Aligning data with CORS-derived GNSS positions
  • Cadastral and surveying-grade integration with modern realisations

Official EPSG transformation from NAD83 to NAD83(2011)

The EPSG Geodetic Parameter Dataset defines 1 transformation between NAD83 (EPSG:4269) and NAD83(2011) (EPSG:6318). Its parameters, accuracy and area of use are listed below.

NAD83 to NAD83(2011) (1)

EPSG:8971±1 m
Method:
Geocentric translations (geog2D domain)
Area of use:
USA - GoM OCS
Scope:
Oil and gas exploration and production.
ParameterValueUnit
X-axis translation(tx)0metre
Y-axis translation(ty)0metre
Z-axis translation(tz)0metre

Convert EPSG:4269 to EPSG:6318 in code

The same transformation with common GIS tools and libraries:

from pyproj import Transformer

transformer = Transformer.from_crs("EPSG:4269", "EPSG:6318", always_xy=True)
x, y = transformer.transform(-73.9857, 40.7484)
print(x, y)

Source: EPSG:4269NAD83

geographic system using latitude and longitude on an ellipsoid · Area of use: North America - NAD83

+proj=longlat +datum=NAD83 +no_defs +type=crs
More about EPSG:4269

Target: EPSG:6318NAD83(2011)

geographic system using latitude and longitude on an ellipsoid · Area of use: USA - CONUS and Alaska; PRVI

+proj=longlat +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +no_defs +type=crs
More about EPSG:6318

Frequently asked questions

Why do NAD83 and NAD83(2011) differ?
NAD83 has multiple realisations (1986, HARN, CORS96, NSRS2007, 2011). The generic 'NAD83' code refers to the original 1986 realisation, while NAD83(2011) is the current high-accuracy realisation. They differ by up to ~1 m, mostly in the western US.
How accurate is converting NAD83 to NAD83(2011)?
The most accurate official EPSG transformation between these systems is accurate to about ±1 m within its stated area of use. Browser-based converters approximate datum shifts with Helmert parameters; for surveying-grade work apply the official transformation in a desktop GIS.
Does my data leave the browser when I use this converter?
No. All coordinate transformations are computed locally in your browser using proj4js. The coordinates you enter are never transmitted to any server.
Need the reverse? Convert EPSG:6318 to EPSG:4269