View source: R/ErazovsGlacierFunction.R
ErazovsGlacierFunction | R Documentation |
ErazovsGlacierFunction implements the empirical relationship between glacier area and volume. It can be used to estimate regional glacier volumes in Central Asia.
ErazovsGlacierFunction(glaciers)
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)). |
Returns the input object with Volume_Erazov_km3 added. Will return NULL if the length column in the input object is not found.
This function is being deprecated. Please use glacierVolume_Erasov() instead.
Erazov, N. V. (1968). Method for determining of volume of mountain glaciers. MGI 14, pp 307-308.
[glacierVolume_Erasov]
Other Glacier functions:
glacierAreaVolume_Aizen()
,
glacierArea_Erasov()
,
glacierArea_RGIF()
,
glacierMelt_TI()
,
glacierVolume_Erasov()
,
glacierVolume_RGIF()
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.