EPSG:CODE

EPSG:4281 Palestine 1923

Geographic 2D · Asia - Middle East - Israel, Jordan and Palestine onshore

Export Formats

OGC WKT
GEOGCS[
    "Palestine 1923",
    DATUM[
        "Palestine_1923",
        SPHEROID["Clarke 1880 (Benoit)",6378300.789,293.466315538981],
        TOWGS84[-275.7224,94.7824,340.8944,-8.001,-4.42,-11.821,1]
    ],
    PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],
    UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],
    AUTHORITY["EPSG","4281"]
]

Related Coordinate Systems

Available Transformations (3)

Transformation Source → Target Accuracy (m)
4281 4141 1.5
4281 4326 2
4281 4326 2.5

Other CRS using Palestine 1923

Frequently Asked Questions

How do I add EPSG:4281 to GeoServer?

Add the following definition to your GeoServer configuration:

4281=GEOGCS["Palestine 1923",DATUM["Palestine_1923",SPHEROID["Clarke 1880 (Benoit)",6378300.789,293.466315538981],TOWGS84[-275.7224,94.7824,340.8944,-8.001,-4.42,-11.821,1]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4281"]]
Read the full GeoServer guide →

How do I add EPSG:4281 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (4281, 'EPSG', 4281, '+proj=longlat +a=6378300.789 +b=6356566.435 +towgs84=-275.7224,94.7824,340.8944,-8.001,-4.42,-11.821,1 +no_defs +type=crs', 'GEOGCS["Palestine 1923",DATUM["Palestine_1923",SPHEROID["Clarke 1880 (Benoit)",6378300.789,293.466315538981],TOWGS84[-275.7224,94.7824,340.8944,-8.001,-4.42,-11.821,1]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4281"]]');
Read the full PostGIS guide →

How do I add EPSG:4281 to MapServer?

Add the following definition to your MapServer configuration:

PROJECTION
  "+proj=longlat"
  "+a=6378300.789"
  "+b=6356566.435"
  "+towgs84=-275.7224,94.7824,340.8944,-8.001,-4.42,-11.821,1"
  "+no_defs"
  "+type=crs"
END
Read the full MapServer guide →

How do I use EPSG:4281 with Proj4js?

Add the following definition to your Proj4js configuration:

proj4.defs("EPSG:4281", "+proj=longlat +a=6378300.789 +b=6356566.435 +towgs84=-275.7224,94.7824,340.8944,-8.001,-4.42,-11.821,1 +no_defs +type=crs");
Read the full Proj4js guide →