Skip to content
transform

Convert WGS 84 to ETRS89

Convert coordinates from WGS 84 (EPSG:4978) to ETRS89 (EPSG:4936) — official EPSG transformation parameters, accuracy and area of use, with a free in-browser converter.

Direct link to this transformation: epsgtransform.com/transform/epsg-4978-to-epsg-4936

Official EPSG transformation from WGS 84 to ETRS89

The EPSG Geodetic Parameter Dataset defines 1 transformation between WGS 84 (EPSG:4978) and ETRS89 (EPSG:4936). Its parameters, accuracy and area of use are listed below.

WGS 84 to ETRS89 (2)

EPSG:9225±0.1 m
Method:
Time-specific Position Vector transform (geocen)
Area of use:
Europe - offshore North Sea - Germany and Netherlands east of 5°E
Scope:
Oil and gas exploration and production.
ParameterValueUnit
X-axis translation(tx)0.054metre
Y-axis translation(ty)0.051metre
Z-axis translation(tz)-0.085metre
X-axis rotation(rx)0.0021arc-second
Y-axis rotation(ry)0.0126arc-second
Z-axis rotation(rz)-0.0204arc-second
Scale difference(ds)0.0025parts per million
epoch2014.81year

Parameter values derived from ITRF2008 to ETRF2000 (1), code 7951, as a time-specific transformation @2014.81, assuming ITRF2008 = WGS 84 (G1762) = WGS 84 and ETRF2000 = ETRS89.

Convert EPSG:4978 to EPSG:4936 in code

The same transformation with common GIS tools and libraries:

from pyproj import Transformer

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

Source: EPSG:4978WGS 84

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

+proj=geocent +datum=WGS84 +units=m +no_defs +type=crs
More about EPSG:4978

Target: EPSG:4936ETRS89

geocentric Cartesian system (Earth-centred Earth-fixed) · Area of use: Europe - ETRF by country

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

Frequently asked questions

How accurate is converting WGS 84 to ETRS89?
The most accurate official EPSG transformation between these systems is accurate to about ±0.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:4936 to EPSG:4978