Hi! I am trying to get thermal data from the Landsat-8 Level 2 Collection using the script you provide:
//VERSION=3
function evaluatePixel(samples) {
return [samples.B10, samples.dataMask];
}
function setup() {
return {
input: [{
bands: [
"B10",
"dataMask"
]
}],
output: {
bands: 2, sampleType:"FLOAT32"
}
}
}
But both the preview in the dashboard configuration and the response give back files with no data. What am I missing? Thank you!
