<HTML>
<style> BODY { font-family:Arial, Helvetica, sans-serif;font-size:12px; }</style>Hi List,<br>
<br>
I'm trying to save a numpy array to a GTiff, which should be quite straightforward, considering all the examples available on the web. However, I get an file that is not readable by Qgis, is regarded by ArcMap to have only 0 and gdalinfo displays nothing on the values.<br>
<br>
I start with a ndarray, dtype = int32, shape = ( 10,10). It has integer values between 1 and 10. The code is as follows:<br>
<br>
import numpy as np<br>
from osgeo import gdal<br>
from osgeo import osr<br>
<br>
#np array<br>
a = np.ones((10,10))<br>
<br>
#coord-system<br>
sr_str = 'LOCAL_CS["arbitrary"]'<br>
sr = osr.SpatialReference( sr_str )<br>
<br>
#driver<br>
driver = gdal.GetDriverByName("GTiff")<br>
<br>
#dataset<br>
ds = driver.Create("D:\\temp\\output.tif", 10, 10, 1, gdal.GDT_Byte)<br>
ds.SetProjection( sr_str )<br>
ds.SetGeoTransform((0, 1, 0,0, 0,1))<br>
<br>
#write and close<br>
ds.GetRasterBand(1).WriteArray(a)<br>
ds = None<br>
<br>
The corresponding gdalinfo is:<br>
*********<br>
Raster dataset parameters:<br>
&nbsp; Projection: LOCAL_CS["arbitrary",UNIT["metre",1,AUTHORITY["EPSG","9001"]]]<br>
&nbsp; RasterCount: 1<br>
&nbsp; RasterSize (10,10)<br>
Using driver GeoTIFF<br>
&nbsp; Metadata:<br>
&nbsp;&nbsp;&nbsp; 0:&nbsp; AREA_OR_POINT=Area<br>
<br>
&nbsp; Image Structure Metadata:<br>
&nbsp;&nbsp;&nbsp; 0:&nbsp; INTERLEAVE=BAND<br>
<br>
Corner Coordinates:<br>
&nbsp; Upper Left (0, 0)<br>
&nbsp; Lower Left (0, 10)<br>
&nbsp; Upper Right (10, 0)<br>
&nbsp; Lower Right (10, 10)<br>
&nbsp; Center (5, 5)<br>
<br>
Coordinate System is:<br>
LOCAL_CS["arbitrary",<br>
&nbsp;&nbsp;&nbsp; UNIT["metre",1,<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; AUTHORITY["EPSG","9001"]]]<br>
Band 1 :<br>
&nbsp;&nbsp; DataType: Byte<br>
&nbsp;&nbsp; ColorInterpretation: Gray<br>
&nbsp;&nbsp; Description:<br>
&nbsp;&nbsp; Size (10,10)<br>
&nbsp;&nbsp; BlockSize (10,10)<br>
*********<br>
<br>
I have tried both version 1.6.3 (I'm trying to make a Qgis plugin, and thus restricted to 1.6.3) as well as 1.8.1. I have also tried ds = driver.Create("D:\\temp\\output.tif", 10, 10, 1, gdal.GDT_Int32), but that didn't make much difference.<br>
<br>
I tried to make a Surfer grid (GSBG), and this somewhat worked: it gave a nice picture, but the values were off the charts.<br>
<br>
Any clues as to what I'm missing here? Cheers,<br>
<br>
Tom van der Putte<br>
<br>
 </HTML>