ErazovsGlacierFunction: Estimates glacier surface area and glacier volume.

View source: R/ErazovsGlacierFunction.R

ErazovsGlacierFunctionR Documentation

Estimates glacier surface area and glacier volume.

Description

ErazovsGlacierFunction implements the empirical relationship between glacier area and volume. It can be used to estimate regional glacier volumes in Central Asia.

Usage

ErazovsGlacierFunction(glaciers)

Arguments

glaciers

A data.frame, tibble, or sf object. Must contain an attribute "Area" in kilometers squared (as in the Randolph Glacier Inventory (RGI 6.0)).

Value

Returns the input object with Volume_Erazov_km3 added. Will return NULL if the length column in the input object is not found.

Note

This function is being deprecated. Please use glacierVolume_Erasov() instead.

References

Erazov, N. V. (1968). Method for determining of volume of mountain glaciers. MGI 14, pp 307-308.

See Also

[glacierVolume_Erasov]

Other Glacier functions: glacierAreaVolume_Aizen(), glacierArea_Erasov(), glacierArea_RGIF(), glacierMelt_TI(), glacierVolume_Erasov(), glacierVolume_RGIF()

Examples

glacier <- dplyr::tibble(Year = c(2000:2010),
                         Area = c(0.57, 0.56, 0.55, 0.55, 0.54, 0.53, 0.53,
                                  0.52, 0.051, 0.05, 0.048))
ErazovsGlacierFunction(glacier)

hydrosolutions/riversCentralAsia documentation built on Feb. 7, 2023, 4:50 p.m.