ThinkGeo.com    |     Documentation    |     Premium Support

Projection not found

I tried to get the albers projection, with mapserver this projection is








+proj=aea +lat_1=29.5 +lat_2=45.5 +lat_0=37.5 +lon_0=-96 +x_0=0 +y_0=0 +ellps=GRS80 +datum=NAD83 +units=m  no_defs <>


 


I can not find the albers projection (epsg code = 102003) with Proj4Projection.GetEpsgParametersString(102003).


do you have any idea?


thanks in advance.


sebastien



Ebastien,


Our Projection SRID list is from the open source project list, it seems that it missing some, sorry for the inconvenience. While I think it will not affect your using of it by passing the correct string.

string str = @" +proj=aea +lat_1=29.5 +lat_2=45.5 +lat_0=37.5 +lon_0=-96 +x_0=0 +y_0=0 +ellps=GRS80 +datum=NAD83 +units=m  no_defs ";

Proj4Projection Proj4Test  = new Proj4Projection(Proj4Projection.GetEpsgParametersString(4326), str);
Proj4Test.Open();
Vertex v = Proj4Test.ConvertToExternalProjection(50, 50);
Proj4Test.Close();

 

Any more questions please feel free to let me know.
 
Thanks.
 
Yale