EPSG:CODE

EPSG:2102 Lake / Maracaibo Grid

Projected · Venezuela - Maracaibo area

Export Formats

OGC WKT
PROJCS[
    "Lake / Maracaibo Grid",
    GEOGCS[
        "Lake",
        DATUM[
            "Lake",
            SPHEROID["International 1924",6378388,297,AUTHORITY["EPSG","7022"]],
            AUTHORITY["EPSG","6249"]
        ],
        PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],
        UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],
        AUTHORITY["EPSG","4249"]
    ],
    PROJECTION["Lambert_Conformal_Conic_1SP"],
    PARAMETER["latitude_of_origin",10.1666666666667],
    PARAMETER["central_meridian",-71.6056177777778],
    PARAMETER["scale_factor",1],
    PARAMETER["false_easting",200000],
    PARAMETER["false_northing",147315.028],
    UNIT["metre",1,AUTHORITY["EPSG","9001"]],
    AXIS["Easting",EAST],
    AXIS["Northing",NORTH],
    AUTHORITY["EPSG","2102"]
]

Other CRS using Lake

Frequently Asked Questions

How do I add EPSG:2102 to GeoServer?

Add the following definition to your GeoServer configuration:

2102=PROJCS["Lake / Maracaibo Grid",GEOGCS["Lake",DATUM["Lake",SPHEROID["International 1924",6378388,297,AUTHORITY["EPSG","7022"]],AUTHORITY["EPSG","6249"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4249"]],PROJECTION["Lambert_Conformal_Conic_1SP"],PARAMETER["latitude_of_origin",10.1666666666667],PARAMETER["central_meridian",-71.6056177777778],PARAMETER["scale_factor",1],PARAMETER["false_easting",200000],PARAMETER["false_northing",147315.028],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Easting",EAST],AXIS["Northing",NORTH],AUTHORITY["EPSG","2102"]]
Read the full GeoServer guide →

How do I add EPSG:2102 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (2102, 'EPSG', 2102, '+proj=lcc +lat_1=10.1666666666667 +lat_0=10.1666666666667 +lon_0=-71.6056177777778 +k_0=1 +x_0=200000 +y_0=147315.028 +ellps=intl +units=m +no_defs +type=crs', 'PROJCS["Lake / Maracaibo Grid",GEOGCS["Lake",DATUM["Lake",SPHEROID["International 1924",6378388,297,AUTHORITY["EPSG","7022"]],AUTHORITY["EPSG","6249"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4249"]],PROJECTION["Lambert_Conformal_Conic_1SP"],PARAMETER["latitude_of_origin",10.1666666666667],PARAMETER["central_meridian",-71.6056177777778],PARAMETER["scale_factor",1],PARAMETER["false_easting",200000],PARAMETER["false_northing",147315.028],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Easting",EAST],AXIS["Northing",NORTH],AUTHORITY["EPSG","2102"]]');
Read the full PostGIS guide →

How do I add EPSG:2102 to MapServer?

Add the following definition to your MapServer configuration:

PROJECTION
  "+proj=lcc"
  "+lat_1=10.1666666666667"
  "+lat_0=10.1666666666667"
  "+lon_0=-71.6056177777778"
  "+k_0=1"
  "+x_0=200000"
  "+y_0=147315.028"
  "+ellps=intl"
  "+units=m"
  "+no_defs"
  "+type=crs"
END
Read the full MapServer guide →

How do I use EPSG:2102 with Proj4js?

Add the following definition to your Proj4js configuration:

proj4.defs("EPSG:2102", "+proj=lcc +lat_1=10.1666666666667 +lat_0=10.1666666666667 +lon_0=-71.6056177777778 +k_0=1 +x_0=200000 +y_0=147315.028 +ellps=intl +units=m +no_defs +type=crs");
Read the full Proj4js guide →