Estimates glacier surface area and glacier volume.
Source:R/ErazovsGlacierFunction.R
ErazovsGlacierFunction.Rd
ErazovsGlacierFunction implements the empirical relationship between glacier area and volume. It can be used to estimate regional glacier volumes in Central Asia.
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.
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)
#> # A tibble: 11 × 3
#> Year Area Volume_Erazov_km3
#> <int> <dbl> <dbl>
#> 1 2000 0.57 0.0116
#> 2 2001 0.56 0.0113
#> 3 2002 0.55 0.0110
#> 4 2003 0.55 0.0110
#> 5 2004 0.54 0.0107
#> 6 2005 0.53 0.0104
#> 7 2006 0.53 0.0104
#> 8 2007 0.52 0.0101
#> 9 2008 0.051 0.000311
#> 10 2009 0.05 0.000302
#> 11 2010 0.048 0.000284