EO-Tools is a pure python toolbox that is currently able to search, download and process Sentinel-1 InSAR pairs, download and mosaic Sentinel-2 tiles and download various publicly available DEM (Digital Elevation Models). The S1 processor can compute phase, amplitude and coherence in the SAR geometry and reproject them in a geographic coordinate system. Example notebooks demonstrating the different features are located in the notebooks-cf folder of the github repository.
Here are examples of EO-Tools outputs showing amplitude, coherence and inteferometric phase of a 2023 earthquake in Morocco:
and a comparison between Sentinel-1 amplitude, coherence, change map and Sentinel-2 RGB image over the city of Berlin in Germany:- Currently, the available features are:
- Sentinel-1
- Interferometric processing of Sentinel-1 pairs, including TOPS processing steps like azimuth deramping, DEM assisted coregistration, Range-Doppler terrain correction and Enhanced Spectral Diversity. Individual bursts can be processed as well as full products and cropped to any area of interest provided by the user.
- Amplitude geocoding of SLC Sentinel-1 images, with Beta or Sigma Nought calibration.
- Ability to apply processing in the SAR geometry and further project the results in a geographic coordinate systems using lookup-tables.
- Writing the result as a geocoded (terrain corrected) COG (Cloud Optimized GeoTIFF) file.
- Displaying these rasters on top of a folium map in a jupyter notebook.
- Sentinel-2
- Tile merging and geocoding
- Write any band to COG files
- Visualization of color composites (Natural RGB, CIR, SWIR, etc) on a folium map
- DEM
- Automatically downloads and crops a DEM given a geometry
- All products
- Search catalog (using EODAG) and download products
- Explore products by displaying their footprint on a folium map (custom function)
- Show remote and local images on top of folium maps in the notebook
- Sentinel-1
- Example notebooks can be found in the
notebooks/
folder
- The package comes in two flavors
- A conda package that contains the main functionality (Sentinel-1 InSAR, Sentinel-2 tile mosaic and DEM download)
- A docker version (for more advanced users) that additonally works with a TiTiler server for interactive visualization in the notebooks
- The legacy SNAP based processor is only available in the docker version.
- It is recommended to first create a conda environment to avoid package conflicts
- You need to have
conda
installed (ormamba
/micromamba
) - Then the package can be installed with these commands (replace
conda
bymamba
ormicromamba
if needed):
conda env create -n eo_tools
conda activate eo_tools
conda install conda-forge::eo-tools
- It works as a dev container for VSCode.
- Clone the github repository into the location of your choice.
- Volumes paths can (and should) be changed in
docker-compose.yml
. - After opening the main directory, VSCode should detect the devcontainer file and ask to build the container. Once the container is running, the example notebooks in the
notebooks
directory can be used.
- Alternatively, it should also be possible to start the container from the main directory with
docker-compose up -d
in a terminal and attach to the container with any editor supporting docker.
- Please make sure
jupyter
is installed in your environment - Example jupyter notebooks demonstrate the different features
- For conda use the notebooks in the
notebooks-cf
directory of the github repository - For docker use the notebooks in the
notebooks
directory of the github repository
- This project was originally forked from: https://github.com/eo2cube/s1_processor/, however since 99% of the code is now original, I have detached the fork.
- Visualization functions are using TiTiler https://developmentseed.org/titiler/
- Product discovery and download are using EODAG https://github.com/CS-SI/eodag
- The old S1 processor uses pyroSAR https://github.com/johntruckenbrodt/pyroSAR which executes graphs with ESA's SNAP software https://github.com/senbox-org