|
1 | 1 | //VERSION=3
|
| 2 | +// NDVI |
| 3 | + |
2 | 4 | function setup() {
|
3 | 5 | return {
|
4 |
| - input: ["red", "nir", "dataMask"], |
5 |
| - output: { bands: 4 } |
| 6 | + input: ["Red", "NIR", "dataMask"], |
| 7 | + output: [ |
| 8 | + { id: "default", bands: 4 }, |
| 9 | + ] |
6 | 10 | }
|
7 | 11 | }
|
8 |
| -var f = 10000 |
| 12 | + |
9 | 13 | function evaluatePixel(sample) {
|
10 |
| - var NDVI = index(sample.nir, sample.red) |
11 |
| - return valueInterpolate(NDVI, |
| 14 | + let NDVI = index(sample.NIR, sample.Red); |
| 15 | + let id_default = valueInterpolate(NDVI, |
12 | 16 | [0, 0.2, 0.3, 0.4, 0.5, 1.0],
|
13 | 17 | [
|
14 |
| - [1, 1, 0.88, sample.dataMask], |
15 |
| - [0.57, 0.75, 0.32, sample.dataMask], |
16 |
| - [0.44, 0.64, 0.25, sample.dataMask], |
17 |
| - [0.31, 0.54, 0.18, sample.dataMask], |
18 |
| - [0.19, 0.43, 0.11, sample.dataMask], |
19 |
| - [0.06, 0.33, 0.04, sample.dataMask], |
20 |
| - [0, 0.27, 0, sample.dataMask], |
21 |
| - ]) |
| 18 | + [1, 1, 0.88], |
| 19 | + [0.57, 0.75, 0.32], |
| 20 | + [0.44, 0.64, 0.25], |
| 21 | + [0.31, 0.54, 0.18], |
| 22 | + [0.19, 0.43, 0.11], |
| 23 | + [0.06, 0.33, 0.04], |
| 24 | + [0, 0.27, 0], |
| 25 | + ]); |
| 26 | + |
| 27 | + return { |
| 28 | + default: [...id_default, sample.dataMask], |
| 29 | + }; |
22 | 30 | }
|
0 commit comments