This function creates a complete report for a specific location, from temperature and precipitation data series.
bioclim_report(t, p, nam, lat, CC, output)
data frame with 20 variables: 'p', 'Tm', 'PET', 'e', 'D', 'S', 's_e_D', 'sum_s', 'c_D_e', 'sum_c', 'Q', 'x', 'E_e', 'D_e', 'Cd', 'T_75', 'B', 'b', 'bl', 'bc'.
Monthly average temperature data (12 nueric values).
Monthly average precipitation data (12 nueric values).
Name of the location. It will be used as name of output file
Latitude in degrees. For southern latitudes use negative values.
Field capacity. It depends on water retention capacity and depth of roots. Use 400 as default value.
Path of the output pdf file.
# \donttest{
bioclim_report(t = c(10, 11.5, 14, 16.5, 20, 24.5, 27.5, 28, 24.5, 19.5, 14.5, 11),
p = c(55, 73, 84, 58, 33, 23, 2, 2, 28, 66, 94, 71),
lat = 35, nam = 'Seville', CC = 400, output ='./seville.pdf')
# }
Run the code above in your browser using DataLab