Skip to content

Commit

Permalink
Update seasons.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ericgitonga authored Oct 8, 2023
1 parent c99d6b7 commit 33ede6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ecoscope/analysis/seasons.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def std_ndvi_vals(
end=None
):

coll = ee.ImageCollection(image_coll).select(band).filterDate(start, end).map(lambda x: x.multiply(ee.Image(scale)))
coll = ee.ImageCollection(image_coll).select(band).filterDate(start, end)#.map(lambda x: x.multiply(ee.Image(scale)))

ndvi_vals = (
coll.toBands()
Expand Down

0 comments on commit 33ede6f

Please sign in to comment.