Skip to content

Commit

Permalink
FIX: Use auto as default dask chunk (instead of 2048)
Browse files Browse the repository at this point in the history
  • Loading branch information
remi-braun committed Nov 3, 2023
1 parent c2cbbed commit 0896216
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@

### Bug Fixes

- FIX: Use `auto` as default dask chunk (instead of `2048`)
- FIX: Minor fix in RasterioError handling when reading bands
- FIX: Fix Landsat L2 surface reflectance and temperature computation ([#99](https://github.com/sertit/eoreader/issues/99))
- FIX: Fixing TIR temperature conversion for Landsat-7
Expand Down
2 changes: 1 addition & 1 deletion eoreader/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
from eoreader.keywords import _prune_keywords

LOGGER = logging.getLogger(EOREADER_NAME)
DEFAULT_TILE_SIZE = 2048
DEFAULT_TILE_SIZE = "auto"
UINT16_NODATA = rasters.UINT16_NODATA


Expand Down

0 comments on commit 0896216

Please sign in to comment.