Skip to content

Commit

Permalink
small fix for single band images that pretend to be multiband
Browse files Browse the repository at this point in the history
  • Loading branch information
Sierra-MC committed May 18, 2024
1 parent a2be08d commit 26ce78d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pdr/loaders/queries.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def check_fix_validity(props: ImageProps) -> None:
if (props["linepad"] > 0) and props["band_storage_type"] not in (
None,
"LINE_INTERLEAVED",
):
) and props['nbands'] > 1:
raise NotImplementedError(
"'Conventional' line pre/suffixes are not supported for non-BIL "
"multiband images."
Expand Down

0 comments on commit 26ce78d

Please sign in to comment.