Skip to content

Commit

Permalink
Add support for old style (Arc/Info 7.x) LAMBERT_AZIMUTHAL projection (
Browse files Browse the repository at this point in the history
…#4302)

git-svn-id: https://svn.osgeo.org/gdal/trunk/gdal@23261 f0d54148-0727-0410-94bb-9a71ac55c965
  • Loading branch information
rouault committed Oct 21, 2011
1 parent 3d67883 commit 2a66106
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions ogr/ogr_srs_esri.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -738,6 +738,14 @@ OGRErr OGRSpatialReference::importFromESRI( char **papszPrj )
OSR_GDV( papszPrj, "PARAM_6", 0.0 ) );
}

else if( EQUAL(osProj,"LAMBERT_AZIMUTHAL") )
{
SetLAEA( OSR_GDV( papszPrj, "PARAM_2", 0.0 ),
OSR_GDV( papszPrj, "PARAM_1", 0.0 ),
OSR_GDV( papszPrj, "PARAM_3", 0.0 ),
OSR_GDV( papszPrj, "PARAM_4", 0.0 ) );
}

else if( EQUAL(osProj,"EQUIDISTANT_CONIC") )
{
int nStdPCount = (int) OSR_GDV( papszPrj, "PARAM_1", 0.0 );
Expand Down

0 comments on commit 2a66106

Please sign in to comment.