Skip to content

Commit

Permalink
fix empty nudge array returned from diffusive routing
Browse files Browse the repository at this point in the history
  • Loading branch information
shorvath-noaa committed Jan 25, 2024
1 parent bf4a6f3 commit bda0a30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/troute-routing/troute/routing/compute.py
Original file line number Diff line number Diff line change
Expand Up @@ -1562,7 +1562,7 @@ def compute_diffusive_routing(
# place-holder for rfc DA parameters
(np.asarray([]), np.asarray([]), np.asarray([])),
# place-holder for nudge values
(np.asarray([])),
(np.empty(shape=(0, nts + 1), dtype='float32')),
)
)

Expand Down

0 comments on commit bda0a30

Please sign in to comment.