<div dir="ltr">Indeed, thanks a lot Even. The OVR in <span style="font-family:arial,sans-serif;font-size:13px">GDAL_TIFF_OVR_BLOCKSIZE made me believe it was only for external .ovr overviews.</span><div><span style="font-family:arial,sans-serif;font-size:13px"><br>

</span></div><div><span style="font-family:arial,sans-serif;font-size:13px">Etienne</span></div></div><div class="gmail_extra"><br><br><div class="gmail_quote">2014-06-10 8:48 GMT-04:00 Even Rouault <span dir="ltr"><<a href="mailto:even.rouault@mines-paris.org" target="_blank">even.rouault@mines-paris.org</a>></span>:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Selon "Etienne B. Racine" <<a href="mailto:etiennebr@gmail.com">etiennebr@gmail.com</a>>:<br>
<div><div class="h5"><br>
> Hi List,<br>
><br>
> Is there a way to control the block size of overviews and inspect that<br>
> block size from gdalinfo ?<br>
> I have a raster with 256x256 block size.<br>
> Band 1 Block=256x256 Type=Byte, ColorInterp=Red<br>
> Band 2 Block=256x256 Type=Byte, ColorInterp=Green<br>
> Band 3 Block=256x256 Type=Byte, ColorInterp=Blue<br>
><br>
> I'm trying to feed the images to a program that seemingly supports Tiffs<br>
> with internal overview of the same block size than the image.<br>
><br>
> I've tried >gdaladdo --config BLOCKXSIZE 256 --config BLOCKYSIZE 256<br>
> image.tif 2 4 8 16 32<br>
> gdalinfo:<br>
> Band 1 Block=256x256 Type=Byte, ColorInterp=Red<br>
>   Overviews: 8655x5655, 4328x2828, 2164x1414, 1082x707, 541x354<br>
> Band 2 Block=256x256 Type=Byte, ColorInterp=Green<br>
>   Overviews: 8655x5655, 4328x2828, 2164x1414, 1082x707, 541x354<br>
> Band 3 Block=256x256 Type=Byte, ColorInterp=Blue<br>
>   Overviews: 8655x5655, 4328x2828, 2164x1414, 1082x707, 541x354<br>
><br>
> But I couldn't find a way to inspect the overview block size to confirm<br>
> they are 256x256 since I get the same results if I set BLOCKSIZE to 128. I<br>
> suspect these options are ignored in gdaladdo.<br>
<br>
</div></div>The right name is GDAL_TIFF_OVR_BLOCKSIZE. See <a href="http://gdal.org/frmt_gtiff.html" target="_blank">http://gdal.org/frmt_gtiff.html</a><br>
<div class=""><br>
><br>
> Any way I can 1) control the overview block size and 2) inspect the block<br>
> size ?<br>
<br>
</div>Not directly with gdalinfo.<br>
With Python :<br>
<br>
from osgeo import gdal<br>
ds = gdal.Open('your.tif')<br>
print(ds.GetRasterBand(1).GetOverview(0).GetBlockSize())<br>
<div class="HOEnZb"><div class="h5"><br>
<br>
<br>
><br>
> Thanks for your help,<br>
> Etienne<br>
><br>
<br>
<br>
</div></div></blockquote></div><br></div>