Skip to content
transform

Convert TUREF to WGS 84

Convert coordinates from TUREF (EPSG:5252) to WGS 84 (EPSG:4326) — official EPSG transformation parameters, accuracy and area of use, with a free in-browser converter.

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

About converting TUREF to WGS 84

TUREF (EPSG:5252) is the Turkish National Reference Frame, an ITRF96 realisation at epoch 2005.0 on the GRS 1980 ellipsoid. It is the basis of Turkey's modern mapping, including the TM zones used for large-scale work (EPSG:5253–5259) and the 3-degree Gauss–Krüger heritage.

TUREF and WGS 84 agree at the metre level — the published EPSG operation is effectively a null transformation with ±1 m accuracy. Real-world discrepancies in Turkish data almost always trace back to the older ED50-based systems, not TUREF.

Anatolia's active tectonics (the North and East Anatolian faults) mean precise work increasingly references epochs explicitly; for GIS purposes TUREF ≈ WGS 84 is a safe working assumption.

Why people convert EPSG:5252 to EPSG:4326

  • Publishing Turkish TM-zone data on global basemaps
  • Integrating TUREF cadastral layers with GPS surveys
  • Migrating ED50-era Turkish data via modern frames
  • Cross-border projects with ETRS89/ITRF neighbours

Try it: Ankara, Turkey

Input (EPSG:5252): 32.8597, 39.9334

Official EPSG transformation from TUREF to WGS 84

The EPSG Geodetic Parameter Dataset defines 1 transformation between TUREF (EPSG:5252) and WGS 84 (EPSG:4326). Its parameters, accuracy and area of use are listed below.

TUREF to WGS 84 (1)

EPSG:5261±1 m
Method:
Geocentric translations (geog2D domain)
Area of use:
Turkey
Scope:
(null/copy) Approximation for medium and low accuracy applications assuming equality between plate-fixed static and earth-fixed dynamic CRSs, ignoring static/dynamic CRS differences.
ParameterValueUnit
X-axis translation(tx)0metre
Y-axis translation(ty)0metre
Z-axis translation(tz)0metre

Approximation at the +/- 1m level assuming that TUREF is equivalent to WGS 84.

Convert EPSG:5252 to EPSG:4326 in code

The same transformation with common GIS tools and libraries:

from pyproj import Transformer

transformer = Transformer.from_crs("EPSG:5252", "EPSG:4326", always_xy=True)
x, y = transformer.transform(-73.9857, 40.7484)
print(x, y)

Source: EPSG:5252TUREF

geographic system using latitude and longitude on an ellipsoid · Area of use: Turkey

+proj=longlat +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +no_defs +type=crs
More about EPSG:5252

Target: 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

Frequently asked questions

Is TUREF the same as WGS 84?
For mapping, effectively yes — they agree to about a metre. For geodetic work they are distinct frames: TUREF is fixed to ITRF96 epoch 2005.0 while WGS 84 tracks current ITRF.
Which projected systems use TUREF?
The TUREF / TM zones (EPSG:5253–5259) at 3-degree intervals are the standard for large-scale Turkish mapping, replacing the ED50-based zones.
How accurate is converting TUREF to WGS 84?
The most accurate official EPSG transformation between these systems is accurate to about ±1 m within its stated area of use. Browser-based converters approximate datum shifts with Helmert parameters; for surveying-grade work apply the official 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:4326 to EPSG:5252