Computes the water footprint of crop production decomposed into green, blue, and grey components following the Water Footprint Assessment framework.
water_footprint(
green_water,
blue_water,
grey_water = 0,
yield,
area = 1,
per_ton = FALSE,
verbose = TRUE
)Numeric vector. Green water use, i.e., effective rainfall consumed by the crop during growth (mm).
Numeric vector. Blue water use, i.e., irrigation water applied and consumed (mm).
Numeric vector. Grey water, i.e., freshwater volume required to dilute pollutant load to acceptable standards (mm). Default is 0.
Numeric vector. Crop yield (kg/ha).
Numeric. Crop area in hectares. Default is 1.
Logical. If TRUE, returns water footprint in
m3/ton. Default FALSE, returning m3/kg.
Logical. If TRUE, prints informational messages.
Default TRUE.
A data frame with four numeric columns:
Green water footprint (m3/kg or m3/ton)
Blue water footprint (m3/kg or m3/ton)
Grey water footprint (m3/kg or m3/ton)
Total water footprint (m3/kg or m3/ton)
The water footprint per unit mass of product is: $$WF = \frac{CWU \times 10}{Y}$$ where CWU is crop water use (mm) and Y is yield (kg/ha). The factor 10 converts mm over 1 ha to m3.
Hoekstra, A.Y., Chapagain, A.K., Aldaya, M.M. & Mekonnen, M.M. (2011). The Water Footprint Assessment Manual: Setting the Global Standard. Earthscan, London. ISBN:9781849712798.
Mialyk, O. et al. (2024). Water footprints and crop water use of 175 individual crops for 1990-2019 simulated with a global crop model. Scientific Data, 11, 200. doi:10.1038/s41597-024-03051-3
water_footprint(green_water = 300, blue_water = 200,
grey_water = 50, yield = 4000)
#> Water footprint computed (m3/kg).
#> green_wf blue_wf grey_wf total_wf
#> 1 0.75 0.5 0.12 1.37