Skip to content
transform

Convert EPSG:4326 to EPSG:32632

Online coordinate converter from WGS 84 (EPSG:4326) to WGS 84 / UTM zone 32N (EPSG:32632). 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-32632

About converting WGS 84 to WGS 84 / UTM zone 32N

Converting from WGS 84 (EPSG:4326) to UTM Zone 32N (EPSG:32632) projects geographic lat/lon onto the UTM grid covering 6°E to 12°E, including all of Germany and Denmark, the eastern half of the Netherlands, parts of Norway, Italy and Tunisia. Eastings are biased by 500,000 m so values are positive across the zone; northings count from the equator.

UTM is the workhorse for any field-survey or engineering project requiring metric coordinates over a large area without the high distortion of Web Mercator. Distortion stays under 1/2500 (40 cm per km) within the central 6° band. For points outside ±3° from the central meridian (9°E), prefer the adjacent zone — EPSG:32631 (zone 31N) or EPSG:32633 (zone 33N).

Why people convert EPSG:4326 to EPSG:32632

  • GPS field surveys requiring metric coordinates
  • Engineering and construction in zone 32N coverage
  • MGRS conversion (UTM is the basis of MGRS)
  • NATO standard spatial data exchange in Europe

Convert EPSG:4326 to EPSG:32632 in code

The same transformation with common GIS tools and libraries:

from pyproj import Transformer

transformer = Transformer.from_crs("EPSG:4326", "EPSG:32632", 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:32632WGS 84 / UTM zone 32N

projected system measured in linear units (typically metres) · Area of use: World - N hemisphere - 6°E to 12°E - by country

+proj=utm +zone=32 +datum=WGS84 +units=m +no_defs +type=crs
More about EPSG:32632

Frequently asked questions

EPSG:32632 vs EPSG:25832 — which UTM 32N should I use?
EPSG:32632 uses the WGS 84 datum (drifts globally with ITRF). EPSG:25832 uses ETRS89 (fixed to the Eurasian plate). In Europe they currently differ by ~60 cm. For European data EPSG:25832 is the INSPIRE-compatible default.
How accurate is converting WGS 84 to WGS 84 / 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:32632 to EPSG:4326