EPSG:4882

Slovenia 1996

Attributes

Unit: metre

Geodetic CRS: Slovenia 1996

Datum: Slovenia Geodetic Datum 1996

Ellipsoid: GRS 1980

Prime meridian: Greenwich

Data source: EPSG

Information source: Geodetska uprava Republike Slovenije, http://www.gu.gov.si

Revision date: 2008-04-04

Center coordinates
4275588.52 1145240.6

Projected bounds:
4185193.43 1010660.75
4362741.43 1281909.4

WGS84 bounds:
13.38 45.42
16.61 46.88

Slovenia - onshore and offshore.
MapTiler banner

Definition: OGC Well Known Text

GEOCCS["Slovenia 1996",
    DATUM["Slovenia_Geodetic_Datum_1996",
        SPHEROID["GRS 1980",6378137,298.257222101,
            AUTHORITY["EPSG","7019"]],
        AUTHORITY["EPSG","6765"]],
    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","4882"]]

Definition: OGC Well Known Text 2 (2019)

GEODCRS["Slovenia 1996",
    DATUM["Slovenia Geodetic Datum 1996",
        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["Slovenia - onshore and offshore."],
        BBOX[45.42,13.38,46.88,16.61]],
    ID["EPSG",4882]]

Definition: PROJ.4

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

Definition: JavaScript (Proj4js)

proj4.defs("EPSG:4882","+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": "Slovenia 1996",
    "datum": {
        "type": "GeodeticReferenceFrame",
        "name": "Slovenia Geodetic Datum 1996",
        "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": "Slovenia - onshore and offshore.",
    "bbox": {
        "south_latitude": 45.42,
        "west_longitude": 13.38,
        "north_latitude": 46.88,
        "east_longitude": 16.61
    },
    "id": {
        "authority": "EPSG",
        "code": 4882
    }
}

Definition: GeoServer

4882=GEOCCS["Slovenia 1996",DATUM["Slovenia_Geodetic_Datum_1996",SPHEROID["GRS 1980",6378137,298.257222101,AUTHORITY["EPSG","7019"]],AUTHORITY["EPSG","6765"]],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","4882"]]

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 ( 4882, 'EPSG', 4882, '+proj=geocent +ellps=GRS80 +units=m +no_defs +type=crs', 'GEOCCS["Slovenia 1996",DATUM["Slovenia_Geodetic_Datum_1996",SPHEROID["GRS 1980",6378137,298.257222101,AUTHORITY["EPSG","7019"]],AUTHORITY["EPSG","6765"]],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","4882"]]');