aboutsummaryrefslogtreecommitdiff
path: root/man/EFSA_washoff_2017.Rd
blob: b1ab30f9e26e009d609d773daa731a2aab4af8b4 (plain) (blame)
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
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/EFSA_washoff_2017.R
\docType{data}
\name{EFSA_washoff_2017}
\alias{EFSA_washoff_2017}
\title{Subset of EFSA crop washoff default values}
\format{A matrix containing wash-off factors, currently only for some selected crops}
\source{
European Food Safety Authority (2017) EFSA guidance document for
  predicting environmental concentrations of active substances of plant
  protection products and transformation products of these active substances
  in soil. \emph{EFSA Journal} \bold{15}(10) 4982
  doi:10.2903/j.efsa.2017.4982
}
\description{
Subset of EFSA crop washoff default values
}
\examples{
\dontrun{
  # This is the code that was used to define the data
  bbch <- paste0(0:9, "x")
  crops <- c(
    "Beans (field + vegetable)",
    "Peas",
    "Summer oilseed rape", "Winter oilseed rape",
    "Tomatoes",
    "Spring cereals", "Winter cereals")
  EFSA_washoff_2017 <- matrix(NA, length(crops), length(bbch),
    dimnames = list(Crop = crops, BBCH = bbch))
  EFSA_washoff_2017["Beans (field + vegetable)", ] <-
    c(NA, 0.6, rep(0.75, 2), rep(0.8, 5), 0.35)
  EFSA_washoff_2017["Peas", ] <-
    c(NA, 0.4, rep(0.6, 2), rep(0.65, 5), 0.35)
  EFSA_washoff_2017["Summer oilseed rape", ] <-
    c(NA, 0.4, rep(0.5, 2), rep(0.6, 5), 0.5)
  EFSA_washoff_2017["Winter oilseed rape", ] <-
    c(NA, 0.1, rep(0.4, 2), rep(0.55, 5), 0.3)
  EFSA_washoff_2017["Tomatoes", ] <-
    c(NA, 0.55, rep(0.75, 2), rep(0.7, 5), 0.35)
  EFSA_washoff_2017["Spring cereals", ] <-
    c(NA, 0.4, 0.5, 0.5, rep(0.65, 3), rep(0.65, 2), 0.55)
  EFSA_washoff_2017["Winter cereals", ] <-
    c(NA, 0.1, 0.4, 0.6, rep(0.55, 3), rep(0.6, 2), 0.4)
  save(EFSA_washoff_2017,
    file = "../data/EFSA_washoff_2017.RData")
}
EFSA_washoff_2017
}

Contact - Imprint