544 """Size of natural block reported by GDAL for bands of given dataset"""
547 for i
in range(band_from, band_to):
548 band = ds.GetRasterBand(i)
549 assert band
is not None,
"Cannot access raster band %d" % i
550 dims = band.GetBlockSize()
557 if block_dims != dims:
558 logit(
"MSG: Block sizes don't match: %s != %s\n" % (
str(block_dims),
str(dims)))
560 assert block_dims
is not None,
"Failed to calculate block size"
561 return (int(block_dims[0]), int(block_dims[1]))
def calculate_block_size(ds, band_from, band_to)