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
@@ -25,7 +26,7 @@ to use any of the available tasks and is encouraged to improve the, develop new
25
26
26
27
**`eo-learn`** makes extraction of valuable information from satellite imagery as easy as defining a sequence of operations to be performed on satellite imagery. Image below illustrates a processing chain that maps water in satellite imagery by thresholding the Normalised Difference Water Index in user specified region of interest.
**`eo-learn`**_library acts as a bridge between Earth observation/Remote sensing field and Python ecosystem for data science and machine learning._ The library is written in Python and uses NumPy arrays to store and handle remote sensing data. Its aim is to make entry easier for non-experts to the field of remote sensing on one hand and bring the state-of-the-art tools for computer vision, machine learning, and deep learning existing in Python ecosystem to remote sensing experts.
A docker image with the latest released version of `eo-learn` is available at [Docker Hub](https://hub.docker.com/r/sentinelhub/eolearn). It provides a full installation of `eo-learn` together with a Jupyter notebook environment. You can pull and run it with:
117
+
118
+
```bash
119
+
docker pull sentinelhub/eolearn:latest
120
+
docker run -p 8888:8888 sentinelhub/eolearn:latest
121
+
```
122
+
123
+
An extended version of the `latest` image additionally contains all example notebooks and data to get you started with `eo-learn`. Run it with:
124
+
125
+
```bash
126
+
docker pull sentinelhub/eolearn:latest-examples
127
+
docker run -p 8888:8888 sentinelhub/eolearn:latest-examples
128
+
```
129
+
130
+
Both docker images can also be built manually from GitHub repository:
0 commit comments