OpenET

Provides Google Earth Engine Python API based implementation of the SSEBop ET model used within OpenET.
https://github.com/Open-ET/openet-ssebop

Category: Natural Resources
Sub Category: Water Supply and Quality

Last synced: 1 day ago
JSON representation

Repository metadata

Earth Engine SSEBop ET Model

README.rst

          ===============
OpenET - SSEBop
===============

|version| |build|

**WARNING: This code is in development, is being provided without support, and is subject to change at any time without notification**

This repository provides `Google Earth Engine `__ Python API based implementation of the SSEBop ET model.

The Operational Simplified Surface Energy Balance (SSEBop) model computes daily total actual evapotranspiration (ETa) using land surface temperature (Ts), maximum air temperature (Ta) and reference ET (ETr or ETo).
The SSEBop model does not solve all the energy balance terms explicitly; rather, it defines the limiting conditions based on "gray-sky" net radiation balance principles and an air temperature parameter.
This approach predefines unique sets of "hot/dry" and "cold/wet" limiting values for each pixel, allowing an operational model setup and a relatively shorter compute time. More information on the GEE implementation of SSEBop is published in Senay2022_ and Senay2023_ with additional details and model assessment.

*Basic SSEBop model implementation in Earth Engine:*

.. image:: docs/SSEBop_GEE_diagram.jpg

Model Design
============

The primary component of the SSEBop model is the Image() class.  The Image class can be used to compute a single fraction of reference ET (ETf) image from a single input image.  The Image class should generally be instantiated from an Earth Engine Landsat image using the collection specific methods listed below.  ET image collections can be built by computing ET in a function that is mapped over a collection of input images.  Please see the `Example Notebooks`_ for more details.

Input Collections
=================

SSEBop ET can currently be computed for Landsat Collection 2 Level 2 (SR/ST) images from the following Earth Engine image collections:

 * LANDSAT/LC09/C02/T1_L2
 * LANDSAT/LC08/C02/T1_L2
 * LANDSAT/LE07/C02/T1_L2
 * LANDSAT/LT05/C02/T1_L2

**Note:** Users are encouraged to prioritize use of Collection 2 data where available. Collection 1 was produced by USGS until 2022-01-01, and maintained by Earth Engine until 2023-01-01. [`More Information `__]

Landsat Collection 2 SR/ST Input Image
--------------------------------------

To instantiate the class for a Landsat Collection 2 SR/ST image, use the Image.from_landsat_c2_sr method.

The input Landsat image must have the following bands and properties:

=================  ======================================
SPACECRAFT_ID      Band Names
=================  ======================================
LANDSAT_5          SR_B1, SR_B2, SR_B3, SR_B4, SR_B5, SR_B7, ST_B6, QA_PIXEL
LANDSAT_7          SR_B1, SR_B2, SR_B3, SR_B4, SR_B5, SR_B7, ST_B6, QA_PIXEL
LANDSAT_8          SR_B1, SR_B2, SR_B3, SR_B4, SR_B5, SR_B6, SR_B7, ST_B10, QA_PIXEL
LANDSAT_9          SR_B1, SR_B2, SR_B3, SR_B4, SR_B5, SR_B6, SR_B7, ST_B10, QA_PIXEL
=================  ======================================

Model Output
------------

The primary output of the SSEBop model is the fraction of reference ET (ETf).  The actual ET (ETa) can then be computed by multiplying the Landsat-based ETf image with the reference ET (e.g. ETr from GRIDMET).

*Example SSEBop ETa from Landsat:*

.. image:: docs/ET_example.PNG

Example
-------

.. code-block:: python

    import openet.ssebop as ssebop

    landsat_img = ee.Image('LANDSAT/LC08/C02/T1_L2/LC08_044033_20170716')
    et_fraction = ssebop.Image.from_landsat_c2_sr(landsat_img).et_fraction
    et_reference = ee.Image('IDAHO_EPSCOR/GRIDMET/20170716').select('etr')
    et_actual = et_fraction.multiply(et_reference)

Example Notebooks
=================

Detailed Jupyter Notebooks of the various approaches for calling the OpenET SSEBop model are provided in the "examples" folder.

+ `Computing daily ET for a single Landsat image `__
+ `Computing a daily ET image collection from Landsat image collection `__
+ `Computing monthly ET from a collection `__

Ancillary Datasets
==================

Land Surface Temperature (LST)
------------------------------
Land Surface Temperature is currently calculated in the SSEBop approach two ways:

