[GIS] Lat/Long -> UK Easting/Northing

ccoordinate systemjavascript

I have a fairly accurate formula (implemented in C#), which allows me to convert UK Eastings/Northings to WGS84 Latitudes and Longitudes. Despite extensive Google searches, I could not find a formula to perform the reverse transformation. Could anyone point me in the right direction (a JavaScript/C# example would be ideal)?

Best Answer

There is a JavaScript from Convert between Latitude/Longitude & OS National Grid References which converts between easting/northings to lon/lat, which could be helpful.

It is also available in GitHub

Related Question