Unable to monitor task progress when exporting GEE resources
zwy1502 opened this issue · 1 comments
zwy1502 commented
Description
Why did I run the following code to export data, but there was no task in the GEE code editor? What’s even more strange is that after a while, my Google Cloud Drive did download something. In general, the code I run in python to download the image is valid and can be downloaded, but what is different from before is that I cannot see the task in the GEE code editor.
What I Did
geemap.ee_export_image_to_drive(
s1_processed.first(),
description='s1_processed',
folder='s1_processed',
region=studyArea.geometry(),
scale=10,crs='EPSG:4326',
maxPixels=1e13,
)
giswqs commented
I don't think this is a geemap issue. You are welcome to use ee.batch.Export.image.toDrive
directly. geemap. ee_export_image_to_drive
is a simple wrapper of this function. They should behave the same way.
https://developers.google.com/earth-engine/guides/exporting_images#colab-python_2