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
if you try to read a really low version of your data, we will first create a huge VRT and then ask to read a decimated part of it (this is to make sure we read the overview).
To be honest, for now I'm not sure there is a solution for this.
The text was updated successfully, but these errors were encountered:
By design rio-tiler assume you are working within the native zoom range of your data (raw data = Max res, max res/number of overviews ~= minzoom).
When reading a file, we always use a VRT to align the data to the
bounds
/size
we want to read. This is all defined inrio-tiler/rio_tiler/utils.py
Lines 172 to 188 in ccf6aa0
(this part was copie from rasterio/rasterio#1373 (comment))
if you try to read a really low version of your data, we will first create a huge VRT and then ask to read a decimated part of it (this is to make sure we read the overview).
To be honest, for now I'm not sure there is a solution for this.
The text was updated successfully, but these errors were encountered: