Skip to content
transform

Convert EPSG:4326 to EPSG:32634

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.

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

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

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).

Why people convert EPSG:4326 to EPSG:32634

  • GPS surveys in Greece, Bulgaria, Romania, Ukraine
  • Topographic mapping in zone 34N coverage
  • Defence / NATO spatial data (which uses UTM/MGRS)
  • Engineering and infrastructure planning

Convert EPSG:4326 to EPSG:32634 in code

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)

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:32634WGS 84 / UTM zone 34N

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=crs
More about EPSG:32634

Frequently asked questions

How do I know which UTM zone applies to my point?
Take the longitude, add 180, divide by 6, round up — that's the zone. So 21°E → (21+180)/6 = 33.5 → zone 34. Negative longitudes (west of Greenwich) follow the same formula.
How accurate is converting WGS 84 to WGS 84 / UTM zone 34N?
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:32634 to EPSG:4326