First of all I am new to python coding.
Trying to export a geoTIFF file from google earth engine to my google drive through a python code . I’m running it on jupyter notebook.
The code works without error.
The problem is that the folder “TEST-IMAGE” appears on my drive except it is empty.
The code I’m using is as follows
Export clipped image to Gdrive
<code>`task = ee.batch.Export.image.toDrive(image=N_24_PARGANAS_viirs,
scale=30,
fileFormat='GeoTIFF',
description='N24PGS_VIIRS_2022',
folder='TEST-IMAGE',
maxPixels=1e9)
task.start()`
</code>
<code>`task = ee.batch.Export.image.toDrive(image=N_24_PARGANAS_viirs,
scale=30,
fileFormat='GeoTIFF',
description='N24PGS_VIIRS_2022',
folder='TEST-IMAGE',
maxPixels=1e9)
task.start()`
</code>
`task = ee.batch.Export.image.toDrive(image=N_24_PARGANAS_viirs,
scale=30,
fileFormat='GeoTIFF',
description='N24PGS_VIIRS_2022',
folder='TEST-IMAGE',
maxPixels=1e9)
task.start()`
please help me to find a solution? Do not hesitate to ask me for more details. Thanks 🙂
New contributor
Sudeshna Ghosh is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.