Skip to content
transform

Convert ITRF2014 to ETRS89-DNK

Convert coordinates from ITRF2014 (EPSG:7789) to ETRS89-DNK (EPSG:10890) — official EPSG transformation parameters, accuracy and area of use, with a free in-browser converter.

Direct link to this transformation: epsgtransform.com/transform/epsg-7789-to-epsg-10890

Official EPSG transformation from ITRF2014 to ETRS89-DNK

The EPSG Geodetic Parameter Dataset defines 1 transformation between ITRF2014 (EPSG:7789) and ETRS89-DNK (EPSG:10890). Its parameters, accuracy and area of use are listed below.

ITRF2014 to ETRS89-DNK (1)

EPSG:10894±0.006 m
Method:
Concatenated operation
Area of use:
Denmark
Scope:
Geodesy.
  1. ITRF2014 to ETRF2014 (2) (null)
  2. ETRF2014 to NKG_ETRF14 (1) (null)
  3. NKG_ETRF14 to ETRS89-DNK (1) (null)

The coordinate epoch (in years) of the coordinates referenced to the source CRS (ITRF2014) is user-defined input and is used as the source epoch in step 2.

Convert EPSG:7789 to EPSG:10890 in code

The same transformation with common GIS tools and libraries:

from pyproj import Transformer

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

Source: EPSG:7789ITRF2014

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

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

Target: EPSG:10890ETRS89-DNK

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

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

Frequently asked questions

How accurate is converting ITRF2014 to ETRS89-DNK?
The most accurate official EPSG transformation between these systems is accurate to about ±0.006 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:10890 to EPSG:7789