Sentinel-3 SLSTR False color composite
//VERSION=3
let minVal = 0.0;
let maxVal = 0.8;
let viz = new HighlightCompressVisualizer(minVal, maxVal);
function evaluatePixel(samples) {
let val = [samples.S3, samples.S2, samples.S1];
val = viz.processList(val);
val.push(samples.dataMask);
return val;
}
function setup() {
return {
input: [{
bands: [
"S3",
"S2",
"S1",
"dataMask"
]
}],
output: {
bands: 4
}
}
}
Evaluate and Visualize
General description
The script for Sentinel-3 SLSTR uses reflectance bands S3, S2 and S1 to return a false color composite, which generally visualizes vegetation in red, non-vegetated ground in brown colors, clouds in white and water in black.
Description of representative images
SLSTR false color composite of the US. Acquired on 2021-06-13, processed by Sentinel Hub.