Skip to content
transform

Convert ED50 to ED87

Convert coordinates from ED50 (EPSG:4230) to ED87 (EPSG:4231) — official EPSG transformation parameters, accuracy and area of use, with a free in-browser converter.

Direct link to this transformation: epsgtransform.com/transform/epsg-4230-to-epsg-4231

Official EPSG transformation from ED50 to ED87

The EPSG Geodetic Parameter Dataset defines 1 transformation between ED50 (EPSG:4230) and ED87 (EPSG:4231). Its parameters, accuracy and area of use are listed below.

ED50 to ED87 (2)

EPSG:1147±1 m
Method:
Position Vector transformation (geog2D domain)
Area of use:
Norway - offshore north of 65°N; Svalbard
Scope:
Geodesy.
ParameterValueUnit
X-axis translation(tx)-1.51metre
Y-axis translation(ty)-0.84metre
Z-axis translation(tz)-3.5metre
X-axis rotation(rx)-1.893microradian
Y-axis rotation(ry)-0.687microradian
Z-axis rotation(rz)-2.764microradian
Scale difference(ds)0.609parts per million

Convert EPSG:4230 to EPSG:4231 in code

The same transformation with common GIS tools and libraries:

from pyproj import Transformer

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

Source: EPSG:4230ED50

geographic system using latitude and longitude on an ellipsoid · Area of use: Europe - ED50 by country

+proj=longlat +ellps=intl +no_defs +type=crs
More about EPSG:4230

Target: EPSG:4231ED87

geographic system using latitude and longitude on an ellipsoid · Area of use: Europe - west

+proj=longlat +ellps=intl +towgs84=-83.11,-97.38,-117.22,0.00569290865241986,-0.0446975835137458,0.0442850539012516,0.1218 +no_defs +type=crs
More about EPSG:4231

Frequently asked questions

How accurate is converting ED50 to ED87?
The most accurate official EPSG transformation between these systems is accurate to about ±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:4231 to EPSG:4230