Skip to content
transform

Convert EPSG:4326 to EPSG:25832

Online coordinate converter from WGS 84 (EPSG:4326) to ETRS89 / UTM zone 32N (EPSG:25832). Enter your source coordinates and get the result instantly. All transformations happen in your browser — no data is sent to any server.

Direct link to this transformation: epsgtransform.com/transform/epsg-4326-to-epsg-25832

About converting WGS 84 to ETRS89 / UTM zone 32N

Converting from WGS 84 (EPSG:4326) to ETRS89 / UTM Zone 32N (EPSG:25832) is the standard projection for any work in Germany, Denmark or the eastern Netherlands. Zone 32N covers 6°E to 12°E in the northern hemisphere.

The conversion involves both a projection change (Transverse Mercator on GRS 80) and a small datum shift from WGS 84 to ETRS89. ETRS89 is fixed to the Eurasian plate at epoch 1989, while WGS 84 tracks ITRF; in Europe the two currently differ by roughly 60 cm and the gap grows by about 2.5 cm/year.

For most visualisation and exchange the difference is negligible. For surveying-grade work use a properly time-stamped ETRS89 realisation (e.g. ETRS89-DREF91 in Germany).

Why people convert EPSG:4326 to EPSG:25832

  • Imports into German Geobasis-DE / ATKIS data
  • Danish national mapping and cadastre
  • Cross-border infrastructure projects within UTM 32N
  • INSPIRE-compliant data exchange

Try it: Brandenburg Gate, Berlin

Input (EPSG:4326): 13.3777, 52.5163

Convert EPSG:4326 to EPSG:25832 in code

The same transformation with common GIS tools and libraries:

from pyproj import Transformer

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

Source: EPSG:4326WGS 84

geographic system using latitude and longitude on an ellipsoid · Area of use: World (by country)

+proj=longlat +datum=WGS84 +no_defs +type=crs
More about EPSG:4326

Target: EPSG:25832ETRS89 / UTM zone 32N

projected system measured in linear units (typically metres) · Area of use: Europe - 6°E to 12°E and ETRS89 by country

+proj=utm +zone=32 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs +type=crs
More about EPSG:25832

Frequently asked questions

EPSG:25832 vs EPSG:32632 — which UTM 32N should I use?
Both project the same zone, but EPSG:25832 uses ETRS89 (Europe-fixed) and EPSG:32632 uses WGS 84 (drifts globally). For European data prefer EPSG:25832; the difference is ~60 cm today.
How accurate is converting WGS 84 to ETRS89 / UTM zone 32N?
Projection-only conversions are accurate to floating-point precision. If a datum shift is involved, browser-based tools use Helmert parameters which are accurate to roughly 1-5 m; for surveying-grade work apply the official grid-shift 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:25832 to EPSG:4326