Skip to content

Commit

Permalink
set the default input_conventions to be same as output_conventions (
Browse files Browse the repository at this point in the history
  • Loading branch information
scottstanie authored Aug 12, 2024
1 parent 63c1fe7 commit af1f2a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dolphin/masking.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def combine_mask_files(
raise ValueError(msg)

if input_conventions is None:
input_conventions = [MaskConvention.NUMPY] * len(mask_files)
input_conventions = [MaskConvention.ZERO_IS_NODATA] * len(mask_files)
elif isinstance(input_conventions, MaskConvention):
input_conventions = [input_conventions] * len(mask_files)

Expand Down

0 comments on commit af1f2a3

Please sign in to comment.