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 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.
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).
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)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: World - N hemisphere - 6°E to 12°E - by country
+proj=utm +zone=32 +datum=WGS84 +units=m +no_defs +type=crsMore about EPSG:32632 →