Source: EPSG:4326 — WGS 84
geographic system using latitude and longitude on an ellipsoid · Area of use: World (by country)
+proj=longlat +datum=WGS84 +no_defs +type=crsMore about EPSG:4326 →
Online coordinate converter from WGS 84 (EPSG:4326) to NAD83 (EPSG:4269). Enter your source coordinates and get the result instantly. All transformations happen in your browser — no data is sent to any server.
Converting from WGS 84 (EPSG:4326) to NAD83 (EPSG:4269) is the conversion needed to align GPS-derived data with U.S. federal geospatial datasets. NAD83 was originally aligned with ITRF at epoch 1986; modern WGS 84 tracks ITRF and has since diverged by 1-2 m due to North American plate motion.
This converter applies a Helmert seven-parameter transformation accurate to a few centimetres against NAD83(CORS96) — adequate for most analytical work. For surveying-grade or cadastral work specify a particular NAD83 realisation (NAD83(2011) is EPSG:6318) and apply the published Helmert parameters for that realisation.
Try it: Times Square, NYC
Input (EPSG:4326): -73.9857, 40.7484
The EPSG dataset defines official transformation parameters for the reverse direction. See NAD83 to WGS 84 — the parameters are invertible.
The same transformation with common GIS tools and libraries:
from pyproj import Transformer
transformer = Transformer.from_crs("EPSG:4326", "EPSG:4269", always_xy=True)
x, y = transformer.transform(-73.9857, 40.7484)
print(x, y)geographic system using latitude and longitude on an ellipsoid · Area of use: World (by country)
+proj=longlat +datum=WGS84 +no_defs +type=crsMore about EPSG:4326 →
geographic system using latitude and longitude on an ellipsoid · Area of use: North America - NAD83
+proj=longlat +datum=NAD83 +no_defs +type=crsMore about EPSG:4269 →