Skip to content

Commit c68d03e

Browse files
authored
Update SkySat scripts (#309)
* PlanetScope NDVI: update script.js * PlanetScope NDVI: add eob.js * PlanetScope NDVI: add raw.js * PlanetScope NDVI: add scripts to readme.md * improve eob script for skysat * improve raw script for skysat * improve default script for skysat
1 parent 524f538 commit c68d03e

File tree

4 files changed

+82
-13
lines changed

4 files changed

+82
-13
lines changed

skysat/ndvi/README.md

+7
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ grand_parent: Planet
55
layout: script
66
permalink: /skysat/ndvi/
77
nav_exclude: true
8+
scripts:
9+
- - Visualization
10+
- script.js
11+
- - EO Browser
12+
- eob.js
13+
- - Raw Values
14+
- raw.js
815
---
916

1017

skysat/ndvi/eob.js

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
//VERSION=3
2+
// NDVI
3+
4+
function setup() {
5+
return {
6+
input: ["Red", "NIR", "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(sample) {
17+
let NDVI = index(sample.NIR, sample.Red);
18+
const indexVal = isFinite(NDVI) && sample.dataMask === 1 ? NDVI : NaN;
19+
let id_default = valueInterpolate(NDVI,
20+
[0, 0.2, 0.3, 0.4, 0.5, 1.0],
21+
[
22+
[1, 1, 0.88],
23+
[0.57, 0.75, 0.32],
24+
[0.44, 0.64, 0.25],
25+
[0.31, 0.54, 0.18],
26+
[0.19, 0.43, 0.11],
27+
[0.06, 0.33, 0.04],
28+
[0, 0.27, 0],
29+
]
30+
);
31+
32+
return {
33+
default: [...id_default, sample.dataMask],
34+
index: [indexVal],
35+
eobrowserStats: [indexVal, sample.dataMask],
36+
dataMask: [sample.dataMask],
37+
};
38+
}

skysat/ndvi/raw.js

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
//VERSION=3
2+
// NDVI
3+
4+
function setup() {
5+
return {
6+
input: ["Red", "NIR"],
7+
output: [
8+
{ id: "default", bands: 1 },
9+
]
10+
}
11+
}
12+
13+
function evaluatePixel(sample) {
14+
let NDVI = index(sample.NIR, sample.Red);
15+
return { default: [NDVI] };
16+
}

skysat/ndvi/script.js

+21-13
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,30 @@
11
//VERSION=3
2+
// NDVI
3+
24
function setup() {
35
return {
4-
input: ["red", "nir", "dataMask"],
5-
output: { bands: 4 }
6+
input: ["Red", "NIR", "dataMask"],
7+
output: [
8+
{ id: "default", bands: 4 },
9+
]
610
}
711
}
8-
var f = 10000
12+
913
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,
1216
[0, 0.2, 0.3, 0.4, 0.5, 1.0],
1317
[
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+
};
2230
}

0 commit comments

Comments
 (0)