in Google Earth Editor, we've created an object using the reduceRegion() function:
var meanValue2015 = ndvi2015.reduceRegion({
reducer: ee.Reducer.mean(),
geometry: justEC15.geometry(),
crs: 'EPSG:4326',
scale: 30,
});
My issue is that meanValue2015 appears to be an object - I input
print(meanValue2015);
print(typeof(meanValue2015));
print(Object.keys(meanValue2015));
and get "Object (1 property) - NDVI: 0.3177...", "Object", and then "[ ]" respectively? And then
print(meanValue2015.NDVI);
print(meanValue2015['NDVI']);
is undefined? Is there something obvious I'm doing wrong here?