Hello,
I am trying to add a shapefile to a one of my maps. I got the Shapefile form the State of Oregon. Its an Shapefile containing the political districts, one for the state house and one for the state senate. Looking in the XML file that came with the shapefile, it appears to be NAD83 Lamebert Conformal Conical projection. I tried making a striped down project that jsut loads the shapefile. I was not able to display it in feet, meters or decimaldegree as mapunits. I made a projection object and tried to project it. I am familar with using your projection object. I have been using it successfully.
ManagedProj4Projection proj4 = new ManagedProj4Projection();
proj4.InternalProjectionParameters = ManagedProj4Projection.GetEpsgParameters(4326);
proj4.ExternalProjectionParameters = ManagedProj4Projection.GetGoogleMapParameters();
ManagedProj4Projection proj5 = new ManagedProj4Projection();
proj5.InternalProjectionParameters = ManagedProj4Projection.GetEpsgParameters(2226);
proj5.ExternalProjectionParameters = ManagedProj4Projection.GetGoogleMapParameters();
I guess what I need to know is the code for this projection. I did some research and it look slike I should be using 2991 or 2992. Both of which did not work. I also tried just epsg 83 and 8901 which also didnt work.
Any ideas. I am attaching a screenshot of the XML for the shapefile that contains the projection information.
Thanks,
Leon