what happens if there is no cloud mask at all for a certain map? In this case NDVI should be taken as is. Instead, to my understanding, what happens:
if(isnull(cloud), null()
If cloud map is not found (meaning there is no cloud detected), isnull(cloud)=True, so the NDVI resulting map is null too. Please correct me if I’m wrong.
what happens if there is no cloud mask at all for a certain map? In this case NDVI should be taken as is. Instead, to my understanding, what happens:
if(isnull(cloud), null()
If cloud map is not found (meaning there is no cloud detected), isnull(cloud)=True, so the NDVI resulting map is null too. Please correct me if I’m wrong.
the cloud masks are apparently created with “sentinel-cloud-mask.py” which requires an AOI vector as input, and a cloud mask is always generated: if there are no clouds or no cloud mask, only the AOI is used as mask.