Skip to content
transform

Convert GDA2020 to GDA2020 + AHD height

Convert coordinates from GDA2020 (EPSG:7843) to GDA2020 + AHD height (EPSG:9463) — official EPSG transformation parameters, accuracy and area of use, with a free in-browser converter.

Direct link to this transformation: epsgtransform.com/transform/epsg-7843-to-epsg-9463

Official EPSG transformation from GDA2020 to GDA2020 + AHD height

The EPSG Geodetic Parameter Dataset defines 1 transformation between GDA2020 (EPSG:7843) and GDA2020 + AHD height (EPSG:9463). Its parameters, accuracy and area of use are listed below.

GDA2020 to GDA2020 + AHD height (1)

EPSG:9466±0.15 m
Method:
Geog3D to Geog2D+GravityRelatedHeight (AUSGeoidv2)
Area of use:
Australia Christmas and Cocos - onshore
Scope:
Derivation of gravity-related heights from GNSS observations.

Grid file: AUSGeoid2020_20180201.gsb

Reversible alternative to GDA2020 to AHD height (1) (code 8451). Uncertainties given in accompanying file AUSGeoid2020_20180201_error.gsb

Convert EPSG:7843 to EPSG:9463 in code

The same transformation with common GIS tools and libraries:

from pyproj import Transformer

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

Source: EPSG:7843GDA2020

geographic system using latitude, longitude and ellipsoidal height · Area of use: Australia - GDA

+proj=longlat +ellps=GRS80 +no_defs +type=crs
More about EPSG:7843

Target: EPSG:9463GDA2020 + AHD height

compound horizontal + vertical reference system · Area of use: Australia Christmas and Cocos - onshore

+proj=longlat +ellps=GRS80 +geoidgrids=au_ga_AUSGeoid2020_20180201.tif +geoid_crs=WGS84 +vunits=m +no_defs +type=crs
More about EPSG:9463

Frequently asked questions

How accurate is converting GDA2020 to GDA2020 + AHD height?
The most accurate official EPSG transformation between these systems is accurate to about ±0.15 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:9463 to EPSG:7843