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