Skip to content
transform

Convert ISN93 to ISN2016

Convert coordinates from ISN93 (EPSG:4659) to ISN2016 (EPSG:8086) — official EPSG transformation parameters, accuracy and area of use, with a free in-browser converter.

Direct link to this transformation: epsgtransform.com/transform/epsg-4659-to-epsg-8086

Official EPSG transformation from ISN93 to ISN2016

The EPSG Geodetic Parameter Dataset defines 1 transformation between ISN93 (EPSG:4659) and ISN2016 (EPSG:8086). Its parameters, accuracy and area of use are listed below.

ISN93 to ISN2016 (1)

EPSG:9232±0.05 m
Method:
NTv2
Area of use:
Iceland
Scope:
Spatial referencing.

Grid file: ISN93_ISN2016.gsb

Grid transformation based on Kriging between ISN93 and ISN2016. Accuracy is better than 5 cm in stable areas but can be around 25 cm in areas that have suffered deformation due to earthquake or volcanic eruption.

Convert EPSG:4659 to EPSG:8086 in code

The same transformation with common GIS tools and libraries:

from pyproj import Transformer

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

Source: EPSG:4659ISN93

geographic system using latitude and longitude on an ellipsoid · Area of use: Iceland

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

Target: EPSG:8086ISN2016

geographic system using latitude and longitude on an ellipsoid · Area of use: Iceland

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

Frequently asked questions

How accurate is converting ISN93 to ISN2016?
The most accurate official EPSG transformation between these systems is accurate to about ±0.05 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:8086 to EPSG:4659