Processing feature: 0 from 2021-04-01 00:00:00 to 2022-10-01 00:00:00
Which coincides with the values in the function parameters, not the properties I created for the asset as follows:
var renameProperty = function(feature) {
var year = ee.Number(feature.get('rclmtn_d')).format('%d');
feature = feature.set('system:time_start', year.cat('-01-01'))
.set('system:time_end', '2023-01-01');
return feature;
};
// Apply the function
var intersects = intersects.map(renameProperty);
The returned message is:
Which coincides with the values in the function parameters, not the properties I created for the asset as follows:
_Originally posted by @ronnyhdez in https://github.com/ronnyhdez/reclaimed_sites_ab/issues/95#issuecomment-2188074530_