Skip to content
transform

Convert ED87 to WGS 84

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

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

Official EPSG transformations from ED87 to WGS 84

The EPSG Geodetic Parameter Dataset defines 2 transformations between ED87 (EPSG:4231) and WGS 84 (EPSG:4326). Each applies to a specific area — pick the one whose area of use covers your data.

ED87 to WGS 84 (1)

EPSG:1146±0.8 mBest accuracy
Method:
Position Vector transformation (geog2D domain)
Area of use:
Europe - North Sea
Scope:
Not known.
ParameterValueUnit
X-axis translation(tx)-82.981metre
Y-axis translation(ty)-99.719metre
Z-axis translation(tz)-110.709metre
X-axis rotation(rx)-0.5076microradian
Y-axis rotation(ry)0.1503microradian
Z-axis rotation(rz)0.3898microradian
Scale difference(ds)-0.3143parts per million

ED87 to WGS 84 (2)

EPSG:3905±1 m
Method:
Position Vector transformation (geog2D domain)
Area of use:
Europe - west
Scope:
(null/copy) Approximation for medium and low accuracy applications assuming equality between plate-fixed static and earth-fixed dynamic CRSs, ignoring static/dynamic CRS differences.
ParameterValueUnit
X-axis translation(tx)-83.11metre
Y-axis translation(ty)-97.38metre
Z-axis translation(tz)-117.22metre
X-axis rotation(rx)0.0276microradian
Y-axis rotation(ry)-0.2167microradian
Z-axis rotation(rz)0.2147microradian
Scale difference(ds)0.1218parts per million

Parameter values taken from ED87 to ETRS89 (1) (tfm code 4078) assuming that ETRS89 is coincident with WGS 84 within the accuracy of the transformation. Used as a tfm between ED50 and WGS 84 - see code 3904.

Convert EPSG:4231 to EPSG:4326 in code

The same transformation with common GIS tools and libraries:

from pyproj import Transformer

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

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

Target: EPSG:4326WGS 84

geographic system using latitude and longitude on an ellipsoid · Area of use: World (by country)

+proj=longlat +datum=WGS84 +no_defs +type=crs
More about EPSG:4326

Frequently asked questions

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