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