I was given a shapefile at work with the information that it is in Lambert Azimuth Equal Area (LAEA) projection (EPSG 9820). After some research on the web, I found out that EPSG 9820 is a generic EPSG for all LAEA projections [1].
The *.prj like this:
PROJCS["LAR_LambertAzimuthalEqualArea",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],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",-75.0],PARAMETER["Latitude_Of_Origin",-10.0],UNIT["Meter",1.0]]
Is there a way how I can figure out the EPSG code based on the *.prj file with open source tools?
[1] http://www.osgeo.org/pipermail/gdal-dev/2008-January/015519.html