I am trying to export data from Google Earth Engine to my Google Drive. To name the file, I am using information from its data properties which results in 2019.0_1.0
. However, I would like the file name to be in a different format - '2019_1'. Below is my code snippet:
batch.Download.ImageCollection.toDrive(byMonthYear, 'sst', {
name: '{year}_{month}',
type: 'float',
scale: 1000,
region: POI
});