EPSG:CODE

ESRI:102222 Ocotepeque 1935 Costa Rica Lambert Sur

Projected · Costa Rica - onshore south of 9~56'N

Export Formats

OGC WKT
PROJCS[
    "Ocotepeque_1935_Costa_Rica_Lambert_Sur",
    GEOGCS[
        "GCS_Ocotepeque_1935",
        DATUM["D_Ocotepeque_1935",SPHEROID["Clarke_1866",6378206.4,294.9786982]],
        PRIMEM["Greenwich",0.0],
        UNIT["Degree",0.0174532925199433]
    ],
    PROJECTION["Lambert_Conformal_Conic"],
    PARAMETER["False_Easting",500000.0],
    PARAMETER["False_Northing",327987.436],
    PARAMETER["Central_Meridian",-83.66666666666667],
    PARAMETER["Standard_Parallel_1",8.466666666666667],
    PARAMETER["Standard_Parallel_2",9.533333333333333],
    PARAMETER["Latitude_Of_Origin",9.0],
    UNIT["Meter",1.0]
]

Frequently Asked Questions

How do I add ESRI:102222 to GeoServer?

Add the following definition to your GeoServer configuration:

102222=PROJCS["Ocotepeque_1935_Costa_Rica_Lambert_Sur",GEOGCS["GCS_Ocotepeque_1935",DATUM["D_Ocotepeque_1935",SPHEROID["Clarke_1866",6378206.4,294.9786982]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Lambert_Conformal_Conic"],PARAMETER["False_Easting",500000.0],PARAMETER["False_Northing",327987.436],PARAMETER["Central_Meridian",-83.66666666666667],PARAMETER["Standard_Parallel_1",8.466666666666667],PARAMETER["Standard_Parallel_2",9.533333333333333],PARAMETER["Latitude_Of_Origin",9.0],UNIT["Meter",1.0]]
Read the full GeoServer guide →

How do I add ESRI:102222 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (102222, 'ESRI', 102222, '+proj=lcc +ellps=clrk66 +x_0=500000.0 +y_0=327987.436 +lon_0=83d40''W +lat_0=9dN +lat_1=8d28''N +lat_2=9d32''N +towgs84=213.11,9.37,-74.95 +no_defs', 'PROJCS["Ocotepeque_1935_Costa_Rica_Lambert_Sur",GEOGCS["GCS_Ocotepeque_1935",DATUM["D_Ocotepeque_1935",SPHEROID["Clarke_1866",6378206.4,294.9786982]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Lambert_Conformal_Conic"],PARAMETER["False_Easting",500000.0],PARAMETER["False_Northing",327987.436],PARAMETER["Central_Meridian",-83.66666666666667],PARAMETER["Standard_Parallel_1",8.466666666666667],PARAMETER["Standard_Parallel_2",9.533333333333333],PARAMETER["Latitude_Of_Origin",9.0],UNIT["Meter",1.0]]');
Read the full PostGIS guide →

How do I add ESRI:102222 to MapServer?

Add the following definition to your MapServer configuration:

PROJECTION
  "+proj=lcc"
  "+ellps=clrk66"
  "+x_0=500000.0"
  "+y_0=327987.436"
  "+lon_0=83d40'W"
  "+lat_0=9dN"
  "+lat_1=8d28'N"
  "+lat_2=9d32'N"
  "+towgs84=213.11,9.37,-74.95"
  "+no_defs"
END
Read the full MapServer guide →

How do I use ESRI:102222 with Proj4js?

Add the following definition to your Proj4js configuration:

proj4.defs("ESRI:102222", "+proj=lcc +ellps=clrk66 +x_0=500000.0 +y_0=327987.436 +lon_0=83d40'W +lat_0=9dN +lat_1=8d28'N +lat_2=9d32'N +towgs84=213.11,9.37,-74.95 +no_defs");
Read the full Proj4js guide →