Skip to content
transform

Convert GDA2020 to GDA2020 + AVWS height

Convert coordinates from GDA2020 (EPSG:7843) to GDA2020 + AVWS height (EPSG:9462) — 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-9462

Official EPSG transformation from GDA2020 to GDA2020 + AVWS height

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

GDA2020 to GDA2020 + AVWS height (2)

EPSG:9693±0.1 m
Method:
Geog3D to Geog2D+GravityRelatedHeight (AUSGeoidv2)
Area of use:
Australia - GDA
Scope:
Derivation of gravity-related heights from GNSS observations.

Grid file: AGQG_20201120.gsb

Reversible alternative to GDA2020 to AVWS height (1) (code 9692). AGQG is used to realise AVWS. Uncertainties (4-8 cm across mainland Australia) given in accompanying file AGQG_uncertainty_20201120.gsb.

Convert EPSG:7843 to EPSG:9462 in code

The same transformation with common GIS tools and libraries:

from pyproj import Transformer

transformer = Transformer.from_crs("EPSG:7843", "EPSG:9462", 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:9462GDA2020 + AVWS height

compound horizontal + vertical reference system · Area of use: Australia - GDA

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

Frequently asked questions

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