I am trying to download availables scenes of sentinel 1-GRD into a date range. I have done this for a composite image and It has been worked properly but It is doesn´t work for an images collection.
My aim is to downnload all images GRD (VV + VH polarisation) into a given area (geometry). This is my code:
//
// Load the Sentinel-1 ImageCollection.
var imgVV = ee.ImageCollection('COPERNICUS/S1_GRD')
.filter(ee.Filter.listContains('transmitterReceiverPolarisation', 'VV'))
.filter(ee.Filter.eq('instrumentMode', 'IW'));
var desc = imgVV.filter(ee.Filter.eq('orbitProperties_pass', 'DESCENDING'));
var asc = imgVV.filter(ee.Filter.eq('orbitProperties_pass', 'ASCENDING'));
var date = ee.Filter.date('2015-03-01', '2015-06-20');
var ascChange = ee.ImageCollection(asc.filter(date).filterBounds(ee.Geometry.Polygon(geometry)));
Map.setCenter(3.3478, 39.6218, 12);
Map.addLayer(ascChange, {min: -25, max: 5}, 'Multi-T Mean ASC', true);
//print(ee.List([asChange]));
Export.image.toDrive({
image: ascChange,
description:'Ascendente_CMillor',
scale: 10,
region: geometry
})
ERROR:Multi-T Mean ASC: Layer error: Unknown variable references: []. //
I think the problem should be when it tries to build the 'Multi-T Mean ASC' list of images but I do not know how to configure it in order to rename each scene with its date and type of orbitProperties_pass (ASC/DESC)
Finally, My idea is to obtain the results (images to download) renamed as scenedate_orbitProperties_pass_GRD.tiff
Can somebody help me?
Thanks, Juanjo