Skip to content
transform

Convert AGD84 to GDA94

Convert coordinates from AGD84 (EPSG:4203) to GDA94 (EPSG:4283) — official EPSG transformation parameters, accuracy and area of use, with a free in-browser converter.

Direct link to this transformation: epsgtransform.com/transform/epsg-4203-to-epsg-4283

Official EPSG transformations from AGD84 to GDA94

The EPSG Geodetic Parameter Dataset defines 4 transformations between AGD84 (EPSG:4203) and GDA94 (EPSG:4283). Each applies to a specific area — pick the one whose area of use covers your data.

AGD84 to GDA94 (4)

EPSG:1593±0.1 mBest accuracy
Method:
NTv2
Area of use:
Australia - Western Australia
Scope:
Transformation of coordinates at 0.1m level of accuracy.

Grid file: wa_0700.gsb

Replaces AGD84 to GDA94 (3) (code 1559) and then replaced by AGD84 to GDA94 (5) (code 1804). Input expects longitudes to be positive west; EPSG GeogCRS AGD84 (code 4203) and GDA94 (code 4283) both have longitudes positive east.

AGD84 to GDA94 (5)

EPSG:1804±0.1 m
Method:
NTv2
Area of use:
Australia - AGD84
Scope:
Transformation of coordinates at 0.1m level of accuracy.

Grid file: National 84 (02.07.01).gsb

Replaces AGD84 to GDA94 (4) (code 1593) which itself replaced variant 3 (code 1559). Input expects longitudes to be + west; EPSG GeogCRS AGD84 (code 4203) and GDA94 (code 4283) both have longitudes positive east. May be used as tfm to WGS 84 - see 15785

AGD84 to GDA94 (2)

EPSG:1280±1 m
Method:
Coordinate Frame rotation (geog2D domain)
Area of use:
Australia - AGD84
Scope:
Transformation of coordinates at 1m level of accuracy.
ParameterValueUnit
X-axis translation(tx)-117.763metre
Y-axis translation(ty)-51.51metre
Z-axis translation(tz)139.061metre
X-axis rotation(rx)-0.292arc-second
Y-axis rotation(ry)-0.443arc-second
Z-axis rotation(rz)-0.277arc-second
Scale difference(ds)-0.191parts per million

Replaces AGD84 to WGS 84 (2) (code 1236). May be taken as approximate transformation AGD84 to WGS 84 - see code 1669. Note: although applicable nationwide, AGD84 officially adopted only in Queensland, South Australia and Western Australia.

AGD84 to GDA94 (1)

EPSG:1279±5 m
Method:
Geocentric translations (geog2D domain)
Area of use:
Australia - AGD84
Scope:
Transformation of coordinates at 5m level of accuracy.
ParameterValueUnit
X-axis translation(tx)-128.5metre
Y-axis translation(ty)-53metre
Z-axis translation(tz)153.4metre

Derived at 327 stations. May be taken as approximate transformation AGD84 to WGS 84 - see code 15789. For higher accuracy use AGD84 to GDA94 (2) (code 1280). Note: AGD84 officially adopted only in Queensland, South Australia and Western Australia.

Convert EPSG:4203 to EPSG:4283 in code

The same transformation with common GIS tools and libraries:

from pyproj import Transformer

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

Source: EPSG:4203AGD84

geographic system using latitude and longitude on an ellipsoid · Area of use: Australia - AGD84

+proj=longlat +ellps=aust_SA +no_defs +type=crs
More about EPSG:4203

Target: EPSG:4283GDA94

geographic system using latitude and longitude on an ellipsoid · Area of use: Australia - GDA

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

Frequently asked questions

How accurate is converting AGD84 to GDA94?
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:4283 to EPSG:4203