pyWaPOR

downloads version Open In Colab

This repository contains a Python implementation of the algorithm used to generate the WaPOR datasets. It can be used to calculate evaporation, transpiration and biomass production maps.

Installation

Its recommended to install in a new conda environment.

conda create -n my_pywapor_env -c conda-forge pywapor

Usage

Run the model for a selected bounding-box and period of time:

import pywapor

project_folder = r"/my_first_ETLook_run/"
bb = [30.2, 28.9, 31.2, 29.7] # [xmin, ymin, xmax, ymax]
period = ["2021-07-01", "2021-07-03"]

# Set up a project.
project = pywapor.Project(project_folder, bb, period)

# Load a configuration.
project.load_configuration(name = "WaPOR3_level_2")

# Set up required accounts.
project.set_passwords()

# Download the input data.
datasets = project.download_data()

# Run the models.
se_root_in = project.run_pre_se_root()
se_root = project.run_se_root()

et_look_in = project.run_pre_et_look()
et_look = project.run_et_look()

To see a summary of your configuration, checkout the summary attribute of the configuration. For more detailed information, check the full, se_root and et_look attributes:

print(project.configuration.summary)
print(project.configuration.full)
print(project.configuration.se_root)
print(project.configuration.et_look)

Making configurations yourself can be done by passing a name to Project.load_configuration (as done above), by passing a summary or by loading a configuration from a JSON-file:

summary = {
    # Define which products to use.
    'elevation': {'COPERNICUS.GLO30'},
    'meteorological': {'GEOS5.tavg1_2d_slv_Nx'},
    'optical': {'SENTINEL2.S2MSI2A_R20m'},
    'precipitation': {'CHIRPS.P05'},
    'solar radiation': {'ERA5.sis-agrometeorological-indicators'},
    'statics': {'STATICS.WaPOR3'},
    'thermal': {'VIIRSL1.VNP02IMG'},
    # Use se_root output as soil moisture data.
    'soil moisture': {'FILE:{folder}{sep}se_root_out*.nc.from_file'},
    # Define which product to reproject the other products to.
    '_EXAMPLE_': 'SENTINEL2.S2MSI2A_R20m',
    # Define any special functions to apply to a specific variable.
    '_ENHANCE_': {"bt": ["pywapor.enhancers.dms.thermal_sharpener.sharpen"],},
    # Choose which products should be gapfilled.
    '_WHITTAKER_': {
        'SENTINEL2.S2MSI2A_R20m': {'lmbdas': 1000.0, 'method': 'whittaker'},
        'VIIRSL1.VNP02IMG': {'a': 0.85, 'lmbdas': 1000.0, 'method': 'whittaker'}},
    }

project.load_configuration(summary = summary)

Save a configuration to a JSON-file like this:

project.configuration.to_json("/path/to/my/configuration.json")

Load a configuration from a JSON-file:

project.load_configuration(json = "/path/to/my/configuration.json")

Changing model parameters (or entire variables) can be done in between the project.run_pre_se_root() and project.run_se_root() steps (same goes for et_look) by making changes to the xarray.Dataset returned by project.run_pre_se_root (and stored at project.se_root_in):

se_root_in = project.run_pre_se_root()

print(se_root_in["r0_bare"].values)
>>> 0.38

se_root_in["r0_bare"] = 0.32

print(se_root_in["r0_bare"].values)
print(project.se_root_in["r0_bare"].values)
>>> 0.32
>>> 0.32

Documentation

Notebooks
Name Colab
1. Introduction colab
2. Passwords colab
3. Enhancers colab
4. Sideloading colab

WaPOR v3

WaPOR v2

WaPOR v1

Acknowledgments

The methodology for WaPOR was developed by the FRAME1 consortium, consisting of eLEAF (lead), VITO, ITC, University of Twente and Waterwatch foundation, commissioned by and in partnership with the Land and Water Division of FAO. The method for calculating evapotranspiration is based on the ETLook model developed by eLEAF in 2010. The method for calculating total biomass production is based on the C-Fix model.

The code in the pywapor.et_look_v2_v3 module of this repository, containing all core physical functions used by ETLook, was written by Henk Pelgrum (eLEAF) and Rutger Kassies (eLEAF). The remaining modules have been developed by Bert Coerver (FAO), Tim Hessels (WaterSat), and, in the framework of the ESA-funded ET4FAO project, Radoslaw Guzinski (DHI-GRAS), Hector Nieto (Complutig) and Laust Faerch (DHI-GRAS).

Contact

For questions, requests or issues with this repository, please contact Bert Coerver at bert.coerver@fao.org or the WaPOR team at wapor@fao.org.

Release Notes

3.5.0 (2024-03-19)
  • Restructured the overall workflow, there are now clear sequential phases instead of a nested process.
  • Only one configuration needs to be made, instead of two separate ones for et_look and se_root.
  • There is now much more recycling of previously created files and API responses are cached on disk wherever possible, making rerunning after a crash or configuration change much faster.
  • Quickly set up the passwords needed for the configuration you're running using the logged/printed instructions.
  • The process prior to the start of downloading VIIRS data is now roughly 3 times faster.
  • VIIRS data is now downloaded using OPeNDAP.
  • Downloading of GEOS5 data is now chunked, making it more stable when downloading long time-series.
  • Fixed a bug in the thermal sharpener that caused it to return only missing data in some cases.
  • The static variables are now available globally.

