ESRI:103872 — GDM2008 LGM2012
Projected · Mauritius
Export Formats
OGC WKT
PROJCS[
"GDM2008_LGM2012",
GEOGCS[
"GDM2008",
DATUM[
"Geocentric_Datum_of_Mauritius_2008",
SPHEROID["GRS_1980",6378137.0,298.257222101]
],
PRIMEM["Greenwich",0.0],
UNIT["Degree",0.0174532925199433]
],
PROJECTION["Lambert_Conformal_Conic"],
PARAMETER["False_Easting",250000.0],
PARAMETER["False_Northing",350000.0],
PARAMETER["Central_Meridian",57.56455662222222],
PARAMETER["Standard_Parallel_1",-20.06111111111111],
PARAMETER["Standard_Parallel_2",-20.44444444444445],
PARAMETER["Latitude_Of_Origin",-20.2755163],
UNIT["Meter",1.0]
]Frequently Asked Questions
How do I add ESRI:103872 to GeoServer?
Add the following definition to your GeoServer configuration:
103872=PROJCS["GDM2008_LGM2012",GEOGCS["GDM2008",DATUM["Geocentric_Datum_of_Mauritius_2008",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Lambert_Conformal_Conic"],PARAMETER["False_Easting",250000.0],PARAMETER["False_Northing",350000.0],PARAMETER["Central_Meridian",57.56455662222222],PARAMETER["Standard_Parallel_1",-20.06111111111111],PARAMETER["Standard_Parallel_2",-20.44444444444445],PARAMETER["Latitude_Of_Origin",-20.2755163],UNIT["Meter",1.0]] Read the full GeoServer guide →
How do I add ESRI:103872 to PostGIS?
Add the following definition to your PostGIS configuration:
INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext)
VALUES (103872, 'ESRI', 103872, '+proj=lcc +ellps=GRS80 +x_0=250000.0 +y_0=350000.0 +lon_0=57d33''52.40384"E +lat_0=20d16''31.85868"S +lat_1=20d3''40.0"S +lat_2=20d26''40.0"S +no_defs', 'PROJCS["GDM2008_LGM2012",GEOGCS["GDM2008",DATUM["Geocentric_Datum_of_Mauritius_2008",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Lambert_Conformal_Conic"],PARAMETER["False_Easting",250000.0],PARAMETER["False_Northing",350000.0],PARAMETER["Central_Meridian",57.56455662222222],PARAMETER["Standard_Parallel_1",-20.06111111111111],PARAMETER["Standard_Parallel_2",-20.44444444444445],PARAMETER["Latitude_Of_Origin",-20.2755163],UNIT["Meter",1.0]]'); Read the full PostGIS guide →
How do I add ESRI:103872 to MapServer?
Add the following definition to your MapServer configuration:
PROJECTION
"+proj=lcc"
"+ellps=GRS80"
"+x_0=250000.0"
"+y_0=350000.0"
"+lon_0=57d33'52.40384"E"
"+lat_0=20d16'31.85868"S"
"+lat_1=20d3'40.0"S"
"+lat_2=20d26'40.0"S"
"+no_defs"
END Read the full MapServer guide →
How do I use ESRI:103872 with Proj4js?
Add the following definition to your Proj4js configuration:
proj4.defs("ESRI:103872", "+proj=lcc +ellps=GRS80 +x_0=250000.0 +y_0=350000.0 +lon_0=57d33'52.40384"E +lat_0=20d16'31.85868"S +lat_1=20d3'40.0"S +lat_2=20d26'40.0"S +no_defs"); Read the full Proj4js guide →