I am trying to request data using request builder. How do I get the QA
band in S5L2_NO2 product? I have to put it on my Evalscript.
function setup() {
return {
input: ["NO2", "QA", "dataMask"],
output: { bands: 1 , sampleType: "FLOAT32"}
}
}
function evaluatePixel(sample) {
if (sample.dataMask == 1 && sample.QA >= 0.75) {
return [sample.NO2]
} else {
return [-9999]
}
}
I get an error that QA band is not part of it. What is the correct name? And if there’s a document for that, please direct me.