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
|
#' FOCUS PELMO crop names
#'
#' A named character vector with the crop names used in the PELMO 5.5.3 GUI.
#' For the names, three letter codes were constructed by generally taking the
#' first three letters in lower case. Only when there is an expression in
#' parentheses, the first letter of this expression becomes the first letter
#' in the three letter code, i.e. 'Peas (animals)' has the code \code{ape}.
#'
#' @docType data
#' @export
#' @examples
#' print(FOCUS_PELMO_crops)
FOCUS_PELMO_crops = c(
app = "Apples",
gra = "Grass and alfalfa",
pot = "Potatoes",
sug = "Sugar beets",
win = "Winter cereals",
fbe = "Beans (field)",
vbe = "Beans (vegetables)",
bus = "Bushberries",
cab = "Cabbage",
car = "Carrots",
cit = "Citrus",
cot = "Cotton",
lin = "Linseed",
mai = "Maize",
soi = "Oil seed rape (summer)",
woi = "Oil seed rape (winter)",
oni = "Onions",
ape = "Peas (animals)",
soy = "Soybeans",
spr = "Spring cereals",
str = "Strawberries",
sun = "Sunflower",
tob = "Tobacco",
tom = "Tomatoes",
vin = "Vines")
#' FOCUS PELMO crop acronyms used for naming sceneario files
#'
#' A named character vector with the crop acronyms used in FOCUS PELMO 5.5.3
#' for naming the .sze files located in the FOCUS directory. The crop acronyms
#' in the file names are sometimes capitalized, sometimes not. The scenario
#' files used for Beans (field) and Beans (vegetable) are the same.
#'
#' @docType data
#' @export
#' @examples
#' print(FOCUS_PELMO_crop_sze_names)
FOCUS_PELMO_crop_sze_names = c(
app = "apples",
gra = "grass",
pot = "potato",
sug = "sbeets",
win = "wcerea",
fbe = "beans",
vbe = "beans", # Same sze as for fbe is used, with 'irrigation' which has no effect on the run
bus = "bushb",
cab = "cabbag",
car = "carrot",
cit = "citrus",
cot = "cotton",
lin = "linse",
mai = "maize",
soi = "rapesu",
woi = "rapewi",
oni = "onions",
ape = "peas",
soy = "soyb",
spr = "scerea",
str = "strawb",
sun = "sunflo",
tob = "tobacc",
tom = "tomato",
vin = "vines")
#' Location codes in FOCUS PELMO
#'
#' A named character vector of one letter location codes used in FOCUS PELMO,
#' indexed by three letter acronyms.
#' @docType data
#' @export
#' @examples
#' print(FOCUS_PELMO_location_codes)
FOCUS_PELMO_location_codes = c(
Cha = "C", Ham = "H", Jok = "J",
Kre = "K", Oke = "N", Pia = "P",
Por = "O", Sev = "S", Thi = "T")
|