Skip to content
transform

Convert OSGB36 to ETRS89

Convert coordinates from OSGB36 (EPSG:4277) to ETRS89 (EPSG:4258) — official EPSG transformation parameters, accuracy and area of use, with a free in-browser converter.

Direct link to this transformation: epsgtransform.com/transform/epsg-4277-to-epsg-4258

Official EPSG transformations from OSGB36 to ETRS89

The EPSG Geodetic Parameter Dataset defines 2 transformations between OSGB36 (EPSG:4277) and ETRS89 (EPSG:4258). Each applies to a specific area — pick the one whose area of use covers your data.

OSGB36 to ETRS89 (1)

EPSG:5338±0.03 mBest accuracy
Method:
NTv2
Area of use:
UK - Great Britain onshore; Isle of Man
Scope:
Transformation of coordinates at 0.03m level of accuracy.

Grid file: OSTN02_NTv2.gsb

Approximate alternative to official OSTN02 method (tfm code 7952). Accuracy at 2000 test points compared to OSTN02 (tfm code 1039): latitude 0.5mm av, 17mm max; longitude 0.8mm av, 23mm max. May be taken as approximate CT to WGS 84 - see code 5339.

OSGB36 to ETRS89 (2)

EPSG:7709±0.03 m
Method:
NTv2
Area of use:
UK - Britain and UKCS 49°45'N to 61°N, 9°W to 2°E
Scope:
Transformation of coordinates at 0.03m level of accuracy.

Grid file: OSTN15_NTv2_OSGBtoETRS.gsb

Approximate alternative to official OSTN15 method (tfm code 7953). May be taken as approximate transformation OSGB36 to WGS 84 - see code 7710. Replaces OSGB36 to ETRS89 (1) (tfm code 5338).

Convert EPSG:4277 to EPSG:4258 in code

The same transformation with common GIS tools and libraries:

from pyproj import Transformer

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

Source: EPSG:4277OSGB36

geographic system using latitude and longitude on an ellipsoid · Area of use: UK - Britain and UKCS 49°45'N to 61°N, 9°W to 2°E

+proj=longlat +ellps=airy +no_defs +type=crs
More about EPSG:4277

Target: EPSG:4258ETRS89

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

+proj=longlat +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +no_defs +type=crs
More about EPSG:4258

Frequently asked questions

How accurate is converting OSGB36 to ETRS89?
The most accurate official EPSG transformation between these systems is accurate to about ±0.03 m within its stated area of use. Browser-based converters approximate datum shifts with Helmert parameters; for surveying-grade work apply the official transformation (including the grid-shift files listed below) 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:4258 to EPSG:4277