Skip to content
transform

Convert ITRF2014 to SWEREF99

Convert coordinates from ITRF2014 (EPSG:7789) to SWEREF99 (EPSG:4976) — official EPSG transformation parameters, accuracy and area of use, with a free in-browser converter.

Direct link to this transformation: epsgtransform.com/transform/epsg-7789-to-epsg-4976

Official EPSG transformation from ITRF2014 to SWEREF99

The EPSG Geodetic Parameter Dataset defines 1 transformation between ITRF2014 (EPSG:7789) and SWEREF99 (EPSG:4976). Its parameters, accuracy and area of use are listed below.

ITRF2014 to SWEREF99 (1)

EPSG:10824±0.004 m
Method:
Concatenated operation
Area of use:
Sweden
Scope:
Geodesy, topographic mapping.
  1. ITRF2014 to ETRF2014 (2) (null)
  2. ETRF2014 to NKG_ETRF14 (1) (null)
  3. NKG_ETRF14 to SWEREF99 (1) (null)

The coordinate epoch (in years) of the coordinates referenced to the source CRS (ITRF2014) is user-defined and is used as the source epoch in step 2. For coordinates originating before 2021-02-07, the NKG2008 transformation should be used.

Convert EPSG:7789 to EPSG:4976 in code

The same transformation with common GIS tools and libraries:

from pyproj import Transformer

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

Source: EPSG:7789ITRF2014

geocentric Cartesian system (Earth-centred Earth-fixed) · Area of use: World

+proj=geocent +ellps=GRS80 +units=m +no_defs +type=crs
More about EPSG:7789

Target: EPSG:4976SWEREF99

geocentric Cartesian system (Earth-centred Earth-fixed) · Area of use: Sweden

+proj=geocent +ellps=GRS80 +units=m +no_defs +type=crs
More about EPSG:4976

Frequently asked questions

How accurate is converting ITRF2014 to SWEREF99?
The most accurate official EPSG transformation between these systems is accurate to about ±0.004 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:4976 to EPSG:7789