EPSG:CODE

EPSG:24375 Kalianpur 1937 / India zone IIb

Projected · Bangladesh - onshore

Export Formats

OGC WKT
PROJCS[
    "Kalianpur 1937 / India zone IIb",
    GEOGCS[
        "Kalianpur 1937",
        DATUM[
            "Kalianpur_1937",
            SPHEROID["Everest 1830 (1937 Adjustment)",6377276.345,300.8017],
            TOWGS84[214,804,268,0,0,0,0]
        ],
        PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],
        UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],
        AUTHORITY["EPSG","4144"]
    ],
    PROJECTION["Lambert_Conformal_Conic_1SP"],
    PARAMETER["latitude_of_origin",26],
    PARAMETER["central_meridian",90],
    PARAMETER["scale_factor",0.99878641],
    PARAMETER["false_easting",2743185.69],
    PARAMETER["false_northing",914395.23],
    UNIT["metre",1,AUTHORITY["EPSG","9001"]],
    AXIS["Easting",EAST],
    AXIS["Northing",NORTH],
    AUTHORITY["EPSG","24375"]
]

Related Coordinate Systems

Available Transformations (2)

Transformations inherited from base CRS: EPSG:4144 (Kalianpur 1937)

Transformation Source → Target Accuracy (m)
4144 4326 5
4144 4326 18

Other CRS using Kalianpur 1937

Frequently Asked Questions

How do I add EPSG:24375 to GeoServer?

Add the following definition to your GeoServer configuration:

24375=PROJCS["Kalianpur 1937 / India zone IIb",GEOGCS["Kalianpur 1937",DATUM["Kalianpur_1937",SPHEROID["Everest 1830 (1937 Adjustment)",6377276.345,300.8017],TOWGS84[214,804,268,0,0,0,0]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4144"]],PROJECTION["Lambert_Conformal_Conic_1SP"],PARAMETER["latitude_of_origin",26],PARAMETER["central_meridian",90],PARAMETER["scale_factor",0.99878641],PARAMETER["false_easting",2743185.69],PARAMETER["false_northing",914395.23],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Easting",EAST],AXIS["Northing",NORTH],AUTHORITY["EPSG","24375"]]
Read the full GeoServer guide →

How do I add EPSG:24375 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (24375, 'EPSG', 24375, '+proj=lcc +lat_1=26 +lat_0=26 +lon_0=90 +k_0=0.99878641 +x_0=2743185.69 +y_0=914395.23 +ellps=evrst30 +towgs84=214,804,268,0,0,0,0 +units=m +no_defs +type=crs', 'PROJCS["Kalianpur 1937 / India zone IIb",GEOGCS["Kalianpur 1937",DATUM["Kalianpur_1937",SPHEROID["Everest 1830 (1937 Adjustment)",6377276.345,300.8017],TOWGS84[214,804,268,0,0,0,0]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4144"]],PROJECTION["Lambert_Conformal_Conic_1SP"],PARAMETER["latitude_of_origin",26],PARAMETER["central_meridian",90],PARAMETER["scale_factor",0.99878641],PARAMETER["false_easting",2743185.69],PARAMETER["false_northing",914395.23],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Easting",EAST],AXIS["Northing",NORTH],AUTHORITY["EPSG","24375"]]');
Read the full PostGIS guide →

How do I add EPSG:24375 to MapServer?

Add the following definition to your MapServer configuration:

PROJECTION
  "+proj=lcc"
  "+lat_1=26"
  "+lat_0=26"
  "+lon_0=90"
  "+k_0=0.99878641"
  "+x_0=2743185.69"
  "+y_0=914395.23"
  "+ellps=evrst30"
  "+towgs84=214,804,268,0,0,0,0"
  "+units=m"
  "+no_defs"
  "+type=crs"
END
Read the full MapServer guide →

How do I use EPSG:24375 with Proj4js?

Add the following definition to your Proj4js configuration:

proj4.defs("EPSG:24375", "+proj=lcc +lat_1=26 +lat_0=26 +lon_0=90 +k_0=0.99878641 +x_0=2743185.69 +y_0=914395.23 +ellps=evrst30 +towgs84=214,804,268,0,0,0,0 +units=m +no_defs +type=crs");
Read the full Proj4js guide →