Skip to content
transform

Convert EPSG:4326 to EPSG:5514

Online coordinate converter from WGS 84 (EPSG:4326) to S-JTSK / Krovak East North (EPSG:5514). 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-5514

About converting WGS 84 to S-JTSK / Krovak East North

Converting from WGS 84 (EPSG:4326) to S-JTSK / Krovak East-North (EPSG:5514) is the standard transformation for working with Czech and Slovak cadastral and federal mapping data. The Krovak East-North projection is a unique double-stereographic conic projection designed in 1922 specifically for the elongated NE-SW geometry of former Czechoslovakia.

The conversion involves both the Krovak projection and a datum shift from WGS 84 to S-JTSK on the Bessel 1841 ellipsoid. Helmert seven-parameter approximations give a few-decimetre accuracy across the country; the official ČÚZK grid transformation is more precise.

Why people convert EPSG:4326 to EPSG:5514

  • Czech and Slovak cadastre
  • ČÚZK national mapping
  • Public administration GIS in CZ/SK

Try it: Prague Old Town Square

Input (EPSG:4326): 14.4221, 50.0875

Convert EPSG:4326 to EPSG:5514 in code

The same transformation with common GIS tools and libraries:

from pyproj import Transformer

transformer = Transformer.from_crs("EPSG:4326", "EPSG:5514", 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:5514S-JTSK / Krovak East North

projected system measured in linear units (typically metres) · Area of use: Europe - Czechoslovakia

+proj=krovak +lat_0=49.5 +lon_0=24.8333333333333 +alpha=30.2881397527778 +k=0.9999 +x_0=0 +y_0=0 +ellps=bessel +towgs84=589,76,480,0,0,0,0 +units=m +no_defs +type=crs
More about EPSG:5514

Frequently asked questions

EPSG:5514 vs EPSG:5513 — which Krovak should I use?
Both project to S-JTSK / Krovak. EPSG:5513 uses the old 'South, West' axis order; EPSG:5514 swaps to East, North to match modern GIS conventions. EPSG:5514 is preferred for new work.
How accurate is converting WGS 84 to S-JTSK / Krovak East North?
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:5514 to EPSG:4326