EPSG:CODE

EPSG:2101 Lake / Maracaibo Grid M1

Projected · Venezuela - Maracaibo area

Export Formats

OGC WKT
PROJCS[
    "Lake / Maracaibo Grid M1",
    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",0],
    PARAMETER["false_northing",-52684.972],
    UNIT["metre",1,AUTHORITY["EPSG","9001"]],
    AXIS["Easting",EAST],
    AXIS["Northing",NORTH],
    AUTHORITY["EPSG","2101"]
]

Other CRS using Lake

Frequently Asked Questions

How do I add EPSG:2101 to GeoServer?

Add the following definition to your GeoServer configuration:

2101=PROJCS["Lake / Maracaibo Grid M1",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",0],PARAMETER["false_northing",-52684.972],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Easting",EAST],AXIS["Northing",NORTH],AUTHORITY["EPSG","2101"]]
Read the full GeoServer guide →

How do I add EPSG:2101 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (2101, 'EPSG', 2101, '+proj=lcc +lat_1=10.1666666666667 +lat_0=10.1666666666667 +lon_0=-71.6056177777778 +k_0=1 +x_0=0 +y_0=-52684.972 +ellps=intl +units=m +no_defs +type=crs', 'PROJCS["Lake / Maracaibo Grid M1",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",0],PARAMETER["false_northing",-52684.972],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Easting",EAST],AXIS["Northing",NORTH],AUTHORITY["EPSG","2101"]]');
Read the full PostGIS guide →

How do I add EPSG:2101 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=0"
  "+y_0=-52684.972"
  "+ellps=intl"
  "+units=m"
  "+no_defs"
  "+type=crs"
END
Read the full MapServer guide →

How do I use EPSG:2101 with Proj4js?

Add the following definition to your Proj4js configuration:

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