Skip to content

Commit

Permalink
fix error in array extrap
Browse files Browse the repository at this point in the history
  • Loading branch information
jdebacker committed Jan 17, 2024
1 parent 1159f20 commit 536141b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ogcore/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -997,7 +997,7 @@ def extrapolate_arrays(param_in, dims=None, item="Parameter Name"):
if param_in.shape[0] == dims[1]:
param_in = np.tile(
param_in.reshape(1, dims[1], dims[2]),
(dims[0] - dims[1], 1, 1),
(dims[0], 1, 1),
)
param_out = np.concatenate(
(
Expand Down

0 comments on commit 536141b

Please sign in to comment.