Re: [gdal-dev] Using Python-GDAL to retrieve Projection information

2010-06-29 Thread Frank Warmerdam
Kim, You can use GetProjection() to fetch the coordinate system: dataset = gdal.Open( input ) projection = dataset.GetProjection() The returned value is a string containing the WKT description of the coordinate system. Best regards, On Tue, Jun 29, 2010 at 11:41 AM, Kim Besson wrote: > Gree

[gdal-dev] Using Python-GDAL to retrieve Projection information

2010-06-29 Thread Kim Besson
Greetings I have been using Python GDAL to retrieve image size (XSize YSize) but now I need to retrieve Projection information in order to use in GDALWARP. Has anyone has an practical-example on how to use it? THanks Best regards, Kim ___ gdal-dev maili