* Landsat Collection 2 Level-2 (ST band) images directly. More information can be found at: `USGS Landsat Collection 2 Level-2 Science Products `__

Temperature Difference (dT)
---------------------------
The SSEBop ET model uses dT as a predefined temperature difference between Thot and Tcold for each pixel.
In SSEBop formulation, hot and cold limits are defined on the same pixel; therefore, dT actually represents the vertical temperature difference between the surface temperature of a theoretical bare/dry condition of a given pixel and the air temperature at the canopy level of the same pixel as explained in Senay2018_. The input dT is calculated under "gray-sky" conditions and assumed not to change from year to year, but is unique for each day and location.

Default Asset ID: *projects/usgs-ssebop/dt/daymet_median_v7*

Cold Boundary Temperature (Tcold)
-----------------------------------
In order to determine the theoretical LST corresponding to cold/wet limiting environmental conditions (Tcold), the
SSEBop model uses a Forcing and Normalizing Operation (FANO) method, featuring a linear relation between a normalized
land surface temperature difference and NDVI difference using the dT parameter and a proportionality constant.

More information on parameter design and model improvements using the FANO method can be found in Senay2023_. Additional SSEBop model algorithm theoretical basis documentation can be found `here `__.

.. code-block:: python

    model_obj = model.Image.from_landsat_c2_sr(
        ee.Image('LANDSAT/LC08/C02/T1_L2/LC08_044033_20170716'),
    )

The FANO parameterization allows the establishment of the cold boundary condition regardless of vegetation cover density, improving the performance and operational implementation of the SSEBop ET model in sparsely vegetated landscapes, dynamic growing seasons, and varying locations around the world.

Installation
============

The OpenET SSEBop python module can be installed via pip:

.. code-block:: console

    pip install openet-ssebop

Dependencies
============

 * `earthengine-api `__
 * `openet-core `__

OpenET Namespace Package
========================

Each OpenET model is stored in the "openet" folder (namespace).  The model can then be imported as a "dot" submodule of the main openet module.

.. code-block:: console

    import openet.ssebop as ssebop

Development and Testing
=======================

Please see the `CONTRIBUTING.rst `__.

References
==========

.. _references:

.. [Senay2013]
 | Senay, G., Bohms, S., Singh, R., Gowda, P., Velpuri, N., Alemu, H., Verdin, J. (2013). Operational Evapotranspiration Mapping Using Remote Sensing and Weather Datasets: A New Parameterization for the SSEB Approach. *Journal of the American Water Resources Association*, 49(3).
 | `https://doi.org/10.1111/jawr.12057 `__
.. [Senay2016]
 | Senay, G., Friedrichs, M., Singh, R., Velpui, N. (2016). Evaluating Landsat 8 evapotranspiration for water use mapping in the Colorado River Basin. *Remote Sensing of Environment*, 185.
 | `https://doi.org/10.1016/j.rse.2015.12.043 `__
.. [Senay2017]
 | Senay, G., Schauer, M., Friedrichs, M., Manohar, V., Singh, R. (2017). Satellite-based water use dynamics using historical Landsat data (1984\-2014) in the southwestern United States. *Remote Sensing of Environment*, 202.
 | `https://doi.org/10.1016/j.rse.2017.05.005 `__
.. [Senay2018]
 | Senay, G. (2018). Satellite Psychrometric Formulation of the Operational Simplified Surface Energy Balance (SSEBop) Model for Quantifying and Mapping Evapotranspiration. *Applied Engineering in Agriculture*, 34(3).
 | `https://doi.org/10.13031/aea.12614 `__
.. [Senay2019]
 | Senay, G., Schauer, M., Velpuri, N.M., Singh, R.K., Kagone, S., Friedrichs, M., Litvak, M.E., Douglas-Mankin, K.R. (2019). Long-Term (1986–2015) Crop Water Use Characterization over the Upper Rio Grande Basin of United States and Mexico Using Landsat-Based Evapotranspiration. *Remote Sensing*, 11(13):1587.
 | `https://doi.org/10.3390/rs11131587 `__
.. [Schauer2019]
 | Schauer, M., Senay, G. (2019). Characterizing Crop Water Use Dynamics in the Central Valley of California Using Landsat-Derived Evapotranspiration. *Remote Sensing*, 11(15):1782.
 | `https://doi.org/10.3390/rs11151782 `__
.. [Senay2022]
 | Senay, G.B., Friedrichs, M., Morton, C., Parrish, G. E., Schauer, M., Khand, K., ... & Huntington, J. (2022). Mapping actual evapotranspiration using Landsat for the conterminous United States: Google Earth Engine implementation and assessment of the SSEBop model. *Remote Sensing of Environment*, 275, 113011
 | `https://doi.org/10.1016/j.rse.2022.113011 `__
