forked from sentinel-hub/custom-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
50 lines (40 loc) · 1.08 KB
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// Sentinel-3 OLCI - Vegetation monitoring
//by TIZNEGAR startup co
//www.tiznegar.com
//Vegetation monitoring index for OLCI Sentinel 3 OLCI(VMI3)
var VMI3 = (B17 - B08) / (B17 + B08);
//Cloud mask
var NGDR = index(B04, B06);
var CM = (B04 - 0.2) / (0.5 - 0.2);
if (CM > 0.8) {
return [10 * B03, 10 * B02, 10 * B01 ];
}
if (CM > 0 && NGDR>.15) {
return [10 * B03 , 10 * B02, 10 * B01];
}
//You can see only the changes in the vegetation you want by changing the interval below
if (VMI3 > [ -1 ] && VMI3< [ 1 ]) {
return colorBlend
(VMI3,
[ -.8, -.1, -.02, 0, 0.01, .06, .1, .2, .3, .4, .5, .6, .7, .8, .9],
[
[0, .2, .5],
[0, .6, .8],
[.8, .8, .8],
[.9, .9, .9],
[1, 1, 1],
[.5,.3,.2],
[.63,.32,.18],
[1,.45,.05],
[.9, 1, 0],
[0, .8,0],
[0, .5, 0],
[0, .4, 0],
[0, .3, 0],
[0, .2, 0],
[0, .1, 0],
]);
}
else {
return [2.5*B08,2.5*B06,2.5*B04]
}