You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert

4
+
5
+
This repository contains a collection of custom scripts for [Sentinel Hub](https://www.sentinel-hub.com/), which can be fed to the services via the URL.
6
+
7
+
Custom scripts are a piece of Javascript code, used to visualize satellite imagery and to control what values the Sentinel Hub services will return. Any visualization of any constellation (e.g. Sentinel-2 satellite), even a simple true color composite, is dictated by a custom script.
8
+
9
+
See [here](https://docs.sentinel-hub.com/api/latest/evalscript/v3/) for more information on how to write your own evalscript.
10
+
11
+
## Contribute to Custom Scripts
12
+
13
+
Have a look at the [template](/contribute/example) for an example of how a script page can be structured.
14
+
15
+
You can also have a look at other scripts to see how they are structured.
16
+
17
+
For instructions on how custom scripts are structured have a look at this [tutorial](https://www.sentinel-hub.com/explore/education/custom-scripts-tutorial/), or at the [official documenation](https://docs.sentinel-hub.com/api/latest/evalscript/).
18
+
19
+
---
20
+
21
+
### How to publish your own product
22
+
23
+
- Fork the repository to get your own copy of the custom-scripts
24
+
_It is easiest to fork the repository on GitHub, but as some of you might not have GitHub account, or don't want to bother with all this versioning and collaboration tools, you can also just download the whole repository as Zip file and work from there._
25
+
- Create a new directory entry for your custom script
26
+
_Copy the `example` directory to proper directory, based on which datasource (satellite) you are publishing the product for, to something that describes what the product is about, say `my_algorithm`._
27
+
_Preferably use ["snake_case"](https://simple.wikipedia.org/wiki/Snake_case) (underscores instead of spaces) if more than one word is used._
28
+
- Fill in the details about the project in the `README.md` file.
29
+
_Obviously, you'll want to remove this chapter, but use the rest of the file as a template._
30
+
_Have a look around at other `README.md` files to see how to include images, format the text and generally use the GitHub [markdown](https://help.github.com/categories/writing-on-github/) (e.g. [here](../sentinel-2/cby_cloud_detection/README.md) for mathematical formulas or [here](../sentinel-2/ndvi_uncertainty/README.md) for adding images)._
31
+
- Implement the product in the `script.js` file.
32
+
_The most work is of course the JavaScript implementation of the product. The `example` folder includes an empty custom script with comments that will hopefully help you build your own custom script. Of course the easiest is to do the custom script building/testing on [Sentinel Playground](https://apps.sentinel-hub.com/sentinel-playground/)._
33
+
- Add an entry pointing to your script to the top level markdown file (i.e. if adding a script for Sentinel 2 add the link to `sentinel-2.md` in the folder `sentinel-2`).
34
+
_A link and a short description will do._
35
+
- And create a pull request :).
36
+
_There is extensive help on creating pull requests on GitHub [help](https://help.github.com/categories/collaborating-with-issues-and-pull-requests/), but if you feel overwhelmed by this step and would still like to contribute, send us the folder you've created and we will take care of it for you._
37
+
38
+
Publishing your product should be easy, nevertheless, any feedback and ideas how to improve or make the process simpler is very appreciated.
39
+
40
+
#### Test your changes locally
41
+
42
+
This is optional but makes Pull Requests quicker to handle since they should have less mistakes.
43
+
Before you create the PR you can check if everything looks right on the website. To do this follow these steps which are based on [Testing your GitHub Pages site locally with Jekyll](https://docs.github.com/en/pages/setting-up-a-github-pages-site-with-jekyll/testing-your-github-pages-site-locally-with-jekyll) page:
44
+
45
+
##### Linux
46
+
47
+
- In the root directory of your fork open a terminal
48
+
- Install ruby
49
+
- Ubuntu: `sudo apt install ruby ruby-dev`
50
+
- Install bundler
51
+
-`gem install bundler`
52
+
- On Ubuntu you might have to add `sudo`
53
+
- Create a Gemfile
54
+
- In the root folder of the repository (where the `_config.yml` file is) create a new file `Gemfile`.
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.
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.
Copy file name to clipboardexpand all lines: contribute/index.md
+26-22
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,6 @@ layout: default
3
3
title: Contribute
4
4
nav_order: 99
5
5
has_children: false
6
-
permalink: /contribute/
7
6
---
8
7
9
8
# Contribute to Custom Scripts
@@ -18,25 +17,20 @@ For instructions on how custom scripts are structured have a look at this [tutor
18
17
19
18
## How to publish your own product
20
19
21
-
* Fork the repository to get your own copy of the custom-scripts
20
+
- Fork the repository to get your own copy of the custom-scripts
22
21
_It is easiest to fork the repository on GitHub, but as some of you might not have GitHub account, or don't want to bother with all this versioning and collaboration tools, you can also just download the whole repository as Zip file and work from there._
23
-
24
-
* Create a new directory entry for your custom script
25
-
*Copy the `example` directory to proper directory, based on which datasource (satellite) you are publishing the product for, to something that describes what the product is about, say `my_algorithm`.*
26
-
*Preferably use ["snake_case"](https://simple.wikipedia.org/wiki/Snake_case) (underscores instead of spaces) if more than one word is used.*
27
-
28
-
* Fill in the details about the project in the `README.md` file.
29
-
*Obviously, you'll want to remove this chapter, but use the rest of the file as a template.*
30
-
*Have a look around at other `README.md` files to see how to include images, format the text and generally use the GitHub [markdown](https://help.github.com/categories/writing-on-github/) (e.g. [here](../sentinel-2/cby_cloud_detection/README.md) for mathematical formulas or [here](../sentinel-2/ndvi_uncertainty/README.md) for adding images).*
31
-
32
-
* Implement the product in the `script.js` file.
33
-
*The most work is of course the JavaScript implementation of the product. The `example` folder includes an empty custom script with comments that will hopefully help you build your own custom script. Of course the easiest is to do the custom script building/testing on [Sentinel Playground](https://apps.sentinel-hub.com/sentinel-playground/).*
34
-
35
-
* Add an entry pointing to your script to the top level markdown file (i.e. if adding a script for Sentinel 2 add the link to `sentinel-2.md` in the folder `sentinel-2`).
36
-
*A link and a short description will do.*
37
-
38
-
* And create a pull request :).
39
-
*There is extensive help on creating pull requests on GitHub [help](https://help.github.com/categories/collaborating-with-issues-and-pull-requests/), but if you feel overwhelmed by this step and would still like to contribute, send us the folder you've created and we will take care of it for you.*
22
+
- Create a new directory entry for your custom script
23
+
_Copy the `example` directory to proper directory, based on which datasource (satellite) you are publishing the product for, to something that describes what the product is about, say `my_algorithm`._
24
+
_Preferably use ["snake_case"](https://simple.wikipedia.org/wiki/Snake_case) (underscores instead of spaces) if more than one word is used._
25
+
- Fill in the details about the project in the `README.md` file.
26
+
_Obviously, you'll want to remove this chapter, but use the rest of the file as a template._
27
+
_Have a look around at other `README.md` files to see how to include images, format the text and generally use the GitHub [markdown](https://help.github.com/categories/writing-on-github/) (e.g. [here](../sentinel-2/cby_cloud_detection/README.md) for mathematical formulas or [here](../sentinel-2/ndvi_uncertainty/README.md) for adding images)._
28
+
- Implement the product in the `script.js` file.
29
+
_The most work is of course the JavaScript implementation of the product. The `example` folder includes an empty custom script with comments that will hopefully help you build your own custom script. Of course the easiest is to do the custom script building/testing on [Sentinel Playground](https://apps.sentinel-hub.com/sentinel-playground/)._
30
+
- Add an entry pointing to your script to the top level markdown file (i.e. if adding a script for Sentinel 2 add the link to `sentinel-2.md` in the folder `sentinel-2`).
31
+
_A link and a short description will do._
32
+
- And create a pull request :).
33
+
_There is extensive help on creating pull requests on GitHub [help](https://help.github.com/categories/collaborating-with-issues-and-pull-requests/), but if you feel overwhelmed by this step and would still like to contribute, send us the folder you've created and we will take care of it for you._
40
34
41
35
Publishing your product should be easy, nevertheless, any feedback and ideas how to improve or make the process simpler is very appreciated.
42
36
@@ -46,6 +40,7 @@ This is optional but makes Pull Requests quicker to handle since they should hav
46
40
Before you create the PR you can check if everything looks right on the website. To do this follow these steps which are based on [Testing your GitHub Pages site locally with Jekyll](https://docs.github.com/en/pages/setting-up-a-github-pages-site-with-jekyll/testing-your-github-pages-site-locally-with-jekyll) page:
47
41
48
42
#### Linux
43
+
49
44
- In the root directory of your fork open a terminal
50
45
- Install ruby
51
46
- Ubuntu: `sudo apt install ruby ruby-dev`
@@ -54,7 +49,7 @@ Before you create the PR you can check if everything looks right on the website.
54
49
- On Ubuntu you might have to add `sudo`
55
50
- Create a Gemfile
56
51
- In the root folder of the repository (where the `_config.yml` file is) create a new file `Gemfile`.
0 commit comments