I would like to download an image from GEE to ArcGIS, with all information (coordinate, pixel value). I am trying but I couldn't.
How can I to do that?
I got this message:
Error: Image.clipToBoundsAndScale, argument 'input': Invalid type. Expected type: Image<unknown bands>. Actual type: ImageCollection. This is the example of what I want to download (image)
This is my code:
var point = ee.Geometry.Point([-46.633286, -23.550510]); // generate a buffer distance list var distance_list = ee.List.sequence({ start: 1000, end: 50000, step: 1000 }); var buffer_func = function (distance) { // new feature containing the buffer return ee.Feature(point.buffer(distance), {}); } var buffers = ee.FeatureCollection(distance_list.map(buffer_func)); var clipToCol = function (image) { return image.clip(buffers) }; ///////////////////////////// var AOD = ee.ImageCollection('MODIS/006/MCD19A2_GRANULES') .select('Optical_Depth_055') .filterDate('2019-05-13', '2019-05-28').map(clipToCol); //.filterBounds(RMSP); var viz = { min: 0, max: 350, palette: ['black', 'blue', 'purple', 'cyan', 'green', 'yellow', 'red'] }; Map.addLayer(AOD.mean(), viz, 'Optical Depth 055'); var outline = ee.Image().byte().paint({ featureCollection: buffers, ////////////////////////// color: 1, width: 1 }); Map.addLayer(outline, { palette: ['black'] }, 'buffers'); ///////////////////// Map.setCenter(-46.63203, -23.55221, 9); Export.image.toDrive({ image: AOD, description: 'image', scale: 1000, region: geometry }); 
