Skip to content
transform

Convert ITRF92 to NAD83(CSRS96)

Convert coordinates from ITRF92 (EPSG:4914) to NAD83(CSRS96) (EPSG:8230) — official EPSG transformation parameters, accuracy and area of use, with a free in-browser converter.

Direct link to this transformation: epsgtransform.com/transform/epsg-4914-to-epsg-8230

Official EPSG transformation from ITRF92 to NAD83(CSRS96)

The EPSG Geodetic Parameter Dataset defines 1 transformation between ITRF92 (EPSG:4914) and NAD83(CSRS96) (EPSG:8230). Its parameters, accuracy and area of use are listed below.

ITRF92 to NAD83(CSRS96) (1)

EPSG:8256±0 m
Method:
Time-dependent Position Vector tfm (geocentric)
Area of use:
Canada
Scope:
Geodesy. Defines NAD83(CSRS96).
ParameterValueUnit
X-axis translation(tx)0.936metre
Y-axis translation(ty)-1.984metre
Z-axis translation(tz)-0.543metre
X-axis rotation(rx)-27.5milliarc-second
Y-axis rotation(ry)-15.5milliarc-second
Z-axis rotation(rz)-10.7milliarc-second
Scale difference(ds)5parts per billion
rate tx0metres per year
rate ty0metres per year
rate tz0metres per year
rate rx-0.052milliarc-seconds per year
rate ry0.742milliarc-seconds per year
rate rz0.032milliarc-seconds per year
rate ds0parts per billion per year
epoch1988year

Scale difference in ppb and scale difference rate in ppb/yr where 1/billion = 1E-9 or nm/m. Superseded by CT from ITRF93 (see code 8257).

Convert EPSG:4914 to EPSG:8230 in code

The same transformation with common GIS tools and libraries:

from pyproj import Transformer

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

Source: EPSG:4914ITRF92

geocentric Cartesian system (Earth-centred Earth-fixed) · Area of use: World

+proj=geocent +ellps=GRS80 +units=m +no_defs +type=crs
More about EPSG:4914

Target: EPSG:8230NAD83(CSRS96)

geocentric Cartesian system (Earth-centred Earth-fixed) · Area of use: Canada

+proj=geocent +ellps=GRS80 +units=m +no_defs +type=crs
More about EPSG:8230

Frequently asked questions

How accurate is converting ITRF92 to NAD83(CSRS96)?
The most accurate official EPSG transformation between these systems is accurate to about ±0 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:8230 to EPSG:4914