We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 215048e commit 128f2c3Copy full SHA for 128f2c3
geemap/common.py
@@ -12894,11 +12894,11 @@ def download_ee_image(
12894
raise ValueError("image must be an ee.Image.")
12895
12896
if unmask_value is not None:
12897
- image = image.selfMask().unmask(unmask_value)
12898
if isinstance(region, ee.Geometry):
12899
image = image.clip(region)
12900
elif isinstance(region, ee.FeatureCollection):
12901
image = image.clipToCollection(region)
+ image = image.unmask(unmask_value, sameFootprint=False)
12902
12903
if region is not None:
12904
kwargs["region"] = region
0 commit comments