generated from OxfordIHTM/ihtm-targets-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_targets.R
63 lines (34 loc) · 1.06 KB
/
_targets.R
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
################################################################################
#
# Overall targets workflow for PAGASA data processing and archiving
#
################################################################################
## Setup workflow using project-wide settings ----------------------------------
source("_targets_setup.R")
## Create targets and list targets objects -------------------------------------
### Cyclones targets ----
source("_targets_cyclones.R")
### Climate targets ----
source("_targets_climate.R")
### Dam targets ----
source("_targets_dam.R")
### Heat Index targets ----
source("_targets_heat.R")
### Forecasts targets ----
source("_targets_forecasts.R")
### Analysis targets
analysis_targets <- tar_plan(
)
### Output targets
output_targets <- tar_plan(
)
### Reporting targets
report_targets <- tar_plan(
)
### Deploy targets
deploy_targets <- tar_plan(
)
### Releases targets ----
source("_targets_releases.R")
## List targets ----------------------------------------------------------------
all_targets()