EPSG:6991 — Israeli Grid 05/12
Projected · Asia - Middle East - Israel and Palestine onshore
Export Formats
OGC WKT
PROJCS[
"Israeli Grid 05/12",
GEOGCS[
"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["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],
AUTHORITY["EPSG","6990"]
],
PROJECTION["Transverse_Mercator"],
PARAMETER["latitude_of_origin",31.7343936111111],
PARAMETER["central_meridian",35.2045169444444],
PARAMETER["scale_factor",1.0000067],
PARAMETER["false_easting",219529.584],
PARAMETER["false_northing",626907.39],
UNIT["metre",1,AUTHORITY["EPSG","9001"]],
AXIS["Easting",EAST],
AXIS["Northing",NORTH],
AUTHORITY["EPSG","6991"]
]Related Coordinate Systems
Available Transformations (3)
Transformations inherited from base CRS: EPSG:6990 (IG05/12 Intermediate CRS)
Other CRS using IG05/12 Intermediate Datum
Frequently Asked Questions
How do I add EPSG:6991 to GeoServer?
Add the following definition to your GeoServer configuration:
6991=PROJCS["Israeli Grid 05/12",GEOGCS["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["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","6990"]],PROJECTION["Transverse_Mercator"],PARAMETER["latitude_of_origin",31.7343936111111],PARAMETER["central_meridian",35.2045169444444],PARAMETER["scale_factor",1.0000067],PARAMETER["false_easting",219529.584],PARAMETER["false_northing",626907.39],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Easting",EAST],AXIS["Northing",NORTH],AUTHORITY["EPSG","6991"]] Read the full GeoServer guide →
How do I add EPSG:6991 to PostGIS?
Add the following definition to your PostGIS configuration:
INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (6991, 'EPSG', 6991, '+proj=tmerc +lat_0=31.7343936111111 +lon_0=35.2045169444444 +k=1.0000067 +x_0=219529.584 +y_0=626907.39 +ellps=GRS80 +units=m +no_defs +type=crs', 'PROJCS["Israeli Grid 05/12",GEOGCS["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["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","6990"]],PROJECTION["Transverse_Mercator"],PARAMETER["latitude_of_origin",31.7343936111111],PARAMETER["central_meridian",35.2045169444444],PARAMETER["scale_factor",1.0000067],PARAMETER["false_easting",219529.584],PARAMETER["false_northing",626907.39],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Easting",EAST],AXIS["Northing",NORTH],AUTHORITY["EPSG","6991"]]'); Read the full PostGIS guide →
How do I add EPSG:6991 to MapServer?
Add the following definition to your MapServer configuration:
PROJECTION
"+proj=tmerc"
"+lat_0=31.7343936111111"
"+lon_0=35.2045169444444"
"+k=1.0000067"
"+x_0=219529.584"
"+y_0=626907.39"
"+ellps=GRS80"
"+units=m"
"+no_defs"
"+type=crs"
END Read the full MapServer guide →
How do I use EPSG:6991 with Proj4js?
Add the following definition to your Proj4js configuration:
proj4.defs("EPSG:6991", "+proj=tmerc +lat_0=31.7343936111111 +lon_0=35.2045169444444 +k=1.0000067 +x_0=219529.584 +y_0=626907.39 +ellps=GRS80 +units=m +no_defs +type=crs"); Read the full Proj4js guide →