Skip to content

Commit 163faa1

Browse files
committed
Fix(rema): Has to be transposed
1 parent fb03d4b commit 163faa1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/boris/utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ def get_rema(
241241
return rema[
242242
hist.loc(left) : hist.loc(right) + 1 : hist.rebin(binning_factor),
243243
hist.loc(left) : hist.loc(right) + 1 : hist.rebin(binning_factor),
244-
]
244+
].T
245245

246246

247247
def interpolate_grid(grid: np.ndarray, point: float) -> list[tuple[int, float, float]]:

0 commit comments

Comments
 (0)