Skip to contents

worldclim_random() returns a random selection of parameters for downloading WorldClim data.

Usage

worldclim_random(series = "hcd")

Arguments

series

A string indicating the WorldClim data series to use. The following options are available:

  • 'hcd' (Historical Climate Data).

  • 'hmwd' (Historical Monthly Weather Data).

  • 'fcd' (Future Climate Data).

Value

A list with a random selection of parameters for downloading WorldClim data. The list contains the following elements:

  • series: The selected data series.

  • resolution: The selected spatial resolution.

  • variable: The selected climate variable.

  • bioclimatic_variable: The selected bioclimatic variable (only for Historical Climate Data and Future Climate Data when variable is set to "bioc").

  • model: The selected climate model (only for Future Climate Data).

  • ssp: The selected Shared Socioeconomic Pathway (only for Future Climate Data).

  • year: The selected year or year range.

  • month: The selected month.

Examples

worldclim_random("hcd")
#> $series
#> Historical Climate Data 
#>                   "hcd" 
#> 
#> $resolution
#> 2.5 Minutes (~21 km2 at the Equator) 
#>                               "2.5m" 
#> 
#> $variable
#> Average Minimum Temperature (°C) 
#>                           "tmin" 
#> 
#> $year
#> 1970-2000 
#>      1983 
#> 
#> $month
#> April 
#>     4 
#> 

worldclim_random("hmwd")
#> $series
#> Historical Monthly Weather Data 
#>                          "hmwd" 
#> 
#> $resolution
#> 5 Minutes (~85 km2 at the Equator) 
#>                               "5m" 
#> 
#> $variable
#> Average Minimum Temperature (°C) 
#>                           "tmin" 
#> 
#> $year
#> 1960-1969 
#>      1960 
#> 
#> $month
#> July 
#>    7 
#> 

worldclim_random("fcd")
#> $series
#> Future Climate Data 
#>               "fcd" 
#> 
#> $resolution
#> 2.5 Minutes (~21 km2 at the Equator) 
#>                               "2.5m" 
#> 
#> $variable
#> Average Minimum Temperature (°C) 
#>                           "tmin" 
#> 
#> $model
#> Model for Interdisciplinary Research on Climate, Japan 
#>                                               "MIROC6" 
#> 
#> $ssp
#>  SSP-585 
#> "ssp585" 
#> 
#> $year
#> 2061-2080 
#>      2068 
#> 
#> $month
#> February 
#>        2 
#>