You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For PostGIS-Rasters-Support, the importer could use 'gdalinfo' to
extract the raster size in pixel and then specify overviews as powers
of 2 (2,4,8,16...) until the one that would result in a single 256
tile being generated.
Example:
gdalinfo HYP_HR.tif | grep '^Size is ' # Size is 21600, 10800
take larger dimension: 21600
compute max power of 2 needed: ceil(log2(21600/256)) == 7