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 34N (EPSG:32634). 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 34N (EPSG:32634) covers 18°E to 24°E in the northern hemisphere — Greece, Bulgaria, eastern Romania, eastern Ukraine, parts of Turkey, Egypt and central Africa.
Like other UTM zones, the projection is Transverse Mercator with central meridian 21°E, scale 0.9996, false easting 500,000 m and false northing 0. Distortion stays under 1/2500 within the central 6° band; beyond ±3° from 21°E, prefer the adjacent zone (EPSG:32633 west, EPSG:32635 east).
The same transformation with common GIS tools and libraries:
from pyproj import Transformer
transformer = Transformer.from_crs("EPSG:4326", "EPSG:32634", 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 - 18°E to 24°E - by country
+proj=utm +zone=34 +datum=WGS84 +units=m +no_defs +type=crsMore about EPSG:32634 →