Tagged Questions

1
vote
2answers
370 views

How can I get the installed GDAL/OGR version from python?

How can I get the installed GDAL/OGR version from python? I aware of the gdal-config program and are currently using the following: In [3]: import commands In [4]: commands.getoutput('gdal-config ...
1
vote
1answer
982 views

Convert GeoTIFF to JPEG and Extract GeoTIFF Headers in Python

I am making a Python script which will read in a GeoTIFF file, and will do both: convert the GeoTIFF into a static JPEG (that is much smaller in size), and create a separate text file which contains ...
0
votes
3answers
368 views

How to build GDAL 1.8 from source on Windows XP

Does anyone know or have instructions on how to build GDAL 1.8 (http://trac.osgeo.org/gdal/wiki/DownloadSource) from source on Windows XP? I can't find any Windows executable for this version (still ...
0
votes
1answer
600 views

gdal c# readasarray

hi i was using gdal api to read raster files... i found in some places that python version has readasarray i assume this takes the data of the raster file as two dimensional array, is there any ...