EPSG:CODE

EPSG:6312 CGRS93 / Cyprus Local Transverse Mercator

Projected · Cyprus - onshore

Export Formats

OGC WKT
PROJCS[
    "CGRS93 / Cyprus Local Transverse Mercator",
    GEOGCS[
        "CGRS93",
        DATUM[
            "Cyprus_Geodetic_Reference_System_1993",
            SPHEROID["WGS 84",6378137,298.257223563],
            TOWGS84[8.846,-4.394,-1.122,0.00237,0.146528,-0.130428,0.783926]
        ],
        PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],
        UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],
        AUTHORITY["EPSG","6311"]
    ],
    PROJECTION["Transverse_Mercator"],
    PARAMETER["latitude_of_origin",0],
    PARAMETER["central_meridian",33],
    PARAMETER["scale_factor",0.99995],
    PARAMETER["false_easting",200000],
    PARAMETER["false_northing",-3500000],
    UNIT["metre",1,AUTHORITY["EPSG","9001"]],
    AXIS["Easting",EAST],
    AXIS["Northing",NORTH],
    AUTHORITY["EPSG","6312"]
]

Related Coordinate Systems

Available Transformations (4)

Transformations inherited from base CRS: EPSG:6311 (CGRS93)

Transformation Source → Target Accuracy (m)
6311 4258 0.1
6311 4326 1
6311 4258 0.1
6311 4326 1

Other CRS using Cyprus Geodetic Reference System 1993

Frequently Asked Questions

How do I add EPSG:6312 to GeoServer?

Add the following definition to your GeoServer configuration:

6312=PROJCS["CGRS93 / Cyprus Local Transverse Mercator",GEOGCS["CGRS93",DATUM["Cyprus_Geodetic_Reference_System_1993",SPHEROID["WGS 84",6378137,298.257223563],TOWGS84[8.846,-4.394,-1.122,0.00237,0.146528,-0.130428,0.783926]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","6311"]],PROJECTION["Transverse_Mercator"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",33],PARAMETER["scale_factor",0.99995],PARAMETER["false_easting",200000],PARAMETER["false_northing",-3500000],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Easting",EAST],AXIS["Northing",NORTH],AUTHORITY["EPSG","6312"]]
Read the full GeoServer guide →

How do I add EPSG:6312 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (6312, 'EPSG', 6312, '+proj=tmerc +lat_0=0 +lon_0=33 +k=0.99995 +x_0=200000 +y_0=-3500000 +ellps=WGS84 +towgs84=8.846,-4.394,-1.122,0.00237,0.146528,-0.130428,0.783926 +units=m +no_defs +type=crs', 'PROJCS["CGRS93 / Cyprus Local Transverse Mercator",GEOGCS["CGRS93",DATUM["Cyprus_Geodetic_Reference_System_1993",SPHEROID["WGS 84",6378137,298.257223563],TOWGS84[8.846,-4.394,-1.122,0.00237,0.146528,-0.130428,0.783926]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","6311"]],PROJECTION["Transverse_Mercator"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",33],PARAMETER["scale_factor",0.99995],PARAMETER["false_easting",200000],PARAMETER["false_northing",-3500000],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Easting",EAST],AXIS["Northing",NORTH],AUTHORITY["EPSG","6312"]]');
Read the full PostGIS guide →

How do I add EPSG:6312 to MapServer?

Add the following definition to your MapServer configuration:

PROJECTION
  "+proj=tmerc"
  "+lat_0=0"
  "+lon_0=33"
  "+k=0.99995"
  "+x_0=200000"
  "+y_0=-3500000"
  "+ellps=WGS84"
  "+towgs84=8.846,-4.394,-1.122,0.00237,0.146528,-0.130428,0.783926"
  "+units=m"
  "+no_defs"
  "+type=crs"
END
Read the full MapServer guide →

How do I use EPSG:6312 with Proj4js?

Add the following definition to your Proj4js configuration:

proj4.defs("EPSG:6312", "+proj=tmerc +lat_0=0 +lon_0=33 +k=0.99995 +x_0=200000 +y_0=-3500000 +ellps=WGS84 +towgs84=8.846,-4.394,-1.122,0.00237,0.146528,-0.130428,0.783926 +units=m +no_defs +type=crs");
Read the full Proj4js guide →