Friday, 17 March 2017

geoserver - What is the SRS code for Lambert Conformal Conic projection and GCS Everest Definition 1962?


I have a shapefile with Geographic Coordinate System is "GCS_Everest Definition 1962" and the Projected Coordinate System is "Lambert_Conformal_Conic". I want to add this shapefile in Geoserver. But I don't know which code is used as the SRS for this Projection System. I don't know what to put in "Declared SRS" field. Here is the WKT


PROJCS["Lambert Conformal Conic",   
GEOGCS["GCS_Everest Definition 1962",
DATUM["Everest Definition 1962",

SPHEROID["Everest Definition 1962",
6377301.243, 300.8017255654936]],
PRIMEM["Greenwich", 0.0],
UNIT["degree", 0.017453292519943295],
AXIS["Longitude", EAST],
AXIS["Latitude", NORTH]],
PROJECTION["Lambert_Conformal_Conic_2SP"],
PARAMETER["central_meridian", 68.0],
PARAMETER["latitude_of_origin", 32.5],
PARAMETER["standard_parallel_1", 35.31445944444445],

PARAMETER["false_easting", 2743196.4],
PARAMETER["false_northing", 914398.8],
PARAMETER["scale_factor", 1.0],
PARAMETER["standard_parallel_2", 29.655283888888892],
UNIT["m", 1.0],
AXIS["x", EAST],
AXIS["y", NORTH]]

Answer



You can always paste (or upload) your .prj file in to http://prj2epsg.org/search and see if it can work it out for you.


No comments:

Post a Comment

arcpy - Changing output name when exporting data driven pages to JPG?

Is there a way to save the output JPG, changing the output file name to the page name, instead of page number? I mean changing the script fo...