EPSG:CODE

EPSG:2039 Israel 1993 / Israeli TM Grid

Projected · Asia - Middle East - Israel and Palestine onshore

Export Formats

OGC WKT
PROJCS[
    "Israel 1993 / Israeli TM Grid",
    GEOGCS[
        "Israel 1993",
        DATUM[
            "Israel_1993",
            SPHEROID["GRS 1980",6378137,298.257222101],
            TOWGS84[23.772,17.49,17.859,0.3132,1.85274,-1.67299,-5.4262]
        ],
        PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],
        UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],
        AUTHORITY["EPSG","4141"]
    ],
    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","2039"]
]

Related Coordinate Systems

Available Transformations (1)

Transformation Source → Target Accuracy (m)
28193 2039 3

Other CRS using Israel 1993

Frequently Asked Questions

How do I add EPSG:2039 to GeoServer?

Add the following definition to your GeoServer configuration:

2039=PROJCS["Israel 1993 / Israeli TM Grid",GEOGCS["Israel 1993",DATUM["Israel_1993",SPHEROID["GRS 1980",6378137,298.257222101],TOWGS84[23.772,17.49,17.859,0.3132,1.85274,-1.67299,-5.4262]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4141"]],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","2039"]]
Read the full GeoServer guide →

How do I add EPSG:2039 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (2039, 'EPSG', 2039, '+proj=tmerc +lat_0=31.7343936111111 +lon_0=35.2045169444444 +k=1.0000067 +x_0=219529.584 +y_0=626907.39 +ellps=GRS80 +towgs84=23.772,17.49,17.859,0.3132,1.85274,-1.67299,-5.4262 +units=m +no_defs +type=crs', 'PROJCS["Israel 1993 / Israeli TM Grid",GEOGCS["Israel 1993",DATUM["Israel_1993",SPHEROID["GRS 1980",6378137,298.257222101],TOWGS84[23.772,17.49,17.859,0.3132,1.85274,-1.67299,-5.4262]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4141"]],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","2039"]]');
Read the full PostGIS guide →

How do I add EPSG:2039 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"
  "+towgs84=23.772,17.49,17.859,0.3132,1.85274,-1.67299,-5.4262"
  "+units=m"
  "+no_defs"
  "+type=crs"
END
Read the full MapServer guide →

How do I use EPSG:2039 with Proj4js?

Add the following definition to your Proj4js configuration:

proj4.defs("EPSG:2039", "+proj=tmerc +lat_0=31.7343936111111 +lon_0=35.2045169444444 +k=1.0000067 +x_0=219529.584 +y_0=626907.39 +ellps=GRS80 +towgs84=23.772,17.49,17.859,0.3132,1.85274,-1.67299,-5.4262 +units=m +no_defs +type=crs");
Read the full Proj4js guide →