Source: EPSG:4326 — WGS 84
geographic system using latitude and longitude on an ellipsoid · Area of use: World (by country)
+proj=longlat +datum=WGS84 +no_defs +type=crsMore about EPSG:4326 →
Online coordinate converter from WGS 84 (EPSG:4326) to GDA94 / Australian Albers (EPSG:3577). Enter your source coordinates and get the result instantly. All transformations happen in your browser — no data is sent to any server.
Converting from WGS 84 (EPSG:4326) to GDA94 / Australian Albers (EPSG:3577) is the standard projection for nationwide thematic mapping of Australia — Geoscience Australia, ABS, BoM, CSIRO. The Albers Equal Area Conic projection on GDA94 preserves area across the continent, making it suitable for landscape-scale ecology, fire, and statistical analysis.
The GDA2020 equivalent (EPSG:9473) is gradually replacing this in new datasets. For data already in EPSG:3577 the conversion is straightforward; the datum difference between GDA94 and WGS 84 is roughly 1.8 m due to Australian plate motion since 1994.
The same transformation with common GIS tools and libraries:
from pyproj import Transformer
transformer = Transformer.from_crs("EPSG:4326", "EPSG:3577", always_xy=True)
x, y = transformer.transform(-73.9857, 40.7484)
print(x, y)geographic system using latitude and longitude on an ellipsoid · Area of use: World (by country)
+proj=longlat +datum=WGS84 +no_defs +type=crsMore about EPSG:4326 →
projected system measured in linear units (typically metres) · Area of use: Australia - onshore
+proj=aea +lat_0=0 +lon_0=132 +lat_1=-18 +lat_2=-36 +x_0=0 +y_0=0 +ellps=GRS80 +units=m +no_defs +type=crsMore about EPSG:3577 →