start_of_growing_season | R Documentation |
This implements a conventional method for the determination of the start of the growing season (SGS) based on daily average temperatures.
start_of_growing_season(temperatures)
temperatures |
vector Daily average temperatures in degree Celsius. |
A temperature sum is constructed using [weighted_temperature_sum()], i.e. by summing the average daily temperature for each day, but applying a weight factor of 0.5 for January and 0.75 for February.
The SGS is defined as the first day where the so constructed temperature sum crosses 200 degree days.
[start_of_growing_season_mtd()], [weighted_temperature_sum()]
ts = rep(2, 365)
start_of_growing_season(ts)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.