From 4cc2587c0745284003f0ce20a77213bf18948588 Mon Sep 17 00:00:00 2001 From: heyarne Date: Wed, 18 Nov 2020 16:55:22 +0000 Subject: [PATCH] Add more information to the README.md --- README.md | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e3d387c..ffd2cd7 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,17 @@ -# Remote Sensing in a Journalistic Contexto +# Earth Observation Data in a Journalistic Context +This repository contains a series of notebooks describing interaction with the Copernicus Open Acces Hub in order to obtain and manipulate earth observation data. A (free) Scihub account is needed in order to execute them, the registration form can be found at https://scihub.copernicus.eu/dhus/. + +The Docker image can be built using the following command: + +``` bash +docker build . -t eratosthenes:latest ``` -$ docker build . -t eratosthenes:latest + +The resulting notebook is based on the [jupyter/scipy-notebook](https://github.com/jupyter/docker-stacks/tree/master/scipy-notebook). Follow the link for more information on installed packages or other configuration details. + +You need to define your Scihub user credentials as environment variables in order to be able to execute the notebooks: + +``` bash +docker run -it -e SCIHUB_USERNAME='' -e SCIHUB_PASSWORD='' eratosthenes:latest ```