Skip to content

Commit

Permalink
Fix nodata filter in prechip
Browse files Browse the repository at this point in the history
  • Loading branch information
yellowcap committed Jul 27, 2024
1 parent e0c8302 commit b7792af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stacchip/processors/prechip.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def process() -> None:
platform = os.environ.get("STACCHIP_PLATFORM", "")
cubes_per_job = int(os.environ.get("STACCHIP_CUBES_PER_JOB", 10))
pool_size = int(os.environ.get("STACCHIP_POOL_SIZE", 10))
chip_max_nodata = int(os.environ.get("STACCHIP_MAX_NODATA", 0.05))
chip_max_nodata = float(os.environ.get("STACCHIP_MAX_NODATA", 0.05))

# Open table
table = da.dataset(indexpath, format="parquet").to_table(
Expand Down

0 comments on commit b7792af

Please sign in to comment.