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
The two rastersource requests obviously can be derived from one single request. Can we write a generic optimization function (see https://docs.dask.org/en/latest/optimize.html) to merge similar rastersource requests?
The text was updated successfully, but these errors were encountered:
This is an optimization that will lead to less raster IO in some cases, especially when
raster.Smooth
is used.In some complex graphs, we have the situation that the result of
raster.Smooth
is compared with the original. A contrived example:Requesting data from this result will give 2 different raster requests:
The two rastersource requests obviously can be derived from one single request. Can we write a generic optimization function (see https://docs.dask.org/en/latest/optimize.html) to merge similar rastersource requests?
The text was updated successfully, but these errors were encountered: