Please help me with a python code to read metadata from a Raster file. Thanks
Tell me more
×
Geographic Information Systems Stack Exchange is a question and answer site for
cartographers, geographers and GIS professionals. It's 100% free, no registration required.
|
Two options: 1)Use GDAL Python bindings, the code is here. 2)Run GDALINFO from python and capture the stdout, to get a string with the metadata:
|
|||
|
|
|
You could use gdalinfo: http://www.gdal.org/gdalinfo.html |
|||
|
|