Hi Everyone
I am trying to get Scene Classification map actual values to download as an analytical .tif using this code from an earlier post on this question but cannot get the code working. Is anyone able to help?
//VERSION=3
function setup() {
return {
input: ["SCL"],
output: { bands: 1, sampleType: "UINT8" }
};
}
function evaluatePixel(samples) {
return [samples.SCL]
}