Skip to content

Commit e34dbd9

Browse files
authored
Merge pull request #896 from zoranmesec/895-rename-eobrowserStats-to-browserStats
Rename eobrowserStats to browserStats
2 parents 89c0ba9 + d93c642 commit e34dbd9

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

FAQ.qmd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1075,7 +1075,7 @@ ffmpeg -i GIF1vid.mp4 -i GIF2vid.mp4 -i GIF3vid.mp4 -i GIF4vid.mp4 -i GIF5vid.mp
10751075

10761076
* `default`: Mandatory. A visualization output that defines what will be displayed on the map. The visualization can return anything you like, a single value grayscale, an RGB visualization, etc.
10771077
* `index`: Optional. Returning the raw values of your index, enabling the histogram functionality. Use FLOAT32 format to include decimals and negative values.
1078-
* `eobrowserStats`: Mandatory. An output containing both the index values and cloud information, used for line chart generation. Cloud information will allow us to filter the tiles by maximum cloud coverage. Use FLOAT32 format to include decimals and negative values.
1078+
* `browserStats`: Mandatory. An output containing both the index values and cloud information, used for line chart generation. Cloud information will allow us to filter the tiles by maximum cloud coverage. Use FLOAT32 format to include decimals and negative values.
10791079
* `dataMask`: Mandatory. A dataMask output to take no-data values into account.
10801080

10811081
Here is an example evalscript for NDVI:
@@ -1089,7 +1089,7 @@ function setup() {
10891089
output: [
10901090
{ id: "default", bands: 4 },
10911091
{ id: "index", bands: 1, sampleType: 'FLOAT32' },
1092-
{ id: "eobrowserStats", bands: 2, sampleType: 'FLOAT32' },
1092+
{ id: "browserStats", bands: 2, sampleType: 'FLOAT32' },
10931093
{ id: "dataMask", bands: 1 }
10941094
]
10951095
};
@@ -1133,7 +1133,7 @@ function evaluatePixel(samples) {
11331133
return {
11341134
default: imgVals,
11351135
index: [indexVal],
1136-
eobrowserStats: [indexVal,cloud?1:0],
1136+
browserStats: [indexVal,cloud?1:0],
11371137
dataMask: [samples.dataMask]
11381138
};
11391139
}

0 commit comments

Comments
 (0)