I want to transform Lambert (EPSG:3035) coordinates to EPSG:4326 in C#.
I have tried this:
var lambert = cf.CreateFromWkt("PROJCS[\"ETRS89 / ETRS-LAEA\",GEOGCS[\"ETRS89
\",DATUM[\"European_Terrestrial_Reference_System_1989\",SPHEROID[\"GRS
1980\",6378137,298.257222101,AUTHORITY[\"EPSG\",\"7019\"]],AUTHORITY[\"EPSG\",\"6258
\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree
\",0.01745329251994328,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4258
\"]],PROJECTION[\"Lambert_Azimuthal_Equal_Area\"],PARAMETER[\"latitude_of_center
\",52],PARAMETER[\"longitude_of_center\",10],PARAMETER[\"false_easting
\",4321000],PARAMETER[\"false_northing\",3210000],UNIT[\"metre\",1,AUTHORITY[\"EPSG
\",\"9001\"]],AXIS[\"X\",EAST],AXIS[\"Y\",NORTH],AUTHORITY[\"EPSG\",\"3035\"]]");
Error: Projection Lambert_Azimuthal_Equal_Area is not supported.
As far as I understand, ProjNet should support Lambert. Can someone help me? Or show me another way how to achieve my goal?