1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468
|
/*
* $Id: gdal_python.i 25101 2012-10-11 20:47:28Z rouault $
*
* python specific code for gdal bindings.
*/
%feature("autodoc");
%init %{
/* gdal_python.i %init code */
if ( GDALGetDriverCount() == 0 ) {
GDALAllRegister();
}
%}
%pythoncode %{
have_warned = 0
def deprecation_warn( module ):
global have_warned
if have_warned == 1:
return
have_warned = 1
from warnings import warn
warn('%s.py was placed in a namespace, it is now available as osgeo.%s' % (module,module),
DeprecationWarning)
from gdalconst import *
import gdalconst
import sys
byteorders = {"little": "<",
"big": ">"}
array_modes = { gdalconst.GDT_Int16: ("%si2" % byteorders[sys.byteorder]),
gdalconst.GDT_UInt16: ("%su2" % byteorders[sys.byteorder]),
gdalconst.GDT_Int32: ("%si4" % byteorders[sys.byteorder]),
gdalconst.GDT_UInt32: ("%su4" % byteorders[sys.byteorder]),
gdalconst.GDT_Float32: ("%sf4" % byteorders[sys.byteorder]),
gdalconst.GDT_Float64: ("%sf8" % byteorders[sys.byteorder]),
gdalconst.GDT_CFloat32: ("%sf4" % byteorders[sys.byteorder]),
gdalconst.GDT_CFloat64: ("%sf8" % byteorders[sys.byteorder]),
gdalconst.GDT_Byte: ("%st8" % byteorders[sys.byteorder]),
}
def RGBFile2PCTFile( src_filename, dst_filename ):
src_ds = Open(src_filename)
if src_ds is None or src_ds == 'NULL':
return 1
ct = ColorTable()
err = ComputeMedianCutPCT( src_ds.GetRasterBand(1),
src_ds.GetRasterBand(2),
src_ds.GetRasterBand(3),
256, ct )
if err != 0:
return err
gtiff_driver = GetDriverByName('GTiff')
if gtiff_driver is None:
return 1
dst_ds = gtiff_driver.Create( dst_filename,
src_ds.RasterXSize, src_ds.RasterYSize )
dst_ds.GetRasterBand(1).SetRasterColorTable( ct )
err = DitherRGB2PCT( src_ds.GetRasterBand(1),
src_ds.GetRasterBand(2),
src_ds.GetRasterBand(3),
dst_ds.GetRasterBand(1),
ct )
dst_ds = None
src_ds = None
return 0
%}
%include "python_exceptions.i"
%include "python_strings.i"
%import typemaps_python.i
/* -------------------------------------------------------------------- */
/* VSIFReadL() */
/* -------------------------------------------------------------------- */
%rename (VSIFReadL) wrapper_VSIFReadL;
%apply ( void **outPythonObject ) { (void **buf ) };
%inline %{
int wrapper_VSIFReadL( void **buf, int nMembSize, int nMembCount, VSILFILE *fp)
{
GIntBig buf_size = nMembSize * nMembCount;
if (buf_size == 0)
{
*buf = NULL;
return 0;
}
#if PY_VERSION_HEX >= 0x03000000
*buf = (void *)PyBytes_FromStringAndSize( NULL, buf_size );
if (*buf == NULL)
{
*buf = Py_None;
CPLError(CE_Failure, CPLE_OutOfMemory, "Cannot allocate result buffer");
return 0;
}
PyObject* o = (PyObject*) *buf;
char *data = PyBytes_AsString(o);
GIntBig nRet = (GIntBig)VSIFReadL( data, nMembSize, nMembCount, fp );
if (nRet * nMembSize < buf_size)
{
_PyBytes_Resize(&o, nRet * nMembSize);
*buf = o;
}
return nRet;
#else
*buf = (void *)PyString_FromStringAndSize( NULL, buf_size );
if (*buf == NULL)
{
CPLError(CE_Failure, CPLE_OutOfMemory, "Cannot allocate result buffer");
return 0;
}
PyObject* o = (PyObject*) *buf;
char *data = PyString_AsString(o);
GIntBig nRet = (GIntBig)VSIFReadL( data, nMembSize, nMembCount, fp );
if (nRet * nMembSize < buf_size)
{
_PyString_Resize(&o, nRet * nMembSize);
*buf = o;
}
return nRet;
#endif
}
%}
%clear (void **buf );
/* -------------------------------------------------------------------- */
/* GDAL_GCP */
/* -------------------------------------------------------------------- */
%extend GDAL_GCP {
%pythoncode {
def __str__(self):
str = '%s (%.2fP,%.2fL) -> (%.7fE,%.7fN,%.2f) %s '\
% (self.Id, self.GCPPixel, self.GCPLine,
self.GCPX, self.GCPY, self.GCPZ, self.Info )
return str
def serialize(self,with_Z=0):
base = [CXT_Element,'GCP']
base.append([CXT_Attribute,'Id',[CXT_Text,self.Id]])
pixval = '%0.15E' % self.GCPPixel
lineval = '%0.15E' % self.GCPLine
xval = '%0.15E' % self.GCPX
yval = '%0.15E' % self.GCPY
zval = '%0.15E' % self.GCPZ
base.append([CXT_Attribute,'Pixel',[CXT_Text,pixval]])
base.append([CXT_Attribute,'Line',[CXT_Text,lineval]])
base.append([CXT_Attribute,'X',[CXT_Text,xval]])
base.append([CXT_Attribute,'Y',[CXT_Text,yval]])
if with_Z:
base.append([CXT_Attribute,'Z',[CXT_Text,zval]])
return base
} /* pythoncode */
}
%extend GDALRasterBandShadow {
%apply ( void **outPythonObject ) { (void **buf ) };
%apply ( int *optional_int ) {(int*)};
%feature( "kwargs" ) ReadRaster1;
CPLErr ReadRaster1( int xoff, int yoff, int xsize, int ysize,
void **buf,
int *buf_xsize = 0,
int *buf_ysize = 0,
int *buf_type = 0,
int *buf_pixel_space = 0,
int *buf_line_space = 0) {
int nxsize = (buf_xsize==0) ? xsize : *buf_xsize;
int nysize = (buf_ysize==0) ? ysize : *buf_ysize;
GDALDataType ntype = (buf_type==0) ? GDALGetRasterDataType(self)
: (GDALDataType)*buf_type;
int pixel_space = (buf_pixel_space == 0) ? 0 : *buf_pixel_space;
int line_space = (buf_line_space == 0) ? 0 : *buf_line_space;
GIntBig buf_size = ComputeBandRasterIOSize( nxsize, nysize, GDALGetDataTypeSize( ntype ) / 8,
pixel_space, line_space, FALSE );
if (buf_size == 0)
{
*buf = NULL;
return CE_Failure;
}
%#if PY_VERSION_HEX >= 0x03000000
*buf = (void *)PyBytes_FromStringAndSize( NULL, buf_size );
if (*buf == NULL)
{
*buf = Py_None;
CPLError(CE_Failure, CPLE_OutOfMemory, "Cannot allocate result buffer");
return CE_Failure;
}
char *data = PyBytes_AsString( (PyObject *)*buf );
%#else
*buf = (void *)PyString_FromStringAndSize( NULL, buf_size );
if (*buf == NULL)
{
CPLError(CE_Failure, CPLE_OutOfMemory, "Cannot allocate result buffer");
return CE_Failure;
}
char *data = PyString_AsString( (PyObject *)*buf );
%#endif
CPLErr eErr = GDALRasterIO( self, GF_Read, xoff, yoff, xsize, ysize,
(void *) data, nxsize, nysize, ntype,
pixel_space, line_space );
if (eErr == CE_Failure)
{
Py_DECREF((PyObject*)*buf);
*buf = NULL;
}
return eErr;
}
%clear (void **buf );
%clear (int*);
%apply ( void **outPythonObject ) { (void **buf ) };
%feature( "kwargs" ) ReadBlock;
CPLErr ReadBlock( int xoff, int yoff, void **buf) {
int nBlockXSize, nBlockYSize;
GDALGetBlockSize(self, &nBlockXSize, &nBlockYSize);
int nDataTypeSize = (GDALGetDataTypeSize(GDALGetRasterDataType(self)) / 8);
GIntBig buf_size = (GIntBig)nBlockXSize * nBlockYSize * nDataTypeSize;
%#if PY_VERSION_HEX >= 0x03000000
*buf = (void *)PyBytes_FromStringAndSize( NULL, buf_size );
if (*buf == NULL)
{
*buf = Py_None;
CPLError(CE_Failure, CPLE_OutOfMemory, "Cannot allocate result buffer");
return CE_Failure;
}
char *data = PyBytes_AsString( (PyObject *)*buf );
%#else
*buf = (void *)PyString_FromStringAndSize( NULL, buf_size );
if (*buf == NULL)
{
CPLError(CE_Failure, CPLE_OutOfMemory, "Cannot allocate result buffer");
return CE_Failure;
}
char *data = PyString_AsString( (PyObject *)*buf );
%#endif
CPLErr eErr = GDALReadBlock( self, xoff, yoff, (void *) data);
if (eErr == CE_Failure)
{
Py_DECREF((PyObject*)*buf);
*buf = NULL;
}
return eErr;
}
%clear (void **buf );
%pythoncode {
def ReadRaster(self, xoff, yoff, xsize, ysize,
buf_xsize = None, buf_ysize = None, buf_type = None,
buf_pixel_space = None, buf_line_space = None ):
return _gdal.Band_ReadRaster1(self, xoff, yoff, xsize, ysize,
buf_xsize, buf_ysize, buf_type,
buf_pixel_space, buf_line_space)
def ReadAsArray(self, xoff=0, yoff=0, win_xsize=None, win_ysize=None,
buf_xsize=None, buf_ysize=None, buf_obj=None):
import gdalnumeric
return gdalnumeric.BandReadAsArray( self, xoff, yoff,
win_xsize, win_ysize,
buf_xsize, buf_ysize, buf_obj )
def WriteArray(self, array, xoff=0, yoff=0):
import gdalnumeric
return gdalnumeric.BandWriteArray( self, array, xoff, yoff )
def __get_array_interface__(self):
shape = [1, self.XSize, self.YSize]
}
}
%extend GDALDatasetShadow {
%feature("kwargs") ReadRaster1;
%apply (int *optional_int) { (GDALDataType *buf_type) };
%apply (int nList, int *pList ) { (int band_list, int *pband_list ) };
%apply ( void **outPythonObject ) { (void **buf ) };
%apply ( int *optional_int ) {(int*)};
CPLErr ReadRaster1( int xoff, int yoff, int xsize, int ysize,
void **buf,
int *buf_xsize = 0, int *buf_ysize = 0,
GDALDataType *buf_type = 0,
int band_list = 0, int *pband_list = 0,
int* buf_pixel_space = 0, int* buf_line_space = 0, int* buf_band_space = 0 )
{
int nxsize = (buf_xsize==0) ? xsize : *buf_xsize;
int nysize = (buf_ysize==0) ? ysize : *buf_ysize;
GDALDataType ntype;
if ( buf_type != 0 ) {
ntype = (GDALDataType) *buf_type;
} else {
int lastband = GDALGetRasterCount( self ) - 1;
if (lastband < 0)
{
*buf = NULL;
return CE_Failure;
}
ntype = GDALGetRasterDataType( GDALGetRasterBand( self, lastband ) );
}
int pixel_space = (buf_pixel_space == 0) ? 0 : *buf_pixel_space;
int line_space = (buf_line_space == 0) ? 0 : *buf_line_space;
int band_space = (buf_band_space == 0) ? 0 : *buf_band_space;
GIntBig buf_size = ComputeDatasetRasterIOSize (nxsize, nysize, GDALGetDataTypeSize( ntype ) / 8,
band_list ? band_list : GDALGetRasterCount(self), pband_list, band_list,
pixel_space, line_space, band_space, FALSE);
if (buf_size == 0)
{
*buf = NULL;
return CE_Failure;
}
%#if PY_VERSION_HEX >= 0x03000000
*buf = (void *)PyBytes_FromStringAndSize( NULL, buf_size );
if (*buf == NULL)
{
CPLError(CE_Failure, CPLE_OutOfMemory, "Cannot allocate result buffer");
return CE_Failure;
}
char *data = PyBytes_AsString( (PyObject *)*buf );
%#else
*buf = (void *)PyString_FromStringAndSize( NULL, buf_size );
if (*buf == NULL)
{
CPLError(CE_Failure, CPLE_OutOfMemory, "Cannot allocate result buffer");
return CE_Failure;
}
char *data = PyString_AsString( (PyObject *)*buf );
%#endif
CPLErr eErr = GDALDatasetRasterIO(self, GF_Read, xoff, yoff, xsize, ysize,
(void*) data, nxsize, nysize, ntype,
band_list, pband_list, pixel_space, line_space, band_space );
if (eErr == CE_Failure)
{
Py_DECREF((PyObject*)*buf);
*buf = NULL;
}
return eErr;
}
%clear (GDALDataType *buf_type);
%clear (int band_list, int *pband_list );
%clear (void **buf );
%clear (int*);
%pythoncode {
def ReadAsArray(self, xoff=0, yoff=0, xsize=None, ysize=None, buf_obj=None ):
import gdalnumeric
return gdalnumeric.DatasetReadAsArray( self, xoff, yoff, xsize, ysize, buf_obj )
def WriteRaster(self, xoff, yoff, xsize, ysize,
buf_string,
buf_xsize = None, buf_ysize = None, buf_type = None,
band_list = None,
buf_pixel_space = None, buf_line_space = None, buf_band_space = None ):
if buf_xsize is None:
buf_xsize = xsize;
if buf_ysize is None:
buf_ysize = ysize;
if band_list is None:
band_list = range(1,self.RasterCount+1)
if buf_type is None:
buf_type = self.GetRasterBand(1).DataType
return _gdal.Dataset_WriteRaster(self,
xoff, yoff, xsize, ysize,
buf_string, buf_xsize, buf_ysize, buf_type, band_list,
buf_pixel_space, buf_line_space, buf_band_space )
def ReadRaster(self, xoff, yoff, xsize, ysize,
buf_xsize = None, buf_ysize = None, buf_type = None,
band_list = None,
buf_pixel_space = None, buf_line_space = None, buf_band_space = None ):
if band_list is None:
band_list = range(1,self.RasterCount+1)
if buf_xsize is None:
buf_xsize = xsize;
if buf_ysize is None:
buf_ysize = ysize;
if buf_type is None:
buf_type = self.GetRasterBand(1).DataType;
return _gdal.Dataset_ReadRaster1(self, xoff, yoff, xsize, ysize,
buf_xsize, buf_ysize, buf_type,
band_list, buf_pixel_space, buf_line_space, buf_band_space )
def GetSubDatasets(self):
sd_list = []
sd = self.GetMetadata('SUBDATASETS')
if sd is None:
return sd_list
i = 1
while 'SUBDATASET_'+str(i)+'_NAME' in sd:
sd_list.append( ( sd['SUBDATASET_'+str(i)+'_NAME'],
sd['SUBDATASET_'+str(i)+'_DESC'] ) )
i = i + 1
return sd_list
def BeginAsyncReader(self, xoff, yoff, xsize, ysize, buf_obj = None, buf_xsize = None, buf_ysize = None, buf_type = None, band_list = None, options=[]):
if band_list is None:
band_list = range(1, self.RasterCount + 1)
if buf_xsize is None:
buf_xsize = 0;
if buf_ysize is None:
buf_ysize = 0;
if buf_type is None:
buf_type = GDT_Byte
if buf_xsize <= 0:
buf_xsize = xsize
if buf_ysize <= 0:
buf_ysize = ysize
if buf_obj is None:
from sys import version_info
nRequiredSize = int(buf_xsize * buf_ysize * len(band_list) * (_gdal.GetDataTypeSize(buf_type) / 8))
if version_info >= (3,0,0):
buf_obj_ar = [ None ]
exec("buf_obj_ar[0] = b' ' * nRequiredSize")
buf_obj = buf_obj_ar[0]
else:
buf_obj = ' ' * nRequiredSize
return _gdal.Dataset_BeginAsyncReader(self, xoff, yoff, xsize, ysize, buf_obj, buf_xsize, buf_ysize, buf_type, band_list, 0, 0, 0, options)
}
}
%extend GDALMajorObjectShadow {
%pythoncode {
def GetMetadata( self, domain = '' ):
if domain[:4] == 'xml:':
return self.GetMetadata_List( domain )
return self.GetMetadata_Dict( domain )
}
}
%include "callback.i"
|