download_asymsam_monthly {rsoi} | R Documentation |
Download Asymmetric and Symmetric SAM indices
Description
The Asymmetric and Symmetric SAM indices are computed as the projection of geopotential height anomalies onto the zonally asymmetric and zonally symmetric parts of the SAM field. The detailed methodology can be found in Campitelli et al. (2022). The source of the data is https://www.cima.fcen.uba.ar/~elio.campitelli/asymsam/
Usage
download_asymsam_monthly(use_cache = FALSE, file = NULL)
download_asymsam_daily(levels = 700, use_cache = FALSE, file = NULL)
Arguments
use_cache |
logical option to save and load from cache. If 'TRUE', results will be cached in memory if 'file' is 'NULL' or on disk if 'file' is not 'NULL'. |
file |
optional character with the full path of a file to save the data. If 'cache' is 'FALSE' but 'file' is not 'NULL', the results will be downloaded from the internet and saved on disk. |
levels |
atmospheric levels in hPa to download.
If |
Value
Lev: Atmospheric level in hPa
Date: Date object that uses the first of the month as a placeholder. Date formatted as date on the first of the month because R only supports one partial of date time
Index: Type of index. Either "sam", "ssam" or "asam".
Value: Value of the index
Value_normalized: Value of the index normalized by the standard deviation of the index
R.squared: The variance explained by the index (only in the daily version)
References
Campitelli, E., Díaz, L. B., & Vera, C. (2022). Assessment of zonally symmetric and asymmetric components of the Southern Annular Mode using a novel approach. Climate Dynamics, 58(1), 161–178. doi:10.1007/s00382-021-05896-5
Examples
## Not run:
asymsam <- download_asymsam_monthly()
## End(Not run)