EPSG:CODE

EPSG:24100 Jamaica 1875 / Jamaica (Old Grid)

Projected · Jamaica - onshore

Export Formats

OGC WKT
PROJCS[
    "Jamaica 1875 / Jamaica (Old Grid)",
    GEOGCS[
        "Jamaica 1875",
        DATUM[
            "Jamaica_1875",
            SPHEROID[
                "Clarke 1880",
                6378249.14480801,
                293.466307655636,
                AUTHORITY["EPSG","7034"]
            ],
            AUTHORITY["EPSG","6241"]
        ],
        PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],
        UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],
        AUTHORITY["EPSG","4241"]
    ],
    PROJECTION["Lambert_Conformal_Conic_1SP"],
    PARAMETER["latitude_of_origin",18],
    PARAMETER["central_meridian",-77],
    PARAMETER["scale_factor",1],
    PARAMETER["false_easting",550000],
    PARAMETER["false_northing",400000],
    UNIT["Clarke's foot",0.3047972654,AUTHORITY["EPSG","9005"]],
    AXIS["Easting",EAST],
    AXIS["Northing",NORTH],
    AUTHORITY["EPSG","24100"]
]

Related Coordinate Systems

Available Transformations (2)

Other CRS using Jamaica 1875

Frequently Asked Questions

How do I add EPSG:24100 to GeoServer?

Add the following definition to your GeoServer configuration:

24100=PROJCS["Jamaica 1875 / Jamaica (Old Grid)",GEOGCS["Jamaica 1875",DATUM["Jamaica_1875",SPHEROID["Clarke 1880",6378249.14480801,293.466307655636,AUTHORITY["EPSG","7034"]],AUTHORITY["EPSG","6241"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4241"]],PROJECTION["Lambert_Conformal_Conic_1SP"],PARAMETER["latitude_of_origin",18],PARAMETER["central_meridian",-77],PARAMETER["scale_factor",1],PARAMETER["false_easting",550000],PARAMETER["false_northing",400000],UNIT["Clarke's foot",0.3047972654,AUTHORITY["EPSG","9005"]],AXIS["Easting",EAST],AXIS["Northing",NORTH],AUTHORITY["EPSG","24100"]]
Read the full GeoServer guide →

How do I add EPSG:24100 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (24100, 'EPSG', 24100, '+proj=lcc +lat_1=18 +lat_0=18 +lon_0=-77 +k_0=1 +x_0=167638.49597 +y_0=121918.90616 +a=6378249.14480801 +b=6356514.96620413 +to_meter=0.3047972654 +no_defs +type=crs', 'PROJCS["Jamaica 1875 / Jamaica (Old Grid)",GEOGCS["Jamaica 1875",DATUM["Jamaica_1875",SPHEROID["Clarke 1880",6378249.14480801,293.466307655636,AUTHORITY["EPSG","7034"]],AUTHORITY["EPSG","6241"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4241"]],PROJECTION["Lambert_Conformal_Conic_1SP"],PARAMETER["latitude_of_origin",18],PARAMETER["central_meridian",-77],PARAMETER["scale_factor",1],PARAMETER["false_easting",550000],PARAMETER["false_northing",400000],UNIT["Clarke''s foot",0.3047972654,AUTHORITY["EPSG","9005"]],AXIS["Easting",EAST],AXIS["Northing",NORTH],AUTHORITY["EPSG","24100"]]');
Read the full PostGIS guide →

How do I add EPSG:24100 to MapServer?

Add the following definition to your MapServer configuration:

PROJECTION
  "+proj=lcc"
  "+lat_1=18"
  "+lat_0=18"
  "+lon_0=-77"
  "+k_0=1"
  "+x_0=167638.49597"
  "+y_0=121918.90616"
  "+a=6378249.14480801"
  "+b=6356514.96620413"
  "+to_meter=0.3047972654"
  "+no_defs"
  "+type=crs"
END
Read the full MapServer guide →

How do I use EPSG:24100 with Proj4js?

Add the following definition to your Proj4js configuration:

proj4.defs("EPSG:24100", "+proj=lcc +lat_1=18 +lat_0=18 +lon_0=-77 +k_0=1 +x_0=167638.49597 +y_0=121918.90616 +a=6378249.14480801 +b=6356514.96620413 +to_meter=0.3047972654 +no_defs +type=crs");
Read the full Proj4js guide →