EPSG:6988

IG05/12 Intermediate CRS

Attributes

Unit: metre

Geodetic CRS: IG05/12 Intermediate CRS

Datum: IG05/12 Intermediate Datum

Ellipsoid: GRS 1980

Prime meridian: Greenwich

Data source: EPSG

Information source: Survey of Israel.

Revision date: 2014-11-19

Center coordinates
4469100.89 3121087.51

Projected bounds:
4335094.04 2997764.74
4599005.5 3242776.48

WGS84 bounds:
34.17 29.45
35.69 33.28

Israel - onshore; Palestine Territory - onshore.
MapTiler banner

Definition: OGC Well Known Text

GEOCCS["IG05/12 Intermediate CRS",
    DATUM["IG05_12_Intermediate_Datum",
        SPHEROID["GRS 1980",6378137,298.257222101,
            AUTHORITY["EPSG","7019"]],
        AUTHORITY["EPSG","1144"]],
    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","6988"]]

Definition: OGC Well Known Text 2 (2019)

GEODCRS["IG05/12 Intermediate CRS",
    DATUM["IG05/12 Intermediate Datum",
        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["Intermediate stage in transformations - not used otherwise."],
        AREA["Israel - onshore; Palestine Territory - onshore."],
        BBOX[29.45,34.17,33.28,35.69]],
    ID["EPSG",6988]]

Definition: PROJ.4

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

Definition: JavaScript (Proj4js)

proj4.defs("EPSG:6988","+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": "IG05/12 Intermediate CRS",
    "datum": {
        "type": "GeodeticReferenceFrame",
        "name": "IG05/12 Intermediate Datum",
        "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": "Intermediate stage in transformations - not used otherwise.",
    "area": "Israel - onshore; Palestine Territory - onshore.",
    "bbox": {
        "south_latitude": 29.45,
        "west_longitude": 34.17,
        "north_latitude": 33.28,
        "east_longitude": 35.69
    },
    "id": {
        "authority": "EPSG",
        "code": 6988
    }
}

Definition: GeoServer

6988=GEOCCS["IG05/12 Intermediate CRS",DATUM["IG05_12_Intermediate_Datum",SPHEROID["GRS 1980",6378137,298.257222101,AUTHORITY["EPSG","7019"]],AUTHORITY["EPSG","1144"]],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","6988"]]

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 ( 6988, 'EPSG', 6988, '+proj=geocent +ellps=GRS80 +units=m +no_defs +type=crs', 'GEOCCS["IG05/12 Intermediate CRS",DATUM["IG05_12_Intermediate_Datum",SPHEROID["GRS 1980",6378137,298.257222101,AUTHORITY["EPSG","7019"]],AUTHORITY["EPSG","1144"]],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","6988"]]');