EPSG:CODE

EPSG:5367 CR05 / CRTM05

Projected · Costa Rica - onshore and offshore east of 86°30'W

Export Formats

OGC WKT
PROJCS[
    "CR05 / CRTM05",
    GEOGCS[
        "CR05",
        DATUM[
            "Costa_Rica_2005",
            SPHEROID["WGS 84",6378137,298.257223563],
            TOWGS84[-0.16959,0.35312,0.51846,-0.03385,0.16325,-0.03446,0.03693]
        ],
        PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],
        UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],
        AUTHORITY["EPSG","5365"]
    ],
    PROJECTION["Transverse_Mercator"],
    PARAMETER["latitude_of_origin",0],
    PARAMETER["central_meridian",-84],
    PARAMETER["scale_factor",0.9999],
    PARAMETER["false_easting",500000],
    PARAMETER["false_northing",0],
    UNIT["metre",1,AUTHORITY["EPSG","9001"]],
    AUTHORITY["EPSG","5367"]
]

Related Coordinate Systems

Available Transformations (6)

Transformations inherited from base CRS: EPSG:5365 (CR05)

Transformation Source → Target Accuracy (m)
5365 8907 0.5
5365 4326 1
5365 4326 1.5
5451 5365 8
5365 8907 0.5
CR05 to WGS 84 (2) Deprecated
5365 4326 1

Other CRS using Costa Rica 2005

Frequently Asked Questions

How do I add EPSG:5367 to GeoServer?

Add the following definition to your GeoServer configuration:

5367=PROJCS["CR05 / CRTM05",GEOGCS["CR05",DATUM["Costa_Rica_2005",SPHEROID["WGS 84",6378137,298.257223563],TOWGS84[-0.16959,0.35312,0.51846,-0.03385,0.16325,-0.03446,0.03693]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","5365"]],PROJECTION["Transverse_Mercator"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",-84],PARAMETER["scale_factor",0.9999],PARAMETER["false_easting",500000],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AUTHORITY["EPSG","5367"]]
Read the full GeoServer guide →

How do I add EPSG:5367 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (5367, 'EPSG', 5367, '+proj=tmerc +lat_0=0 +lon_0=-84 +k=0.9999 +x_0=500000 +y_0=0 +ellps=WGS84 +towgs84=-0.16959,0.35312,0.51846,-0.03385,0.16325,-0.03446,0.03693 +units=m +no_defs +type=crs', 'PROJCS["CR05 / CRTM05",GEOGCS["CR05",DATUM["Costa_Rica_2005",SPHEROID["WGS 84",6378137,298.257223563],TOWGS84[-0.16959,0.35312,0.51846,-0.03385,0.16325,-0.03446,0.03693]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","5365"]],PROJECTION["Transverse_Mercator"],PARAMETER["latitude_of_origin",0],PARAMETER["central_meridian",-84],PARAMETER["scale_factor",0.9999],PARAMETER["false_easting",500000],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AUTHORITY["EPSG","5367"]]');
Read the full PostGIS guide →

How do I add EPSG:5367 to MapServer?

Add the following definition to your MapServer configuration:

PROJECTION
  "+proj=tmerc"
  "+lat_0=0"
  "+lon_0=-84"
  "+k=0.9999"
  "+x_0=500000"
  "+y_0=0"
  "+ellps=WGS84"
  "+towgs84=-0.16959,0.35312,0.51846,-0.03385,0.16325,-0.03446,0.03693"
  "+units=m"
  "+no_defs"
  "+type=crs"
END
Read the full MapServer guide →

How do I use EPSG:5367 with Proj4js?

Add the following definition to your Proj4js configuration:

proj4.defs("EPSG:5367", "+proj=tmerc +lat_0=0 +lon_0=-84 +k=0.9999 +x_0=500000 +y_0=0 +ellps=WGS84 +towgs84=-0.16959,0.35312,0.51846,-0.03385,0.16325,-0.03446,0.03693 +units=m +no_defs +type=crs");
Read the full Proj4js guide →