EPSG:10723

UZGD2024

Attributes

Unit: metre

Geodetic CRS: UZGD2024

Datum: Uzbekistan Geodetic Datum 2024

Ellipsoid: GRS 1980

Prime meridian: Greenwich

Data source: EPSG

Information source: Cadastre Agency under the Ministry of Economy and Finance of the Republic of Uzbekistan, Order No. 160-08 dated 4th July 2024.

Revision date: 2024-12-12

Center coordinates
2057310.9 4328786.32

Projected bounds:
1294728.22 3706838.02
2845879.48 4870019.3

WGS84 bounds:
55.99 37.18
73.17 45.58

Uzbekistan.
MapTiler banner

Definition: OGC Well Known Text

GEOCCS["UZGD2024",
    DATUM["Uzbekistan_Geodetic_Datum_2024",
        SPHEROID["GRS 1980",6378137,298.257222101,
            AUTHORITY["EPSG","7019"]],
        AUTHORITY["EPSG","1392"]],
    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","10723"]]

Definition: OGC Well Known Text 2 (2019)

GEODCRS["UZGD2024",
    DATUM["Uzbekistan Geodetic Datum 2024",
        ELLIPSOID["GRS 1980",6378137,298.257222101,
            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["Uzbekistan."],
        BBOX[37.18,55.99,45.58,73.17]],
    ID["EPSG",10723]]

Definition: PROJ.4

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

Definition: JavaScript (Proj4js)

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

Definition: JSON

{
    "$schema": "https://proj.org/schemas/v0.7/projjson.schema.json",
    "type": "GeodeticCRS",
    "name": "UZGD2024",
    "datum": {
        "type": "GeodeticReferenceFrame",
        "name": "Uzbekistan Geodetic Datum 2024",
        "ellipsoid": {
            "name": "GRS 1980",
            "semi_major_axis": 6378137,
            "inverse_flattening": 298.257222101
        }
    },
    "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": "Uzbekistan.",
    "bbox": {
        "south_latitude": 37.18,
        "west_longitude": 55.99,
        "north_latitude": 45.58,
        "east_longitude": 73.17
    },
    "id": {
        "authority": "EPSG",
        "code": 10723
    }
}

Definition: GeoServer

10723=GEOCCS["UZGD2024",DATUM["Uzbekistan_Geodetic_Datum_2024",SPHEROID["GRS 1980",6378137,298.257222101,AUTHORITY["EPSG","7019"]],AUTHORITY["EPSG","1392"]],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","10723"]]

Definition: MapServer - MAPfile

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

Definition: Mapnik

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

Definition: SQL (PostGIS)

INSERT into spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext) values ( 10723, 'EPSG', 10723, '+proj=geocent +ellps=GRS80 +units=m +no_defs +type=crs', 'GEOCCS["UZGD2024",DATUM["Uzbekistan_Geodetic_Datum_2024",SPHEROID["GRS 1980",6378137,298.257222101,AUTHORITY["EPSG","7019"]],AUTHORITY["EPSG","1392"]],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","10723"]]');