Source: EPSG:4326 — WGS 84
geographic system using latitude and longitude on an ellipsoid · Area of use: World (by country)
+proj=longlat +datum=WGS84 +no_defs +type=crsMore about EPSG:4326 →
Online coordinate converter from WGS 84 (EPSG:4326) to OSGB36 / British National Grid (EPSG:27700). Enter your source coordinates and get the result instantly. All transformations happen in your browser — no data is sent to any server.
Converting from WGS 84 (EPSG:4326) to British National Grid (EPSG:27700) is the standard transformation for putting GPS data onto Ordnance Survey maps. The result is eastings and northings in metres on the OSGB36 datum, ranging from (0,0) at the south-west to about (700,000, 1,300,000) in the Shetlands.
The transformation involves both a projection change (Transverse Mercator) and a datum shift from WGS 84 to OSGB36, since OSGB36 was built on the Airy 1830 ellipsoid tuned for the British Isles. Helmert seven-parameter approximations give about 5 m accuracy across Great Britain. The Ordnance Survey's official OSTN15 grid-shift transformation gives sub-metre accuracy and is required for surveying-grade work — it cannot run in a browser without bundling the grid file.
For visual or sub-metre-tolerant work the result will match OS Maps to a few metres. For legal, cadastral or surveying applications use OS's official conversion service or a desktop GIS with OSTN15 installed.
Try it: Big Ben, London
Input (EPSG:4326): -0.1247, 51.5007
The same transformation with common GIS tools and libraries:
from pyproj import Transformer
transformer = Transformer.from_crs("EPSG:4326", "EPSG:27700", always_xy=True)
x, y = transformer.transform(-73.9857, 40.7484)
print(x, y)geographic system using latitude and longitude on an ellipsoid · Area of use: World (by country)
+proj=longlat +datum=WGS84 +no_defs +type=crsMore about EPSG:4326 →
projected system measured in linear units (typically metres) · Area of use: UK - Britain and UKCS 49°45'N to 61°N, 9°W to 2°E
+proj=tmerc +lat_0=49 +lon_0=-2 +k=0.9996012717 +x_0=400000 +y_0=-100000 +ellps=airy +units=m +no_defs +type=crsMore about EPSG:27700 →