Skip to content
transform

Convert GDA2020 to WGS 84 (Transit)

Convert coordinates from GDA2020 (EPSG:7842) to WGS 84 (Transit) (EPSG:7815) — official EPSG transformation parameters, accuracy and area of use, with a free in-browser converter.

Direct link to this transformation: epsgtransform.com/transform/epsg-7842-to-epsg-7815

Official EPSG transformation from GDA2020 to WGS 84 (Transit)

The EPSG Geodetic Parameter Dataset defines 1 transformation between GDA2020 (EPSG:7842) and WGS 84 (Transit) (EPSG:7815). Its parameters, accuracy and area of use are listed below.

GDA2020 to WGS 84 (Transit) (1)

EPSG:8887±3 m
Method:
Geocentric translations (geocentric domain)
Area of use:
Australia - GDA
Scope:
(null/copy) Approximation for medium and low accuracy applications assuming equality between plate-fixed static and earth-fixed dynamic CRSs, ignoring static/dynamic CRS differences.
ParameterValueUnit
X-axis translation(tx)0metre
Y-axis translation(ty)0metre
Z-axis translation(tz)0metre

Approximation at the 3m level assuming WGS 84 (Transit) is equivalent to ITRF2014 within the accuracy of the transformation.

Convert EPSG:7842 to EPSG:7815 in code

The same transformation with common GIS tools and libraries:

from pyproj import Transformer

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

Source: EPSG:7842GDA2020

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

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

Target: EPSG:7815WGS 84 (Transit)

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

+proj=geocent +ellps=WGS84 +units=m +no_defs +type=crs
More about EPSG:7815

Frequently asked questions

How accurate is converting GDA2020 to WGS 84 (Transit)?
The most accurate official EPSG transformation between these systems is accurate to about ±3 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:7815 to EPSG:7842