3.4.0 (2023-09-15)
  • Rewritten code to download and process VIIRSL1 data, which is now available from an S3 bucket.
  • Rewritten code to download PROBA-V data, which now comes from the new Terrascope platform (the old portal was deprecated).
  • Rewritten Sentinel downloader, which now uses the new Copernicus Data Space Ecosystem. Most importantly this means that all images are available instantly (so no more tedious requesting from the Long Term Archive for older scenes).
  • Projecting of curvilinear data (VIIRSL1 and Sentinel-3) is now done using gdal-warp.
  • Calculation of terrain slope and aspect is now done using gdal-dem.
  • It is now possible turn off SSL-verification when downloading certain products. Run 'import os; os.environ["PYWAPOR_VERIFY_SSL"] = "NO"' to do so.
  • Simplified installation requirements.
  • Available options in `pywapor.pre_et_look.main` for `sources` are now "level_1", "level_2", "level_3", "level_2_v3" (new default value) and "level_3_v3". The `bin_length' is now set to 1 by default (was `"DEKAD"`).
  • Various other smaller bug fixes.

3.3.0 (2023-04-05)
  • - Option to smooth and interpolate data with a Whittaker smoother.
  • - Downloading of Sentinel-3 data is now faster.
  • - Fixed an issue that could result in an incorrect scale-factor being applied to Sentinel-2 images.

3.2.0 (2023-01-03)
  • - Full Landsat support, automatically download and process Landsat (5-9) data.
  • - Fixed a bug that caused some MODIS data to be missing inside the selected boundingbox.
  • - You can now re-enter a password in case you've provided an incorrect one.
  • - Bugfixes (including more Windows specific ones).
  • - Updated weights to calculate albedo for Landsat and Sentinel.

3.1.0 (2022-09-22)
  • - Added a thermal sharpening algorithm (pyDMS) to increase LST resolution.
  • - Now, when after several failed attempts to download a variable, the code will continue processing other variables.
  • - Improved cloud-masking for VIIRSL1.
  • - Bugfixes (including several Windows specific ones).
  • - More information in the log.

3.0.0 (2022-08-31)
  • - Bugfixes. Most noteably, server side errors when downloading data are now handeled better, i.e. collect tools will retry several times when a download fails, but many other smaller issues have been fixed too.
  • - Performance improvements, mostly due to fewer reprojections.
  • - Better logging. The logs from SENTINEL and ERA5 are now directed to seperate channels and logs now show peak-memory-usage for critical calculation steps.
  • - `et_look` and `se_root` now accept a `chunks` keyword to adjust the chunksizes at which the calculations are done. Increase them if you have a lot of RAM available, decrease them for slower calculations but with less memory usage.
  • - Support for WaPOR v3 methodology. Choose `et_look_version = "v3"` and `se_root_version = "v3"` when running the respective models (`et_look` and `se_root`).
  • - Default configurations for WaPOR v3 input datasets, i.e. choose `sources = "level_2_v3"` when running `pre_et_look` or `pre_se_root`.
  • - New collect functions for COPERNICUS DEM.
  • - The data structure for STATICS is now consistent with the other products.

2.6.0 (2022-08-04)
  • - New collect functions for VIIRS (Level-1), SENTINEL-2, SENTINEL-3 and (ag)ERA5.
  • - pyWaPOR now works with Python versions greater than 3.8.

2.5.0 (2022-06-23)
  • - Rewritten collect tools.
  • - The entire workflow now works with netCDF.
  • - All the netCDF files are formatted to support the rio-acccessor.

2.4.2 (2022-04-26)
  • - New biomass module and NPP calculation.

2.4.1 (2022-03-11)
  • - NetCDF files are now compressed when saved to disk.
  • - Calculation of Total Biomass Production is now turned on by default.
  • - It is no longer required to provide all input variables to et_look, the model will calculate as many variables as possible with the given data. For example, if you are only interested in acquiring interception rates, it would now suffice to only prepare ndvi and p (precipitation) data with pre_et_look.
  • - et_look now automatically generates an interactive network graph visualising the executed computation steps.

2.4.0 (2022-02-03)
  • - Easily apply your own functions to data, i.e. use your own custom filters, gap-fillers etc.
  • - Side-load your own data, i.e. easily incorporate you own datasets.
  • - Added functions to process Landsat Level-2 to “ndvi”, “lst” and “r0”.
  • - Data is now stored and processed as netCDF (using xarray and dask).
  • - Calculations in et_look() and se_root() are now done in chunks, instead of using a for-loop.
  • - Some previously constant parameters now have spatial variability.
  • - Improved logging.
  • - Download functions now show progress and download-speed.
  • - MODIS datasets switched from v6.0 (decommissioned soon) to v6.1.
  • - The lapse-rate correction to temperature data is now more accurate and faster.
  • - VITO and WAPOR passwords are now checked when entered.
  • - Other bug-fixes and performance improvements.

2.3.0 (2021-11-19)
  • - Automatically create input composites before running ETLook.
  • - Choose composite lengths in number of days or dekads.
  • - Option to choose which products to use per variable.
  • - Calculate soil saturation separate from ETLook.
  • - PROBA-V support for NDVI and Albedo inputs.
  • - Define diagnostics pixels, for which extra outputs are created (e.g. charts, maps etc.).
  • - Bug-fixes and performance improvements.

License

APACHE