Skip to content

Commit

Permalink
Process rgb, even when panchromatic flag is enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
plant99 committed Jul 24, 2020
1 parent fef8932 commit 61e620a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion felicette/sat_processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def process_landsat_rgb(id, bands):

def process_landsat_data(id, bands):

if bands == [2, 3, 4]:
if bands == [2, 3, 4] or bands == [2, 3, 4, 8]:
process_landsat_rgb(id, bands)
elif bands == [3, 4, 5]:
process_landsat_vegetation(id, bands)

0 comments on commit 61e620a

Please sign in to comment.