.. [Senay2023]
 | Senay, G.B., Parrish, G. E., Schauer, M., Friedrichs, M., Khand, K., Boiko, O., Kagone, S., Dittmeier, R., Arab, S., Ji, L. (2023). Improving the Operational Simplified Surface Energy Balance evapotranspiration model using the Forcing and Normalizing Operation. *Remote Sensing*, 15(1):260.
 | `https://doi.org/10.3390/rs15010260 `__

.. |build| image:: https://github.com/Open-ET/openet-ssebop/actions/workflows/tests.yml/badge.svg
   :alt: Build status
   :target: https://github.com/Open-ET/openet-ssebop
.. |version| image:: https://badge.fury.io/py/openet-ssebop.svg
   :alt: Latest version on PyPI
   :target: https://badge.fury.io/py/openet-ssebop

        

Owner metadata


GitHub Events

Total
Last Year

Committers metadata

Last synced: 4 days ago

Total Commits: 624
Total Committers: 6
Avg Commits per committer: 104.0
Development Distribution Score (DDS): 0.266

Commits in past year: 12
Committers in past year: 1
Avg Commits per committer in past year: 12.0
Development Distribution Score (DDS) in past year: 0.0

Name Email Commits
Charles Morton c****n@g****m 458
gabe-parrish g****h@g****m 104
Mac Friedrichs m****2@g****m 50
macfriedrichs m****r@u****v 9
Peter ReVelle p****e@g****m 2
Tyler Erickson t****e@g****m 1

Committer domains:


Issue and Pull Request metadata

Last synced: 6 days ago

Total issues: 35
Total pull requests: 58
Average time to close issues: 8 months
Average time to close pull requests: about 1 month
Total issue authors: 11
Total pull request authors: 6
Average comments per issue: 1.09
Average comments per pull request: 0.86
Merged pull request: 49
Bot issues: 0
Bot pull requests: 0

Past year issues: 2
Past year pull requests: 1
Past year average time to close issues: 5 days
Past year average time to close pull requests: 5 months
Past year issue authors: 1
Past year pull request authors: 1
Past year average comments per issue: 0.0
Past year average comments per pull request: 0.0
Past year merged pull request: 1
Past year bot issues: 0
Past year bot pull requests: 0

More stats: https://issues.ecosyste.ms/repositories/lookup?url=https://github.com/Open-ET/openet-ssebop

Top Issue Authors

  • cgmorton (14)
  • gabe-parrish (10)
  • macfriedrichs (3)
  • alvesraisa (1)
  • tylere (1)
  • CarlyLarsson (1)
  • adelthedev (1)
  • spizwhiz (1)
  • pbkbkrishna (1)
  • zhyanyan2023 (1)
  • pblankenau2 (1)

Top Pull Request Authors

  • cgmorton (38)
  • gabe-parrish (9)
  • macfriedrichs (7)
  • tylere (2)
  • FevetS (1)
  • prevelle (1)

Top Issue Labels

  • enhancement (8)

Top Pull Request Labels

  • enhancement (2)

Package metadata

proxy.golang.org: github.com/open-et/openet-ssebop

proxy.golang.org: github.com/Open-ET/openet-ssebop

pypi.org: openet-ssebop

Earth Engine implementation of the SSEBop model

  • Homepage: https://github.com/Open-ET/openet-ssebop
  • Documentation: https://openet-ssebop.readthedocs.io/
  • Licenses: Apache Software License
  • Latest release: 0.7.1 (published 10 months ago)
  • Last Synced: 2026-06-13T10:26:42.718Z (4 days ago)
  • Versions: 30
  • Dependent Packages: 0
  • Dependent Repositories: 2
  • Downloads: 170 Last month
  • Rankings:
    • Dependent packages count: 7.31%
    • Forks count: 8.272%
    • Stargazers count: 11.578%
    • Dependent repos count: 11.798%
    • Average: 13.107%
    • Downloads: 26.578%
  • Maintainers (1)

Dependencies

pyproject.toml pypi
  • earthengine-api >=0.1.364
  • importlib-metadata python_version <= '3.7'
  • openet-core >=0.1.1
  • openet-refet-gee >=0.2.0
  • python-dateutil *
.github/workflows/tests.yml actions
  • actions/checkout v3 composite
  • actions/setup-python v3 composite

Score: 10.988102331560384