|
| 1 | +//VERSION=3 |
| 2 | +//Reference: https://earth.esa.int/web/sentinel/technical-guides/sentinel-2-msi/level-2a/algorithm |
| 3 | + |
| 4 | +function setup() { |
| 5 | + return { |
| 6 | + input: ["B03", "B11", "B04", "B02", "dataMask"], |
| 7 | + output: [ |
| 8 | + { id: "default", bands: 4 }, |
| 9 | + { id: "index", bands: 1, sampleType: "FLOAT32" }, |
| 10 | + { id: "eobrowserStats", bands: 2, sampleType: 'FLOAT32' }, |
| 11 | + { id: "dataMask", bands: 1 } |
| 12 | + ] |
| 13 | + }; |
| 14 | +} |
| 15 | + |
| 16 | +function evaluatePixel(samples) { |
| 17 | + let val = index(samples.B03, samples.B11); |
| 18 | + let imgVals = null; |
| 19 | + // The library for tiffs works well only if there is only one channel returned. |
| 20 | + // So we encode the "no data" as NaN here and ignore NaNs on frontend. |
| 21 | + const indexVal = samples.dataMask === 1 ? val : NaN; |
| 22 | + |
| 23 | + if (val > 0.42) |
| 24 | + imgVals = [0, 0.8, 1, samples.dataMask]; |
| 25 | + else |
| 26 | + imgVals = [2.5 * samples.B04, 2.5 * samples.B03, 2.5 * samples.B02, samples.dataMask]; |
| 27 | + |
| 28 | + return { |
| 29 | + default: imgVals, |
| 30 | + index: [indexVal], |
| 31 | + eobrowserStats: [val, isCloud(samples) ? 1 : 0], |
| 32 | + dataMask: [samples.dataMask] |
| 33 | + }; |
| 34 | +} |
| 35 | + |
| 36 | +function isCloud(samples) { |
| 37 | + const NGDR = index(samples.B03, samples.B04); |
| 38 | + const bRatio = (samples.B03 - 0.175) / (0.39 - 0.175); |
| 39 | + return bRatio > 1 || (bRatio > 0 && NGDR > 0); |
| 40 | +} |
0 commit comments