Skip to content

Commit

Permalink
change to 2 chunks in lat lon
Browse files Browse the repository at this point in the history
  • Loading branch information
peterdudfield committed Jan 3, 2025
1 parent 0a18e80 commit e150bd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nwp_consumer/internal/entities/coordinates.py
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ def default_chunking(self) -> dict[str, int]:
"init_time": 1,
"step": 1,
} | {
dim: len(getattr(self, dim)) // 8 if len(getattr(self, dim)) > 8 else 1
dim: len(getattr(self, dim)) // 2 if len(getattr(self, dim)) > 2 else 1
for dim in self.dims
if dim not in ["init_time", "step"]
}
Expand Down

0 comments on commit e150bd6

Please sign in to comment.