|
1 | 1 | ---
|
2 | 2 | title: Example product
|
3 | 3 | parent: Contribute
|
4 |
| - |
5 | 4 | layout: script
|
6 | 5 | nav_exclude: true
|
| 6 | +examples: |
| 7 | +- zoom: '10' |
| 8 | + lat: '42.76703' |
| 9 | + lng: '11.22847' |
| 10 | + datasetId: S2L2A |
| 11 | + fromTime: '2020-07-12T00:00:00.000Z' |
| 12 | + toTime: '2020-07-12T23:59:59.999Z' |
| 13 | + platform: |
| 14 | + - CDSE |
| 15 | + - EOB |
| 16 | + evalscripturl: https://custom-scripts.sentinel-hub.com/custom-scripts/contribute/example/script.js |
7 | 17 | ---
|
8 | 18 |
|
9 | 19 | The layout `script` automatically adds the title defined in the front matter and adds buttons to visualize the script. For the buttons to work the evalscript has to be named `script.js` and must be in the same directory as the `README.md` file.
|
10 | 20 |
|
11 |
| -## Evaluate and visualize |
| 21 | +## Adding examples |
| 22 | + |
| 23 | +This page shows how example links can be added by defining the parameters in the [front matter](https://jekyllrb.com/docs/front-matter/). |
| 24 | +An example is defined like this: |
| 25 | + |
| 26 | +```yaml |
| 27 | +examples: |
| 28 | +- zoom: '10' |
| 29 | + lat: '42.76703' |
| 30 | + lng: '11.22847' |
| 31 | + datasetId: S2L2A |
| 32 | + fromTime: '2020-07-12T00:00:00.000Z' |
| 33 | + toTime: '2020-07-12T23:59:59.999Z' |
| 34 | + platform: |
| 35 | + - CDSE |
| 36 | + - EOB |
| 37 | + evalscripturl: https://custom-scripts.sentinel-hub.com/custom-scripts/sentinel-2/ndvi/eob.js |
| 38 | +``` |
| 39 | +
|
| 40 | +From these parameters, example urls are built automatically in the [layout file](https://github.com/sentinel-hub/custom-scripts/blob/main/_layouts/script.html?plain=1). The parameter `platform` specifies for which visualization platform the example links should be built. Right now the only options are Copernicus Browser (CDSE) and EO Browser (EOB). |
| 41 | + |
| 42 | +If a script only works on one platform but not the other, only the platform the script works on should be specified (See for example [cloud statistics](https://github.com/sentinel-hub/custom-scripts/blob/main/sentinel-2/cloud_statistics/README.md)). If the page has separate versions for each platform, multiple examples can be specified in the list (See [markuse fire](https://github.com/sentinel-hub/custom-scripts/blob/main/sentinel-2/markuse_fire/README.md?plain=1)). |
| 43 | + |
| 44 | +The evalscript can be given as an `evalscripturl` like done here. This is the preferred option since it keeps maintenance of example links to a minimum since nothing needs to be updated if the evalscript is changed at a later point. |
| 45 | + |
| 46 | +Alternatively the evalscript can be passed into the parameter `evalscript`. Here the evalscript needs to be Base64 encoded. See the [Forest Hurricane Script](https://github.com/sentinel-hub/custom-scripts/blob/main/sentinel-1/forest_hurricane/README.md?plain=1) as an example. |
| 47 | + |
| 48 | +When multiple different evalscripts are added, they can also be named by passing the parameter `name` to each entry of the example list. |
| 49 | + |
| 50 | +It is also possible to pass more url query parameters to the built example link by specifying `additionalQueryParams`. See the [NDVI Time Series](https://github.com/sentinel-hub/custom-scripts/blob/main/sentinel-2/ndvi_time_series/README.md?plain=1) script as an example. |
12 | 51 |
|
13 |
| -- [EO Browser](https://apps.sentinel-hub.com/eo-browser/#lat=41.9&lng=12.5&zoom=10&datasource=Sentinel-2%20L1C&time=2017-10-08&preset=CUSTOM&layers=B01,B02,B03&evalscripturl=https://raw.githubusercontent.com/sentinel-hub/customScripts/master/example/script.js){:target="\_blank"} |
14 | 52 |
|
15 | 53 | ## General description of the script
|
16 | 54 |
|
|
0 commit comments