Hello,
I’m struggling a little with acess the cloud confidence and cloud shadow confidence layer.
I read here about the layer, and also read here about the possibility to acess it, however i’m still missing part in the chain of acquire the cloud mask.
I’m using sentinel hub request and trying to acess the mask data from same evaluate script of Landsat as following:
evalscript_lan8 = """
//VERSION=3
function setup() {
return {
input: ["B01", "B02", "B03","B04", "B05", "B06","B07"],
output: { bands: 7 },
sampleType:"INT16"
};
}
function evaluatePixel(sample) {
return [sample.B01,sample.B02,sample.B03,sample.B04,sample.B05,sample.B06,sample.B07,decodeLs8Qa(2800)];
}
"""
But that just return the image and I don’t find any data about the clouds in the retrieved image.
So my question here is how can I access this data?
