-
Notifications
You must be signed in to change notification settings - Fork 122
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Exporting an ee.ImageCollection
#430
Comments
Yeah sorry i was super tired of refactoring when I did |
Do you mean extracting the system:index with a aggregate array and then use it as a filter in the loop ? |
it's not urgent, not need to do it ASAP. I could also do it if you want. |
exactly 👍 |
this Issue made me realize that the function to export an image collection has not been implemented in the same way as the older version of this package. The main difference, that I'd like to see "restored", is the ability to create the file names using the image properties (
namePattern
argument).geetools/geetools/batch/imagecollection.py
Lines 9 to 11 in 918abab
Also, I think that this line
geetools/geetools/ee_export.py
Line 81 in 14fdc79
forces the collection to be computed as a list, due to
geetools/geetools/ee_export.py
Line 76 in 14fdc79
if the collection had an intense computation it might fail due to memory issues. Instead, I propose to loop over the
system:index
property, which by definition is always unique (this was not the way it was coded in the previous version)The text was updated successfully, but these errors were encountered: