-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME.Rmd
125 lines (86 loc) · 7.87 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
---
title: Compute Degree Days
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
<!-- badges: start -->
[![CRAN status](https://www.r-pkg.org/badges/version/degday)](https://CRAN.R-project.org/package=degday)
[![Monthly downloads](https://cranlogs.r-pkg.org/badges/degday?color=brightgreen)](https://CRAN.R-project.org/package=degday)
[![R-Universe status badge](https://ajlyons.r-universe.dev/badges/degday)](https://ajlyons.r-universe.dev)
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.7083181.svg)](https://doi.org/10.5281/zenodo.7083181)
[![degree-day-challenge: passing](https://raw.githubusercontent.com/ucanr-igis/degree-day-challenge/main/badges/degree-day-challenge-passing.svg)](https://ucanr-igis.github.io/degree-day-challenge/)
[![R-CMD-check](https://github.com/UCANR-IGIS/degday/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/UCANR-IGIS/degday/actions/workflows/R-CMD-check.yaml)
[![Lifecycle: stable](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://lifecycle.r-lib.org/articles/stages.html#stable)
<!-- badges: end -->
<a href='https://ucanr-igis.github.io/degday/'><img src='man/figures/logo.png' align="right" style="padding:15px; height:200px; width:177px;"/></a>**degday** provides formulas for estimating [degree days](https://en.wikipedia.org/wiki/Growing_degree-day) from daily minimum and maximum temperatures. Degree days are commonly used in agriculture to predict the development of plants and insects, which are strongly correlated with accumulated heat above a certain a temperature. To use the formulas, you must pass a record of daily minimum and maximum temperatures, as well as a species-dependent temperature range in which growth is possible.
Formulas are based on the work by Zalom et al ([1983](#references)) and McMaster and Wilhelm ([1997](#references)). These same formulas are used on the University of California [Integrated Pest Management](http://ipm.ucanr.edu/WEATHER/) (UC IPM) website. See the UC IPM website for additional background on [degree days](http://ipm.ucanr.edu/WEATHER/ddconcepts.html), [detailed figures and formulas](http://ipm.ucanr.edu/WEATHER/ddfigindex.html), and [models](http://www.ipm.ucdavis.edu/MODELS/) that predict growth stages of various crops and pests based on degree days.
`degday` implements all formulas from Zalom et al ([1983](#references)), including the single and double triangle methods, and the single and double sine methods. All formulas use the horizontal cutoff method. `degday` does not currently support the vertical cutoff method, nor the corrected sine and triangle methods. The simple average method is based on McMaster and Wilhelm ([1997](#references)), which allows for an optional upper threshold and supports the so-called 'corn' method for dealing with temperatures below the lower and above the upper thresholds.
You might be wondering, *which of the four estimation methods should I use?* Most people compute degree days not as an end in itself, but rather to look-up when a development milestone is predicted to take place, such as blooming for a tree crop, or larvae emergence in an insect. Hence you should use the same method that was used to build the reference table. When in doubt, use the single-sine method. For more info about the different methods, see Roltsch et al ([1999](#references)).
Degree days are sometimes referred to as *growing degree days*, which generally refers to data that drives models of specifically plant growth. Other terms that are more or less synonymous with degree days are *heat units* and *thermal units*. *Chill hours* is a related concept, but uses accumulated cold to predict plant and insect development rather than accumulated heat. Formulas for computing chill hours and chill portions may be found in [chillR](https://cran.r-project.org/package=chillR).
## Installation
`degday` can be installed from CRAN:
```
install.packages("degday")
```
The development version of `degday` is available on [r-universe](https://ajlyons.r-universe.dev/){target="_blank" rel="noopener"}. To install it, you can run:
```
options(repos = c(ajlyons = 'https://ajlyons.r-universe.dev',
CRAN = 'https://cloud.r-project.org'))
install.packages('degday')
```
Alternately, you can install the development version directly from [GitHub](https://github.com/ucanr-igis/degday){target="_blank" rel="noopener"}. (This requires the `remotes` package plus [RTools](https://cran.r-project.org/bin/windows/Rtools/){target="_blank" rel="noopener"} for Windows users.)
```
remotes::install_github("ucanr-igis/degday")
```
## Example
To illustrate, we can compute degree days for a sample dataset consisting of one year of minimum and maximum daily temperatures from the [Esparto.A](http://ipm.ucanr.edu/calludt.cgi/WXSTATIONDATA?MAP=yolo.html&STN=Esparto.A) CIMIS weather station in Yolo County, California.
```{r example, message=FALSE}
library(degday)
library(dplyr)
espartoa_csv <- system.file("extdata/espartoa-weather-2020.csv", package = "degday")
espartoa_temp <- read.csv(espartoa_csv) %>% mutate(date = as.Date(date))
espartoa_temp %>% head()
```
To compute degree days, we have to tell it a range of temperatures in which development occurs. We'll select 55.0°F and 93.9°F, which are the lower and upper thresholds for [Navel Orangeworm](http://ipm.ucanr.edu/PHENOLOGY/ma-navel_orangeworm.html).
```{r thresholds}
thresh_low <- 55
thresh_up <- 93.9
```
The single-triangle and single-sine methods can be computed with `dd_sng_tri()` and `dd_sng_sine()`. We can add them as columns in our table using `mutate()`:
```{r compute_single}
espartoa_dd <- espartoa_temp %>%
mutate(sng_tri = dd_sng_tri(daily_min = tmin, daily_max = tmax,
thresh_low = thresh_low, thresh_up = thresh_up),
sng_sine = dd_sng_sine(daily_min = tmin, daily_max = tmax,
thresh_low = thresh_low, thresh_up = thresh_up))
espartoa_dd %>% head()
```
To compute degree days using the double-triangle and double-sine methods, we need to first add a column to our temperature table for the "day after" minimum temperature. That's because these methods use the minimum temperature of the next day to better model cooling in the afternoon and evening hours.
We can add the next-day minimum temperature to our table with a little dplyr.
```{r}
espartoa_temp2 <- espartoa_temp %>%
mutate(tmin_next = lead(tmin, n = 1))
espartoa_temp2 %>% head()
```
The double-triangle and double-sine methods can be computed with `dd_dbl_tri()` and `dd_dbl_sine()`.
```{r}
espartoa_dd2 <- espartoa_temp2 %>%
mutate(dbl_tri = dd_dbl_tri(daily_min = tmin, daily_max = tmax, nextday_min = tmin_next,
thresh_low = thresh_low, thresh_up = thresh_up),
dbl_sine = dd_dbl_sine(daily_min = tmin, daily_max = tmax, nextday_min = tmin_next,
thresh_low = thresh_low, thresh_up = thresh_up))
espartoa_dd2 %>% head()
```
\
# References {#references}
Zalom, F.G., P.B. Goodell, L.T. Wilson, W.W. Barnett, and W.J. Bentley. 1983. *Degree-days: The calculation and use of heat units in pest management*. UC DANR Leaflet 21373. Available from [Hathi Trust](https://catalog.hathitrust.org/Record/008707238).
McMaster, G. S., and Wilhelm, W. W. 1997. *Growing degree-days: one equation, two interpretations*. Agricultural and forest meteorology, 87(4), 291-300. Available from [unl.edu](https://digitalcommons.unl.edu/cgi/viewcontent.cgi?article=1086&context=usdaarsfacpub)
Roltsch, W. J.; Zalom, F. G.; Strawn, A. J.; Strand, J. F.; Pitcairn, M. J. 1999. *Evaluation of several degree-day estimation methods in California climates*. Int. J. Biometeorol. 42:169-176. [https://doi.org/10.1007/s004840050101](https://doi.org/10.1007/s004840050101)