-
Notifications
You must be signed in to change notification settings - Fork 3
/
total-workflow.R
246 lines (174 loc) · 6.15 KB
/
total-workflow.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
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
## ------------------------------------------------------- ##
# Silica WG - Extract Drivers
## ------------------------------------------------------- ##
# Written by:
## Nick J Lyon
## Edited by Sidney A Bush 04/2024
# Revisions as of 4/2024:
## Added additional regions for each extract- file (evapo, greenup, npp, snowfrac)
# Purpose:
## Re-wrangle the 'artisanal' watersheds and re-extract all drivers
## Useful as a one-stop shop for updating driver data
## ------------------------------------------------------- ##
# Housekeeping -----
## ------------------------------------------------------- ##
# Make sure googledrive library is loaded
library(googledrive)
# Authorize Google Drive
## Without this done first `source`ing any of these scripts will fail
googledrive::drive_auth()
## ------------------------------------------------------- ##
# Wrangle Watersheds -----
## ------------------------------------------------------- ##
# NOTE: Watershed shapefiles must be manually downloaded from Drive and uploaded to Aurora
## No automated way of accomplishing this task (unfortunately)
# Reupdate the single shapefile with all watersheds
source(file = "wrangle-watersheds.R", echo = T)
## ------------------------------------------------------- ##
# Extract Drivers ----
## ------------------------------------------------------- ##
# NOTE: Drivers with "_partial-extracted" folders must have those CSVs deleted
## This script handles that automatically just note that they are deleted
# NOTE no. 2: Arranged from least to most computing time
## ------------------------- ##
# Soil -----
## ------------------------- ##
# Re-extract (global, static)
source(file = "extract-soil.R", echo = T)
# Do garbage collection to free up memory
gc()
## ------------------------- ##
# Land Cover -----
## ------------------------- ##
# Re-extract (global, static)
source(file = "extract-landcover.R", echo = T)
# Garbage collection
gc()
## ------------------------- ##
# Lithology -----
## ------------------------- ##
# Re-extract (global, static)
source(file = "extract-lithology.R", echo = T)
# Garbage collection
gc()
## ------------------------- ##
# Elevation -----
## ------------------------- ##
# Re-extract (global, static)
source(file = "extract-elevation.R", echo = T)
# Garbage collection
gc()
## ------------------------- ##
# Permafrost -----
## ------------------------- ##
# Re-extract (global, static(?))
source(file = "extract-permafrost.R", echo = T)
# Garbage collection
gc()
## ------------------------- ##
# Precipitation -----
## ------------------------- ##
# Re-extract (global, monthly [x43 years])
source(file = "extract-precip.R", echo = T)
# Garbage collection
gc()
## ------------------------- ##
# Air Temperature -----
## ------------------------- ##
# Re-extract (global, monthly [x74 years])
source(file = "extract-airtemp.R", echo = T)
# Garbage collection
gc()
## ------------------------- ##
# NPP -----
## ------------------------- ##
# Net Primary Productivity (bounding boxes [x8], annual [x20 years])
# Focal driver *folder* name
focal <- "raw-npp-v061"
# Define folder path
path <- file.path('/', "home", "shares", "lter-si", "si-watershed-extract",
"raw-driver-data", focal, "_partial-extracted")
# Identify partially extracted CSVs from previous run
partials <- dir(path = path)
# Delete them
for(file in sort(unique(partials))){
# Actual deletion step
unlink(x = file.path(path, file))
# Message
message("File '", file, "' deleted.") }
# Re-extract from clean slate
source(file = "extract-npp.R", echo = T)
# Garbage collection
gc()
## ------------------------- ##
# Green-Up Day -----
## ------------------------- ##
# (bounding boxes [x8], annual [x20 years], x2 "cycles" of green up)
# Focal driver *folder* name
focal <- "raw-greenup-v061"
# Define folder path
path <- file.path('/', "home", "shares", "lter-si", "si-watershed-extract",
"raw-driver-data", focal, "_partial-extracted")
# Identify partially extracted CSVs from previous run
partials <- dir(path = path)
# Delete them
for(file in sort(unique(partials))){
# Actual deletion step
unlink(x = file.path(path, file))
# Message
message("File '", file, "' deleted.") }
# Re-extract from clean slate
source(file = "extract-greenup.R", echo = T)
# Garbage collection
gc()
## ------------------------- ##
# ET -----
## ------------------------- ##
# Evapotranspiration (bounding boxes [x8], 8-day [x20 years])
# Focal driver *folder* name
focal <- "raw-evapo-v061"
# Define folder path
path <- file.path('/', "home", "shares", "lter-si", "si-watershed-extract",
"raw-driver-data", focal, "_partial-extracted")
# Identify partially extracted CSVs from previous run
partials <- dir(path = path)
# Delete them
for(file in sort(unique(partials))){
# Actual deletion step
unlink(x = file.path(path, file))
# Message
message("File '", file, "' deleted.") }
# Re-extract from clean slate
source(file = "extract-evapo.R", echo = T)
# Garbage collection
gc()
## ------------------------- ##
# Snow -----
## ------------------------- ##
# Snow Fraction (bounding boxes [x8], 8-day [x20 years])
# Focal driver *folder* name
focal <- "raw-snow-v061"
# Define folder path
path <- file.path('/', "home", "shares", "lter-si", "si-watershed-extract",
"raw-driver-data", focal, "_partial-extracted")
# Identify partially extracted CSVs from previous run
partials <- dir(path = path)
# Delete them
for(file in sort(unique(partials))){
# Actual deletion step
unlink(x = file.path(path, file))
# Message
message("File '", file, "' deleted.") }
# Re-extract from clean slate
source(file = "extract-snowfrac.R", echo = T)
# Garbage collection
gc()
## ------------------------------------------------------- ##
# Combine Drivers ----
## ------------------------------------------------------- ##
# Combine all extracted drivers
source(file = "combine-drivers.R", echo = T)
# Do garbage collection & clear environment
gc()
rm(list = ls())
# End ----