Hi, I want to let user to convert shp file from one coord. system to another. I found an example, but there coordinate systems are set static.
Proj4Projection convertProjection = new Proj4Projection();
convertProjection.InternalProjectionParametersString = Proj4Projection.GetEsriParametersString(102008); //North America Albers Equal Area Conic
convertProjection.ExternalProjectionParametersString = Proj4Projection.GetEpsgParametersString(4326); //WGS84
ShapeFileFeatureLayer.SaveToProjection(@"..\..\Data\albers_northamerica.shp", @"..\..\Data\wgs84_northamerica.shp", convertProjection, OverwriteMode.Overwrite);
So is it possible to get all coordinate systems names and to know srid?
I didn't find much info about srid...