centum.delineation#

A class for analyzing evapotranspiration (ET) data using xarray.

This class provides methods to compute ratios of actual evapotranspiration (ETa) to potential evapotranspiration (ETp), identify thresholds for decision-making based on changes in these ratios, and calculate rolling time means.

centum.delineation.ETa_name#

Name of the variable representing actual evapotranspiration in the dataset. Default is ‘ETa’.

Type:

str

centum.delineation.ETp_name#

Name of the variable representing potential evapotranspiration in the dataset. Default is ‘ETp’.

Type:

str

centum.delineation.threshold_local#

Threshold value for identifying significant changes in local ETa/ETp ratios. Default is -0.25.

Type:

float

centum.delineation.threshold_regional#

Threshold value for identifying significant changes in regional ETa/ETp ratios. Default is -0.25.

Type:

float

centum.delineation.stat#

Statistical operation to apply to ETa/ETp ratios. Options include ‘mean’, ‘sum’, etc. Default is ‘mean’.

Type:

str

Classes

ETAnalysis([ETa_name, ETp_name, ...])