Skip to content
transform

Convert NAD83(HARN) to NAD83(NSRS2007)

Convert coordinates from NAD83(HARN) (EPSG:4152) to NAD83(NSRS2007) (EPSG:4759) — official EPSG transformation parameters, accuracy and area of use, with a free in-browser converter.

Direct link to this transformation: epsgtransform.com/transform/epsg-4152-to-epsg-4759

Official EPSG transformations from NAD83(HARN) to NAD83(NSRS2007)

The EPSG Geodetic Parameter Dataset defines 2 transformations between NAD83(HARN) (EPSG:4152) and NAD83(NSRS2007) (EPSG:4759). Each applies to a specific area — pick the one whose area of use covers your data.

NAD83(HARN) to NAD83(NSRS2007) (2)

EPSG:8551±0.05 mBest accuracy
Method:
NADCON5 (3D)
Area of use:
USA - Alaska including EEZ
Scope:
Geodesy.

Grid files: nadcon5.nad83_1992.nad83_2007.alaska.lat.trn.20160901.bnadcon5.nad83_1992.nad83_2007.alaska.lon.trn.20160901.b

Uses NADCON5 method which expects longitudes positive east in range 0-360°; EPSG source and target CRSs have longitudes positive east in range -180° to +180°.

NAD83(HARN) to NAD83(NSRS2007) (1)

EPSG:4461±0.1 m
Method:
Geocentric translations (geog2D domain)
Area of use:
USA - CONUS - onshore
Scope:
Transformation of coordinates at 0.2m level of accuracy.
ParameterValueUnit
X-axis translation(tx)0metre
Y-axis translation(ty)0metre
Z-axis translation(tz)0metre

Accuracy 0.1 to 0.2m in California, 0.05-0.11 in Oregon, elsewhere better than 0.05m.

Convert EPSG:4152 to EPSG:4759 in code

The same transformation with common GIS tools and libraries:

from pyproj import Transformer

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

Source: EPSG:4152NAD83(HARN)

geographic system using latitude and longitude on an ellipsoid · Area of use: USA - HARN

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

Target: EPSG:4759NAD83(NSRS2007)

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:4759

Frequently asked questions

How accurate is converting NAD83(HARN) to NAD83(NSRS2007)?
The most accurate official EPSG transformation between these systems is accurate to about ±0.05 m within its stated area of use. Browser-based converters approximate datum shifts with Helmert parameters; for surveying-grade work apply the official transformation (including the grid-shift files listed below) 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:4759 to EPSG:4152