Skip to content
transform

Convert UCS-2000 to ITRF2000

Convert coordinates from UCS-2000 (EPSG:5558) to ITRF2000 (EPSG:4919) — official EPSG transformation parameters, accuracy and area of use, with a free in-browser converter.

Direct link to this transformation: epsgtransform.com/transform/epsg-5558-to-epsg-4919

Official EPSG transformation from UCS-2000 to ITRF2000

The EPSG Geodetic Parameter Dataset defines 1 transformation between UCS-2000 (EPSG:5558) and ITRF2000 (EPSG:4919). Its parameters, accuracy and area of use are listed below.

UCS-2000 to ITRF2000 (1)

EPSG:7817±0 m
Method:
Geocentric translations (geocentric domain)
Area of use:
Ukraine
Scope:
Transformation of coordinates at 1m level of accuracy.
ParameterValueUnit
X-axis translation(tx)24.322metre
Y-axis translation(ty)-121.372metre
Z-axis translation(tz)-75.847metre

Derived for epoch 2005.0 at which time it defines UCS-2000 and is therefore exact (accuracy = 0) at this epoch. May be taken as approximate transformation UCS-2000 to ETRS89 and UCS-2000 to WGS 84 - see codes 9901 and 5840.

Convert EPSG:5558 to EPSG:4919 in code

The same transformation with common GIS tools and libraries:

from pyproj import Transformer

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

Source: EPSG:5558UCS-2000

geocentric Cartesian system (Earth-centred Earth-fixed) · Area of use: Ukraine

+proj=geocent +ellps=krass +units=m +no_defs +type=crs
More about EPSG:5558

Target: EPSG:4919ITRF2000

geocentric Cartesian system (Earth-centred Earth-fixed) · Area of use: World

+proj=geocent +ellps=GRS80 +units=m +no_defs +type=crs
More about EPSG:4919

Frequently asked questions

How accurate is converting UCS-2000 to ITRF2000?
The most accurate official EPSG transformation between these systems is accurate to about ±0 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:4919 to EPSG:5558