Skip to content

Commit

Permalink
change padding default value when preparing volume in postprocessing
Browse files Browse the repository at this point in the history
  • Loading branch information
clatlan committed Jul 22, 2024
1 parent e3df35b commit ef7551a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cdiutils/process/postprocessor.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def prepare_volume(
if final_shape is None:
final_shape = find_suitable_array_shape(
support,
padding=np.repeat(6, support.ndim)
padding=np.repeat(10, support.ndim)
)
# center the arrays at the center of mass of the support
com = CroppingHandler.get_position(support, "com")
Expand Down

0 comments on commit ef7551a

Please sign in to comment.