Skip to content

Commit e5e844d

Browse files
committed
Fix the sklearn version
1 parent 73b2e70 commit e5e844d

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ pyarrow==11.0.0
1717
pyproj==3.2.1
1818
rtree==1.2.0
1919
s3fs==0.4.2
20-
scikit-learn==1.3.2
2120
scikit-learn==1.5.2
2221
scipy==1.9.1
2322
sentry-sdk==1.44.1

scripts/fmc_processing_script.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ def fmc_processing(
200200
local_tif = product_name + f"_{region_code}_{nm_date}_fmc.tif"
201201

202202
# save to file
203-
write_cog(masked_data.LFMC, fname=local_tif)
203+
write_cog(masked_data.LFMC, fname=local_tif, overwrite=True, nodata=-999)
204204

205205
logger.info("Save result as: " + str(local_tif))
206206

0 commit comments

Comments
 (0)