Skip to content

Commit 38e88b0

Browse files
Added multiple scripts to ndsi page
1 parent cc70148 commit 38e88b0

File tree

12 files changed

+108
-85
lines changed

12 files changed

+108
-85
lines changed

sentinel-2/ndsi-visualized/README.md

-27
This file was deleted.

sentinel-2/ndsi-visualized/script.js

-32
This file was deleted.

sentinel-2/ndsi/README.md

+14-4
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,30 @@ grand_parent: Sentinel
55
layout: script
66
permalink: /sentinel-2/ndsi/
77
nav_exclude: true
8+
scripts:
9+
- [Visualization, script.js]
10+
- [EO Browser, eob.js]
11+
- [Raw Values, raw.js]
812
---
913

14+
# TODO ADD CDSE LINK!
1015

1116
## Evaluate and visualize
12-
- [Sentinel Playground](https://apps.sentinel-hub.com/sentinel-playground/?source=S2&lat=40.39519549132737&lng=-3.739471435546875&zoom=11&preset=CUSTOM&layers=B01,B02,B03&maxcc=20&gain=1.0&gamma=1.0&time=2020-01-01%7C2020-07-13&atmFilter=&showDates=false&evalscript=Ly9WRVJTSU9OPTMgKGF1dG8tY29udmVydGVkIGZyb20gMSkKCi8vIE5vcm1hbGlzZWQgRGlmZmVyZW5jZSBTbm93IEluZGV4Ci8vIFNvdXJjZTogaHR0cHM6Ly9lYXJ0aC5lc2EuaW50L3dlYi9zZW50aW5lbC90ZWNobmljYWwtZ3VpZGVzL3NlbnRpbmVsLTItbXNpL2xldmVsLTJhL2FsZ29yaXRobQovLyB2YWx1ZXMgYWJvdmUgMC40MiBhcmUgdXN1YWxseSBzbm93CgpsZXQgdml6ID0gbmV3IElkZW50aXR5KCk7CgpmdW5jdGlvbiBldmFsdWF0ZVBpeGVsKHNhbXBsZXMpIHsKICAgIGxldCB2YWwgPSBpbmRleChzYW1wbGVzLkIwMywgc2FtcGxlcy5CMTEpOwogICAgcmV0dXJuIHZpei5wcm9jZXNzKHZhbCk7Cn0KCmZ1bmN0aW9uIHNldHVwKCkgewogIHJldHVybiB7CiAgICBpbnB1dDogW3sKICAgICAgYmFuZHM6IFsKICAgICAgICAgICJCMDMiLAogICAgICAgICAgIkIxMSIKICAgICAgXQogICAgfV0sCiAgICBvdXRwdXQ6IHsgYmFuZHM6IDEgfSAgfQp9Cg%3D%3D&evalscripturl=https://raw.githubusercontent.com/sentinel-hub/customScripts/master/sentinel-2/ndvi_uncertainty/script.js){:target="_blank"}
13-
- [EO Browser](https://apps.sentinel-hub.com/eo-browser/?lat=46.4833&lng=14.2094&zoom=10&time=2019-10-23&preset=CUSTOM&datasource=Sentinel-2%20L1C&layers=B01,B02,B03&evalscript=Ly9WRVJTSU9OPTMgKGF1dG8tY29udmVydGVkIGZyb20gMSkKCi8vIE5vcm1hbGlzZWQgRGlmZmVyZW5jZSBTbm93IEluZGV4Ci8vIFNvdXJjZTogaHR0cHM6Ly9lYXJ0aC5lc2EuaW50L3dlYi9zZW50aW5lbC90ZWNobmljYWwtZ3VpZGVzL3NlbnRpbmVsLTItbXNpL2xldmVsLTJhL2FsZ29yaXRobQovLyB2YWx1ZXMgYWJvdmUgMC40MiBhcmUgdXN1YWxseSBzbm93CgpsZXQgdml6ID0gbmV3IElkZW50aXR5KCk7CgpmdW5jdGlvbiBldmFsdWF0ZVBpeGVsKHNhbXBsZXMpIHsKICAgIGxldCB2YWwgPSBpbmRleChzYW1wbGVzLkIwMywgc2FtcGxlcy5CMTEpOwogICAgcmV0dXJuIHZpei5wcm9jZXNzKHZhbCk7Cn0KCmZ1bmN0aW9uIHNldHVwKCkgewogIHJldHVybiB7CiAgICBpbnB1dDogW3sKICAgICAgYmFuZHM6IFsKICAgICAgICAgICJCMDMiLAogICAgICAgICAgIkIxMSIKICAgICAgXQogICAgfV0sCiAgICBvdXRwdXQ6IHsgYmFuZHM6IDEgfSAgfQp9Cg%3D%3D){:target="_blank"}
17+
- [EO Browser](https://sentinelshare.page.link/twxy){:target="_blank"}
1418

1519

1620
## General description of the script
1721

1822
The Sentinel-2 normalized difference snow index is a ratio of two bands: one in the VIR (Band 3) and one in the SWIR (Band 11). Values above 0.42 are usually snow. More info [here.](https://sentinels.copernicus.eu/web/sentinel/technical-guides/sentinel-2-msi/level-2a/algorithm-overview){:target="_blank"}
1923

24+
The Sentinel-2 normalised difference snow index can be used to differentiate between cloud and snow cover as snow absorbs in the short-wave infrared light, but reflects the visible light, whereas cloud is generally reflective in both wavelengths. In the visualization script snow cover is represented in bright vivid blue.
25+
2026
## Description of representative images
2127

22-
The NDSI script applied to Klagenfurt, Austria.
28+
Visualized NDSI over New Zealand, acquired on 2019-09-19.
29+
30+
![NDSI Visualized](fig/vis.png)
31+
32+
The NDSI script applied to Klagenfurt, Austria returning raw values.
2333

24-
![NDSI](fig/fig1.png)
34+
![NDSI Raw](fig/raw.png)

sentinel-2/ndsi/eob.js

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
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+
}
File renamed without changes.
File renamed without changes.

sentinel-2/ndsi/raw.js

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
//VERSION=3 (auto-converted from 1)
2+
3+
// Normalised Difference Snow Index
4+
// Source: https://earth.esa.int/web/sentinel/technical-guides/sentinel-2-msi/level-2a/algorithm
5+
// values above 0.42 are usually snow
6+
7+
function setup() {
8+
return {
9+
input: ["B03", "B11"],
10+
output: { bands: 1, sampleType: "FLOAT32" }
11+
}
12+
}
13+
14+
function evaluatePixel(samples) {
15+
return [index(samples.B03, samples.B11)]
16+
}

sentinel-2/ndsi/script.js

+15-19
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,20 @@
1-
//VERSION=3 (auto-converted from 1)
1+
//VERSION=3
2+
//Reference: https://earth.esa.int/web/sentinel/technical-guides/sentinel-2-msi/level-2a/algorithm
23

3-
// Normalised Difference Snow Index
4-
// Source: https://earth.esa.int/web/sentinel/technical-guides/sentinel-2-msi/level-2a/algorithm
5-
// values above 0.42 are usually snow
6-
7-
let viz = new Identity();
4+
function setup() {
5+
return {
6+
input: ["B03", "B11", "B04", "B02", "dataMask"],
7+
output: { bands: 4 }
8+
};
9+
}
810

911
function evaluatePixel(samples) {
10-
let val = index(samples.B03, samples.B11);
11-
return viz.process(val);
12-
}
12+
let val = index(samples.B03, samples.B11);
1313

14-
function setup() {
15-
return {
16-
input: [{
17-
bands: [
18-
"B03",
19-
"B11"
20-
]
21-
}],
22-
output: { bands: 1 }
23-
}
14+
if (val > 0.42)
15+
imgVals = [0, 0.8, 1, samples.dataMask];
16+
else
17+
imgVals = [2.5 * samples.B04, 2.5 * samples.B03, 2.5 * samples.B02, samples.dataMask];
18+
19+
return imgVals
2420
}

sentinel-2/ndsi/vis.js

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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: { bands: 4 }
8+
};
9+
}
10+
11+
function evaluatePixel(samples) {
12+
let val = index(samples.B03, samples.B11);
13+
14+
if (val > 0.42)
15+
imgVals = [0, 0.8, 1, samples.dataMask];
16+
else
17+
imgVals = [2.5 * samples.B04, 2.5 * samples.B03, 2.5 * samples.B02, samples.dataMask];
18+
19+
return imgVals
20+
}

sentinel-2/ndvi/raw.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ function setup() {
1111
}
1212

1313
function evaluatePixel(samples) {
14-
return index(samples.B08, samples.B04)
14+
return [index(samples.B08, samples.B04)]
1515
}

sentinel-2/ndwi/raw.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ function setup() {
1313
}
1414

1515
function evaluatePixel(samples) {
16-
return index(samples.B03, samples.B08);
16+
return [index(samples.B03, samples.B08)]
1717
}

sentinel-2/sentinel-2.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Dedicated to supplying data for [Copernicus services](https://www.esa.int/Our_Ac
8585
- [Snow classifier](/sentinel-2/snow_classifier/)
8686
- [Monthly snow report](/sentinel-2/monthly_snow_report)
8787
- [Snow cover change detection](/sentinel-2/snow_cover_change)
88-
- [NDSI Visualized](/sentinel-2/ndsi-visualized) - Visualized normalized difference snow index
88+
- [NDSI Visualized](/sentinel-2/ndsi) - Visualized normalized difference snow index
8989

9090
#### Disaster management and prevention algorithms
9191
- [Detecting deep moist convection](/sentinel-2/deep_moist_convection)

0 commit comments

Comments
 (0)