EPSG:CODE

EPSG:22994 Egypt 1907 / Extended Purple Belt

Projected · Egypt - west of 29°E; south of 28°11'N

Export Formats

OGC WKT
PROJCS[
    "Egypt 1907 / Extended Purple Belt",
    GEOGCS[
        "Egypt 1907",
        DATUM[
            "Egypt_1907",
            SPHEROID["Helmert 1906",6378200,298.3],
            TOWGS84[-127.535,113.495,-12.7,1.603747,-0.153612,-5.364408,5.33745]
        ],
        PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],
        UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],
        AUTHORITY["EPSG","4229"]
    ],
    PROJECTION["Transverse_Mercator"],
    PARAMETER["latitude_of_origin",30],
    PARAMETER["central_meridian",27],
    PARAMETER["scale_factor",1],
    PARAMETER["false_easting",700000],
    PARAMETER["false_northing",1200000],
    UNIT["metre",1,AUTHORITY["EPSG","9001"]],
    AXIS["Easting",EAST],
    AXIS["Northing",NORTH],
    AUTHORITY["EPSG","22994"]
]

Related Coordinate Systems

Available Transformations (5)

Transformations inherited from base CRS: EPSG:4229 (Egypt 1907)

Transformation Source → Target Accuracy (m)
4229 4326 1.2
4229 4322 5
4229 4326 6
4229 4326 11
4229 4326 30

Other CRS using Egypt 1907

Frequently Asked Questions

How do I add EPSG:22994 to GeoServer?

Add the following definition to your GeoServer configuration:

22994=PROJCS["Egypt 1907 / Extended Purple Belt",GEOGCS["Egypt 1907",DATUM["Egypt_1907",SPHEROID["Helmert 1906",6378200,298.3],TOWGS84[-127.535,113.495,-12.7,1.603747,-0.153612,-5.364408,5.33745]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4229"]],PROJECTION["Transverse_Mercator"],PARAMETER["latitude_of_origin",30],PARAMETER["central_meridian",27],PARAMETER["scale_factor",1],PARAMETER["false_easting",700000],PARAMETER["false_northing",1200000],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Easting",EAST],AXIS["Northing",NORTH],AUTHORITY["EPSG","22994"]]
Read the full GeoServer guide →

How do I add EPSG:22994 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (22994, 'EPSG', 22994, '+proj=tmerc +lat_0=30 +lon_0=27 +k=1 +x_0=700000 +y_0=1200000 +ellps=helmert +towgs84=-127.535,113.495,-12.7,1.603747,-0.153612,-5.364408,5.33745 +units=m +no_defs +type=crs', 'PROJCS["Egypt 1907 / Extended Purple Belt",GEOGCS["Egypt 1907",DATUM["Egypt_1907",SPHEROID["Helmert 1906",6378200,298.3],TOWGS84[-127.535,113.495,-12.7,1.603747,-0.153612,-5.364408,5.33745]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4229"]],PROJECTION["Transverse_Mercator"],PARAMETER["latitude_of_origin",30],PARAMETER["central_meridian",27],PARAMETER["scale_factor",1],PARAMETER["false_easting",700000],PARAMETER["false_northing",1200000],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Easting",EAST],AXIS["Northing",NORTH],AUTHORITY["EPSG","22994"]]');
Read the full PostGIS guide →

How do I add EPSG:22994 to MapServer?

Add the following definition to your MapServer configuration:

PROJECTION
  "+proj=tmerc"
  "+lat_0=30"
  "+lon_0=27"
  "+k=1"
  "+x_0=700000"
  "+y_0=1200000"
  "+ellps=helmert"
  "+towgs84=-127.535,113.495,-12.7,1.603747,-0.153612,-5.364408,5.33745"
  "+units=m"
  "+no_defs"
  "+type=crs"
END
Read the full MapServer guide →

How do I use EPSG:22994 with Proj4js?

Add the following definition to your Proj4js configuration:

proj4.defs("EPSG:22994", "+proj=tmerc +lat_0=30 +lon_0=27 +k=1 +x_0=700000 +y_0=1200000 +ellps=helmert +towgs84=-127.535,113.495,-12.7,1.603747,-0.153612,-5.364408,5.33745 +units=m +no_defs +type=crs");
Read the full Proj4js guide →