EPSG:CODE

ESRI:102221 Ocotepeque 1935 Costa Rica Lambert Norte

Projected · Costa Rica - onshore north of 9~32'N

Export Formats

OGC WKT
PROJCS[
    "Ocotepeque_1935_Costa_Rica_Lambert_Norte",
    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",271820.522],
    PARAMETER["Central_Meridian",-84.33333333333333],
    PARAMETER["Standard_Parallel_1",9.933333333333334],
    PARAMETER["Standard_Parallel_2",11.0],
    PARAMETER["Latitude_Of_Origin",10.46666666666667],
    UNIT["Meter",1.0]
]

Frequently Asked Questions

How do I add ESRI:102221 to GeoServer?

Add the following definition to your GeoServer configuration:

102221=PROJCS["Ocotepeque_1935_Costa_Rica_Lambert_Norte",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",271820.522],PARAMETER["Central_Meridian",-84.33333333333333],PARAMETER["Standard_Parallel_1",9.933333333333334],PARAMETER["Standard_Parallel_2",11.0],PARAMETER["Latitude_Of_Origin",10.46666666666667],UNIT["Meter",1.0]]
Read the full GeoServer guide →

How do I add ESRI:102221 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (102221, 'ESRI', 102221, '+proj=lcc +ellps=clrk66 +x_0=500000.0 +y_0=271820.522 +lon_0=84d20''W +lat_0=10d28''N +lat_1=9d56''N +lat_2=11dN +towgs84=213.11,9.37,-74.95 +no_defs', 'PROJCS["Ocotepeque_1935_Costa_Rica_Lambert_Norte",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",271820.522],PARAMETER["Central_Meridian",-84.33333333333333],PARAMETER["Standard_Parallel_1",9.933333333333334],PARAMETER["Standard_Parallel_2",11.0],PARAMETER["Latitude_Of_Origin",10.46666666666667],UNIT["Meter",1.0]]');
Read the full PostGIS guide →

How do I add ESRI:102221 to MapServer?

Add the following definition to your MapServer configuration:

PROJECTION
  "+proj=lcc"
  "+ellps=clrk66"
  "+x_0=500000.0"
  "+y_0=271820.522"
  "+lon_0=84d20'W"
  "+lat_0=10d28'N"
  "+lat_1=9d56'N"
  "+lat_2=11dN"
  "+towgs84=213.11,9.37,-74.95"
  "+no_defs"
END
Read the full MapServer guide →

How do I use ESRI:102221 with Proj4js?

Add the following definition to your Proj4js configuration:

proj4.defs("ESRI:102221", "+proj=lcc +ellps=clrk66 +x_0=500000.0 +y_0=271820.522 +lon_0=84d20'W +lat_0=10d28'N +lat_1=9d56'N +lat_2=11dN +towgs84=213.11,9.37,-74.95 +no_defs");
Read the full Proj4js guide →