ESRI:102943 — Cassini Bangladesh Zone 10 Kushtia
Projected · Bangladesh - Kushtia
Export Formats
OGC WKT
PROJCS[
"Cassini_Bangladesh_Zone_10_Kushtia",
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",23.5],
UNIT["Chain",20.1168]
]Frequently Asked Questions
How do I add ESRI:102943 to GeoServer?
Add the following definition to your GeoServer configuration:
102943=PROJCS["Cassini_Bangladesh_Zone_10_Kushtia",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",23.5],UNIT["Chain",20.1168]] Read the full GeoServer guide →
How do I add ESRI:102943 to PostGIS?
Add the following definition to your PostGIS configuration:
INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (102943, 'ESRI', 102943, '+proj=cass +ellps=evrst30 +units=ch +x_0=0.0 +y_0=0.0 +lon_0=89d30''E +lat_0=23d30''N +k_0=1.0 +no_defs', 'PROJCS["Cassini_Bangladesh_Zone_10_Kushtia",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",23.5],UNIT["Chain",20.1168]]'); Read the full PostGIS guide →
How do I add ESRI:102943 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=23d30'N"
"+k_0=1.0"
"+no_defs"
END Read the full MapServer guide →
How do I use ESRI:102943 with Proj4js?
Add the following definition to your Proj4js configuration:
proj4.defs("ESRI:102943", "+proj=cass +ellps=evrst30 +units=ch +x_0=0.0 +y_0=0.0 +lon_0=89d30'E +lat_0=23d30'N +k_0=1.0 +no_defs"); Read the full Proj4js guide →