Skip to content

Commit

Permalink
look at cloud cover over land instead of whole-scene cloud cover
Browse files Browse the repository at this point in the history
  • Loading branch information
jhkennedy committed Mar 26, 2024
1 parent 7c8dfc1 commit fe7382e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion landsat/src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def _qualifies_for_processing(item: pystac.item.Item, max_cloud_cover: int = MAX
and 'OLI' in item.properties['instruments']
and item.properties['landsat:collection_category'] in ['T1', 'T2']
and item.properties['landsat:wrs_path'] + item.properties['landsat:wrs_row'] in LANDSAT_TILES_TO_PROCESS
and item.properties['eo:cloud_cover'] < max_cloud_cover
and item.properties['landsat:cloud_cover_land'] < max_cloud_cover
and item.properties['view:off_nadir'] == 0
)

Expand Down

0 comments on commit fe7382e

Please sign in to comment.