diff --git a/examples/basic_workflow_xarray.py b/examples/basic_workflow_xarray.py index fb25474..d3ed0c0 100644 --- a/examples/basic_workflow_xarray.py +++ b/examples/basic_workflow_xarray.py @@ -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 @@ -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 @@ -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:")