Skip to content

Examples

This section provides practical examples of using openEO by TiTiler for various Earth Observation tasks.

Web Editor Examples

The openEO Web Editor provides a graphical interface for interacting with the API. To get started:

  1. Start the services:
docker compose up
  1. Access the editor at localhost:8080 and set the backend URL to localhost:8081

  2. Authenticate using the instructions in the Admin Guide

Jupyter Notebook Examples

We provide several Jupyter notebooks demonstrating different use cases:

Manhattan Satellite Imagery

Learn how to:

  • Connect to the openEO backend
  • Load and process Sentinel-2 imagery
  • Create true-color RGB visualizations
  • Apply color enhancements for better visualization

NDVI Time Series Analysis

Explore how to:

  • Calculate vegetation indices (NDVI)
  • Extract time series data for specific areas
  • Analyze temporal patterns in vegetation
  • Visualize results using matplotlib

Running the Notebooks

To run the notebooks locally:

  1. Install the development dependencies:
python -m pip install -e ".[dev]"
  1. Start Jupyter:
jupyter notebook docs/notebooks
  1. Open the desired notebook and follow the instructions