ThinkGeo.com    |     Documentation    |     Premium Support

Projection of Lambert Azimuthal Equal-Area to Geodetic (long/at)

I’m trying to re-project a Lambert Azimuthal Equal-area map of the US to Geodetic (long/at)


From the documentation/examples I have been trying this:
 
Dim SRid As Integer = 102017
Dim GeodeticSRid As Integer = 4326
Dim UTMtoGeodetic As New Proj4Projection(SRid, GeodeticSRid)
 
It projects, but when comparing it to the state boundries layer from Render World, the re-projection does not match up in the same space.
 
I found a reference in Dec 2006 news letter to a class "LambertForConterminousUSAToGeodetic" that could do the re-projection for points, but I’m having trouble getting resolving all the references.
 
This is the information out of the .prj file:
PROJCS["Lambert Azimuthal Equal-area",
GEOGCS["GCS_Sphere_ARC_INFO",
DATUM["D_Sphere_ARC_INFO",
SPHEROID["Sphere_ARC_INFO",6370997.0,0.0]],
PRIMEM["Greenwich",0.0],
UNIT["Degree",0.0174532925199433]],
PROJECTION["Lambert_Azimuthal_Equal_Area"],
PARAMETER["False_Easting",0.0],
PARAMETER["False_Northing",0.0],
PARAMETER["Central_Meridian",-100.0],
PARAMETER["Latitude_Of_Origin",45.0],
UNIT["Meter",1.0]]
 
Any help would be appreciated!
Thanks!
Cyndi Pruett
 
            

Hi Cyndi,


In MapSuite WebEdition, every projection has a corresponding string to describe the projection information. We found that we have a string is as following:
<2163>+proj=laea+lat_0=45+lon_0=-100+x_0=0+y_0=0+a=6370997+b=6370997+units=m+no_defs<>
And it is more like the projection information you supported to us from the .prj file. So please try to use the 2163 instead of 102017 to have another test. The code could be like this:




Dim SRid As Integer = 2163 
Dim GeodeticSRid As Integer = 4326 
Dim UTMtoGeodetic As New Proj4Projection(SRid, GeodeticSRid) 


 
If it still has the same problem, please feel free to send us your data if possible, so that we can do more research on it and try to resolve the problem.
 
Any more information is appreciated.
Thanks,
Sun

Thanks for the quick response. I re-projected the data file and the projection seems to match up with the RenderUSA layer. My users need to do some testing to make sure we are on track - but at least they are on the same planet!


Thanks again..Cyndi



You are welcome, Cyndi. Please feel free to let me know if you have any more questions. 
  
 Thanks, 
  
 Sun