Skip to content

Commit

Permalink
black format fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sid_terrafloww committed Jan 5, 2025
1 parent 0238ee9 commit 1dd1c6f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/basic_workflow_xarray.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def main():
custom_name=custom_name,
data_source=data_source,
output_dir=workspace_dir,
date_range=date_range
date_range=date_range,
)

# Create index if collection is not present
Expand All @@ -53,7 +53,7 @@ def main():
# add platform filter for Landsat 9, 8, 7, 5, 4 if needed,
# else remove it for all platforms
# This is unique to Landsat STAC endpoint
platform={"in": ["LANDSAT_8"]}
platform={"in": ["LANDSAT_8"]},
)

# List existing collections
Expand All @@ -71,7 +71,7 @@ def main():
# for separate processing of each geometry
geometries=[aoi1_polygon, aoi2_polygon],
bands=["B4", "B5"],
cloud_cover_lt=20
cloud_cover_lt=20,
)

print("\nInput dataset:")
Expand Down

0 comments on commit 1dd1c6f

Please sign in to comment.