EPSG:CODE

ESRI:102945 Cassini Bangladesh Zone 12 Khulna

Projected · Bangladesh - Khulna

Export Formats

OGC WKT
PROJCS[
    "Cassini_Bangladesh_Zone_12_Khulna",
    GEOGCS[
        "GCS_Everest_1830",
        DATUM["D_Everest_1830",SPHEROID["Everest_1830",6377299.36559538,300.8017255]],
        PRIMEM["Greenwich",0.0],
        UNIT["Degree",0.0174532925199433]
    ],
    PROJECTION["Cassini"],
    PARAMETER["False_Easting",0.0],
    PARAMETER["False_Northing",0.0],
    PARAMETER["Central_Meridian",89.5],
    PARAMETER["Scale_Factor",1.0],
    PARAMETER["Latitude_Of_Origin",22.5],
    UNIT["Chain",20.1168]
]

Frequently Asked Questions

How do I add ESRI:102945 to GeoServer?

Add the following definition to your GeoServer configuration:

102945=PROJCS["Cassini_Bangladesh_Zone_12_Khulna",GEOGCS["GCS_Everest_1830",DATUM["D_Everest_1830",SPHEROID["Everest_1830",6377299.36559538,300.8017255]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Cassini"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",89.5],PARAMETER["Scale_Factor",1.0],PARAMETER["Latitude_Of_Origin",22.5],UNIT["Chain",20.1168]]
Read the full GeoServer guide →

How do I add ESRI:102945 to PostGIS?

Add the following definition to your PostGIS configuration:

INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (102945, 'ESRI', 102945, '+proj=cass +ellps=evrst30 +units=ch +x_0=0.0 +y_0=0.0 +lon_0=89d30''E +lat_0=22d30''N +k_0=1.0 +no_defs', 'PROJCS["Cassini_Bangladesh_Zone_12_Khulna",GEOGCS["GCS_Everest_1830",DATUM["D_Everest_1830",SPHEROID["Everest_1830",6377299.36559538,300.8017255]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Cassini"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",89.5],PARAMETER["Scale_Factor",1.0],PARAMETER["Latitude_Of_Origin",22.5],UNIT["Chain",20.1168]]');
Read the full PostGIS guide →

How do I add ESRI:102945 to MapServer?

Add the following definition to your MapServer configuration:

PROJECTION
  "+proj=cass"
  "+ellps=evrst30"
  "+units=ch"
  "+x_0=0.0"
  "+y_0=0.0"
  "+lon_0=89d30'E"
  "+lat_0=22d30'N"
  "+k_0=1.0"
  "+no_defs"
END
Read the full MapServer guide →

How do I use ESRI:102945 with Proj4js?

Add the following definition to your Proj4js configuration:

proj4.defs("ESRI:102945", "+proj=cass +ellps=evrst30 +units=ch +x_0=0.0 +y_0=0.0 +lon_0=89d30'E +lat_0=22d30'N +k_0=1.0 +no_defs");
Read the full Proj4js guide →