Skip to content

Commit

Permalink
Modify hard-coded chunk size, making it (2560,2160) [ref #59]
Browse files Browse the repository at this point in the history
  • Loading branch information
tcompa committed May 31, 2022
1 parent e436d1d commit 71bf905
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions fractal/tasks/maximum_intensity_projection.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ def maximum_intensity_projection(
# both at level 0 (before coarsening) and at levels 1,2,.. (after
# repeated coarsening).
# Note that balance=True may override these values.
chunk_size_x = 1280
chunk_size_y = 1080
chunk_size_x = 2560
chunk_size_y = 2160

if not zarrurl.endswith("/"):
zarrurl += "/"
Expand Down
4 changes: 2 additions & 2 deletions fractal/tasks/yokogawa_to_zarr.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ def yokogawa_to_zarr(
# both at level 0 (before coarsening) and at levels 1,2,.. (after
# repeated coarsening).
# Note that balance=True may override these values.
chunk_size_x = 1280
chunk_size_y = 1080
chunk_size_x = 2560
chunk_size_y = 2160

# Define well
if not zarrurl.endswith("/"):
Expand Down

0 comments on commit 71bf905

Please sign in to comment.