We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f383a03 commit a5dc14aCopy full SHA for a5dc14a
src/mdio/core/grid.py
@@ -117,7 +117,7 @@ def build_map(self, index_headers: HeaderArray) -> None:
117
live_dim_indices = []
118
for dim in self.dims[:-1]:
119
dim_hdr = index_headers[dim.name][start:end]
120
- indices = np.searchsorted(dim, dim_hdr).astype(np.uint32) # Use uint32
+ indices = np.searchsorted(dim, dim_hdr).astype(np.uint32)
121
live_dim_indices.append(indices)
122
live_dim_indices = tuple(live_dim_indices)
123
0 commit comments