Skip to content
transform

Convert Pulkovo 1995 to WGS 84

Convert coordinates from Pulkovo 1995 (EPSG:4200) 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-4200-to-epsg-4326

Official EPSG transformations from Pulkovo 1995 to WGS 84

The EPSG Geodetic Parameter Dataset defines 2 transformations between Pulkovo 1995 (EPSG:4200) and WGS 84 (EPSG:4326). Each applies to a specific area — pick the one whose area of use covers your data.

Pulkovo 1995 to WGS 84 (1)

EPSG:1281±1 mBest accuracy
Method:
Coordinate Frame rotation (geog2D domain)
Area of use:
Russia
Scope:
Transformation of coordinates at 1m level of accuracy.
ParameterValueUnit
X-axis translation(tx)24.82metre
Y-axis translation(ty)-131.21metre
Z-axis translation(tz)-82.66metre
X-axis rotation(rx)0arc-second
Y-axis rotation(ry)0arc-second
Z-axis rotation(rz)-0.16arc-second
Scale difference(ds)-0.12parts per million

Derived through concatenation of Pulkovo 1995 to PZ-90 (1) (tfm code 1257) and PZ-90 to WGS 84 (2) (tfm code 1244). Mandated for use in Russia by GOST R 51794-2001, but this has been superseded by GOST R 51794-2008. Replaced by tfm code 5043.

Pulkovo 1995 to WGS 84 (2)

EPSG:5043±1 m
Method:
Coordinate Frame rotation (geog2D domain)
Area of use:
Russia
Scope:
Transformation of coordinates at 1m level of accuracy.
ParameterValueUnit
X-axis translation(tx)24.47metre
Y-axis translation(ty)-130.89metre
Z-axis translation(tz)-81.56metre
X-axis rotation(rx)0arc-second
Y-axis rotation(ry)0arc-second
Z-axis rotation(rz)-0.13arc-second
Scale difference(ds)-0.22parts per million

Derived through concatenation of Pulkovo 1995 to PZ-90.02 to WGS 84. Replaces Pulkovo 1995 to WGS 84 (1), tfm code 1281.

Convert EPSG:4200 to EPSG:4326 in code

The same transformation with common GIS tools and libraries:

from pyproj import Transformer

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

Source: EPSG:4200Pulkovo 1995

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

+proj=longlat +ellps=krass +towgs84=24.47,-130.89,-81.56,0,0,0.13,-0.22 +no_defs +type=crs
More about EPSG:4200

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

How accurate is converting Pulkovo 1995 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:4200