EPSG:5558

UCS-2000

Attributes

Unit: metre

Geodetic CRS: UCS-2000

Datum: Ukraine 2000

Ellipsoid: Krassowsky 1940

Prime meridian: Greenwich

Data source: EPSG

Information source: Berlin 2008 GNSS Symposium paper 4-7 ("Creation of ZAKPOS active Network Reference Stations for Transcarpathian Region of Ukraine") by Savchuk et al.

Revision date: 2021-12-03

Center coordinates
3674166.81 2222223.54

Projected bounds:
2980853.13 1471142.78
4314513.42 3005615.95

WGS84 bounds:
22.15 43.18
40.18 52.38

Ukraine - onshore and offshore.
MapTiler banner

Definition: OGC Well Known Text

GEOCCS["UCS-2000",
    DATUM["Ukraine_2000",
        SPHEROID["Krassowsky 1940",6378245,298.3,
            AUTHORITY["EPSG","7024"]],
        AUTHORITY["EPSG","1077"]],
    PRIMEM["Greenwich",0,
        AUTHORITY["EPSG","8901"]],
    UNIT["metre",1,
        AUTHORITY["EPSG","9001"]],
    AXIS["Geocentric X",OTHER],
    AXIS["Geocentric Y",OTHER],
    AXIS["Geocentric Z",NORTH],
    AUTHORITY["EPSG","5558"]]

Definition: OGC Well Known Text 2 (2019)

GEODCRS["UCS-2000",
    DATUM["Ukraine 2000",
        ELLIPSOID["Krassowsky 1940",6378245,298.3,
            LENGTHUNIT["metre",1]]],
    PRIMEM["Greenwich",0,
        ANGLEUNIT["degree",0.0174532925199433]],
    CS[Cartesian,3],
        AXIS["(X)",geocentricX,
            ORDER[1],
            LENGTHUNIT["metre",1]],
        AXIS["(Y)",geocentricY,
            ORDER[2],
            LENGTHUNIT["metre",1]],
        AXIS["(Z)",geocentricZ,
            ORDER[3],
            LENGTHUNIT["metre",1]],
    USAGE[
        SCOPE["Geodesy."],
        AREA["Ukraine - onshore and offshore."],
        BBOX[43.18,22.15,52.38,40.18]],
    ID["EPSG",5558]]

Definition: PROJ.4

+proj=geocent +ellps=krass +units=m +no_defs +type=crs

Definition: JavaScript (Proj4js)

proj4.defs("EPSG:5558","+proj=geocent +ellps=krass +units=m +no_defs +type=crs");

Definition: JSON

{
    "$schema": "https://proj.org/schemas/v0.7/projjson.schema.json",
    "type": "GeodeticCRS",
    "name": "UCS-2000",
    "datum": {
        "type": "GeodeticReferenceFrame",
        "name": "Ukraine 2000",
        "ellipsoid": {
            "name": "Krassowsky 1940",
            "semi_major_axis": 6378245,
            "inverse_flattening": 298.3
        }
    },
    "coordinate_system": {
        "subtype": "Cartesian",
        "axis": [
            {
                "name": "Geocentric X",
                "abbreviation": "X",
                "direction": "geocentricX",
                "unit": "metre"
            },
            {
                "name": "Geocentric Y",
                "abbreviation": "Y",
                "direction": "geocentricY",
                "unit": "metre"
            },
            {
                "name": "Geocentric Z",
                "abbreviation": "Z",
                "direction": "geocentricZ",
                "unit": "metre"
            }
        ]
    },
    "scope": "Geodesy.",
    "area": "Ukraine - onshore and offshore.",
    "bbox": {
        "south_latitude": 43.18,
        "west_longitude": 22.15,
        "north_latitude": 52.38,
        "east_longitude": 40.18
    },
    "id": {
        "authority": "EPSG",
        "code": 5558
    }
}

Definition: GeoServer

5558=GEOCCS["UCS-2000",DATUM["Ukraine_2000",SPHEROID["Krassowsky 1940",6378245,298.3,AUTHORITY["EPSG","7024"]],AUTHORITY["EPSG","1077"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Geocentric X",OTHER],AXIS["Geocentric Y",OTHER],AXIS["Geocentric Z",NORTH],AUTHORITY["EPSG","5558"]]

Definition: MapServer - MAPfile

PROJECTION
	"proj=geocent"
	"ellps=krass"
	"units=m"
	"no_defs"
	"type=crs"
END

Definition: Mapnik

<?xml version="1.0" encoding="utf-8"?>
<Map srs="+proj=geocent +ellps=krass +units=m +no_defs +type=crs">
	<Layer srs="+proj=geocent +ellps=krass +units=m +no_defs +type=crs">
	</Layer>
</Map>

Definition: SQL (PostGIS)

INSERT into spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext) values ( 5558, 'EPSG', 5558, '+proj=geocent +ellps=krass +units=m +no_defs +type=crs', 'GEOCCS["UCS-2000",DATUM["Ukraine_2000",SPHEROID["Krassowsky 1940",6378245,298.3,AUTHORITY["EPSG","7024"]],AUTHORITY["EPSG","1077"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Geocentric X",OTHER],AXIS["Geocentric Y",OTHER],AXIS["Geocentric Z",NORTH],AUTHORITY["EPSG","5558"]]');