Skip to content

Commit 1350003

Browse files
authored
Merge pull request #310 from sentinel-hub/add/eob-stat-output-to-scripts
add eob script to S3 OLCI OTCI
2 parents 815604d + 34f3f3d commit 1350003

File tree

2 files changed

+46
-1
lines changed

2 files changed

+46
-1
lines changed

sentinel-3/otci/README.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ grand_parent: Sentinel
55
layout: script
66
permalink: /sentinel-3/otci/
77
nav_exclude: true
8+
scripts:
9+
- - Visualization
10+
- script.js
11+
- - EO Browser
12+
- eob.js
813
examples:
914
- zoom: '7'
1015
lat: '44.868'
@@ -15,7 +20,7 @@ examples:
1520
- CDSE
1621
- EOB
1722
datasetId: S3OLCI
18-
evalscripturl: https://custom-scripts.sentinel-hub.com/custom-scripts/sentinel-3/otci/script.js
23+
evalscripturl: https://custom-scripts.sentinel-hub.com/custom-scripts/sentinel-3/otci/eob.js
1924
---
2025

2126
## Description

sentinel-3/otci/eob.js

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
//VERSION=3
2+
const map = [
3+
[0.0, 0x00007d],
4+
[1.0, 0x004ccc],
5+
[1.8, 0xff3333],
6+
[2.5, 0xffe500],
7+
[4.0, 0x00cc19],
8+
[4.5, 0x00cc19],
9+
[5.0, 0xffffff],
10+
];
11+
12+
const visualizer = new ColorRampVisualizer(map);
13+
function setup() {
14+
return {
15+
input: ["B10", "B11", "B12", "dataMask"],
16+
output: [
17+
{ id: "default", bands: 4 },
18+
{ id: "index", bands: 1, sampleType: "FLOAT32" },
19+
{ id: "eobrowserStats", bands: 1 },
20+
{ id: "dataMask", bands: 1 },
21+
],
22+
};
23+
}
24+
25+
function evaluatePixel(samples) {
26+
let OTCI = (samples.B12 - samples.B11) / (samples.B11 - samples.B10);
27+
let imgVals = null;
28+
// The library for tiffs works well only if there is only one channel returned.
29+
// So we encode the "no data" as NaN here and ignore NaNs on frontend.
30+
// we restrict the interval to [-10, 10] as it covers most of the value range
31+
const indexVal =
32+
samples.dataMask === 1 && OTCI >= -10 && OTCI <= 10 ? OTCI : NaN;
33+
imgVals = [...visualizer.process(OTCI), samples.dataMask];
34+
return {
35+
default: imgVals,
36+
index: [indexVal],
37+
eobrowserStats: [indexVal],
38+
dataMask: [samples.dataMask],
39+
};
40+
}

0 commit comments

Comments
 (0)