-
Notifications
You must be signed in to change notification settings - Fork 0
/
run_idwy.R
237 lines (201 loc) · 8.59 KB
/
run_idwy.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
library(stationsweRegression)
# constants ----
DATEFILE = 'ucrb_2018dates.csv'
RUNNAME = 'idwy'
SNOW_VAR = 'fsca'#rcn or fsca
PILLOW_NETWORK = 'snotel' #cdec (for CA) or snotel (for other locations)
PHV_VARS = ~lon+lat+dem+eastness+northness+regionaleastness+regionalnorthness+regionalzness+zness+dist2coast+dist2contdiv #don't forget the +'s and ~
EXTENT_NORTH = 49
EXTENT_EAST = -106.15
EXTENT_SOUTH = 42
EXTENT_WEST = -117.25
RESO = 15/3600
# input setup ----
PATH_MODSCAGDOWNLOAD='modscagdownloads/NRT'#always need this. path should point 1 level above /yr/doy/*.tif
PATH_RCNDOWNLOAD=''#don't need this if predicting with fsca instead of rcn
PATH_PHV=paste0(RUNNAME,'/data/phv')
# output directories ----
PATH_SNOTEL=file.path(RUNNAME,'data/snoteldownloads')
PATH_FSCA=file.path(RUNNAME,'data/fsca')
PATH_OUTPUT=file.path(RUNNAME,'output/w_obscuredstations')
PATH_MAPS=file.path(PATH_OUTPUT,'swe_fsca_sidexside')
PATH_XVAL=file.path(PATH_OUTPUT,'crossval_stats_dates')
# set up folders ----
dir.create(path=PATH_SNOTEL,rec=TRUE, showWarnings = F)
dir.create(path=PATH_FSCA,rec=TRUE, showWarnings = F)
dir.create(path=PATH_MAPS,rec=TRUE, showWarnings = F)
dir.create(path=PATH_XVAL,rec=TRUE, showWarnings = F)
# import watermask ----
watermask <- load_watermask(RUNNAME)
# get station metadata ----
# filter stations by bounding box using latitude and longitude.
station_locations <- get_inv(PILLOW_NETWORK) %>%
filter(Latitude>=EXTENT_SOUTH, Latitude<=EXTENT_NORTH, Longitude<= EXTENT_EAST, Longitude>= EXTENT_WEST)
# create a spatial object of the locations ----
snotellocs=as.data.frame(station_locations)
coordinates(snotellocs)= ~Longitude+Latitude
coordnames(snotellocs)=c('x','y')
proj4string(snotellocs)='+proj=longlat +datum=WGS84'
# snotellocs.usgs=spTransform(snotellocs,'+init=epsg:5070')
# get phv variables ----
# get phv variables for entire domain from /data/phv folder and convert to a dataframe
# see use_package and Make_PHV_Inputs vignette
phvfilenames=dir(PATH_PHV,pattern='.tif$',full.names=TRUE)
phvstack=stack(phvfilenames)
names(phvstack) <- sapply(strsplit(names(phvstack),'_'),'[',2)
phvstack_scaled <- scale(phvstack)
ucophv <- as.data.frame(phvstack_scaled)
# extract the phv variable values for the station locations ----
phvsnotel=raster::extract(phvstack_scaled,snotellocs,sp=T)
phvsnotel=phvsnotel %>%
as.data.frame() %>%
tbl_df %>%
mutate_if(is.factor,as.character) %>%
dplyr::select(Site_ID,site_name,dem:zness)
# import list of dates to simulate ----
whichdates <- import_dates(DATEFILE) %>% arrange(dte)
# View(whichdates)
# run estimate ----
# iterate through each date in the datefile to estimate the distribution of SWE
irow=3
for(irow in nrow(whichdates):1){#simulate in reverse will download less data
# setup the date variables
simdate=whichdates$dte[irow]
yr=strftime(simdate,'%Y')
doy=strftime(simdate,'%j')
mth=strftime(simdate,'%m')
dy=strftime(simdate,'%d')
datestr=paste0(yr,mth,dy)
print(simdate)
# this checks for a map output that has swe and fsca side by side. remove this file if you want to make a new swe estimate
mapfn=file.path(PATH_MAPS,paste0('phv',SNOW_VAR,'_maps_',yr,mth,dy,'.png'))
fe.logical=file.exists(mapfn)
if(fe.logical) {
print(paste0('map exists in ', PATH_MAPS,'. skipping.'))
next
}
## download station swe data for the year of simulation date and merge with station locations ----
station_data=get_stationswe_data(station_locations,PILLOW_NETWORK)
## get historical modscag image ----
# get historical modscag image or use archived modscag images. see 'use_package' vignette
simfsca <- get_modscag_data(doy,yr,'NRT',PATH_FSCA,RESO,EXTENT_WEST,EXTENT_EAST,EXTENT_SOUTH,EXTENT_NORTH)
# Make sure fsca was properly retrieved!
# plot(simfsca,zlim=c(0,100))
## subset snotel data for simulation date ----
snoteltoday <-
station_data %>%
filter(!is.na(Longitude),!is.na(Latitude)) %>%
dplyr::filter_(~dte == simdate) %>%
dplyr::filter(!is.na(swe)) %>% #i think files get downloaded with no data so they stay in the joined files. need to remove these for the statistical model
mutate(
yr=strftime(dte,'%Y'),
doy=strftime(dte,'%j'),
yrdoy=strftime(dte,'%Y%j'),
dy=strftime(dte,'%d'))
## save current snotel as spatial vector file ----
snoteltoday.sp=data.frame(snoteltoday)
sp::coordinates(snoteltoday.sp)=~Longitude+Latitude
proj4string(snoteltoday.sp)='+proj=longlat +datum=WGS84'
snotelfilename=paste0(PATH_OUTPUT,'/pillow-',strftime(simdate,'%d%b%Y'),'.gpkg')
if(!file.exists(snotelfilename)){
writeOGR(snoteltoday.sp,dsn=snotelfilename,layer='pillow_swe',driver='GPKG',overwrite_layer=TRUE)
}
## setup the modeling data ----
modelingdFs <- setup_modeldata(snoteltoday.sp,phvsnotel,simfsca,SNOW_VAR,PHV_VARS,PATH_RCNDOWNLOAD)
doidata=modelingdFs[[1]]
predictdF=modelingdFs[[2]]
myformula=modelingdFs[[3]]
## fit glmnet model ----
mdl <- gnet_phvfsca(doidata,myformula)
## predict on swe for domain and mask with fsca and watermask ----
yhat=predict(mdl,predictdF,na.action=na.pass)
simyhat=simfsca
values(simyhat) <- yhat
simyhat <- mask(simyhat,watermask,maskvalue=1,updatevalue=NA)
simyhat <- mask(simyhat,simfsca)
simyhat <- mask(simyhat,simfsca,maskvalue=235,updatevalue=235)
simyhat <- mask(simyhat,simfsca,maskvalue=250,updatevalue=250)
simyhat <- mask(simyhat,simfsca,maskvalue=0,updatevalue=0)
## save prediction to file ----
outfile=paste0('phv',SNOW_VAR,'_',yr,mth,dy,'.tif')
writeRaster(simyhat,file.path(PATH_OUTPUT,outfile),NAflag=-99,overwrite=T)
## create map of fsca and swe and save as image ----
gf <-
rasterVis::gplot(simfsca)+
geom_raster(aes(x,y,fill=value))+
coord_equal(expand=F)+
scale_fill_distiller('fSCA',palette='YlGnBu',limits=c(0,100))+
theme_cowplot(font_size=14)+
theme(axis.line.x=element_line(color=NA),
axis.line.y=element_line(color=NA))
maxswe=max(simyhat[simyhat<200])
gs <-
rasterVis::gplot(simyhat)+
geom_raster(aes(x,y,fill=value))+
coord_equal(expand=F)+
scale_fill_distiller('SWE [m]',palette='PuBu',limits=c(0,maxswe),direction = -1)+
theme_cowplot(font_size=14)+
theme(axis.line.x=element_line(color=NA),
axis.line.y=element_line(color=NA))
pg <- cowplot::plot_grid(gf,gs,nrow=2,align='hv')
save_plot(plot=pg,filename=paste0(PATH_MAPS,'/phv',SNOW_VAR,'_maps_',yr,mth,dy,'.png'),base_height = 6)
## save coefficients from model and write to file ----
coef_dF <-
as.data.frame(as.matrix((coef(mdl)))) %>%
mutate(predictor=rownames(.)) %>%
setNames(c('coefficient','predictor'))
write_tsv(format(coef_dF,sci=FALSE),
file=paste0(PATH_OUTPUT,'/phv',SNOW_VAR,'_coefs_',datestr,'.txt')
)
## cross validation statistics ----
print(' - Computing crossvalidation statistics...')
allmdls <-
doidata %>%
crossv_mc(.,n=30,test=0.1) %>%
mutate(
dte=datestr,
phvfsca_obj_glmmdl=map(train,gnet_phvfsca,myformula),
phvfsca_r2_glmmdl=map2_dbl(phvfsca_obj_glmmdl,test,myr2),
phvfsca_pctmae_glmmdl=map2_dbl(phvfsca_obj_glmmdl,test,mypctmae)
)
# View(allmdls)
stat_r2 <-
allmdls %>%
group_by(dte) %>%
summarise(
avg_r2=mean(phvfsca_r2_glmmdl,na.rm=T),
sd_r2=sd(phvfsca_r2_glmmdl,na.rm=T),
uci_r2=avg_r2+1.96*sd_r2/sqrt(n()),
lci_r2=avg_r2-1.96*sd_r2/sqrt(n())
)
write_tsv(stationsweRegression::format_numeric(stat_r2,sci=FALSE),
file=file.path(PATH_XVAL,paste0('phv',SNOW_VAR,'_r2_',datestr,'.txt')))
stat_pctmae <-
allmdls %>%
group_by(dte) %>%
summarise(
avg_pctmae=mean(phvfsca_pctmae_glmmdl,na.rm=T),
sd_pctmae=sd(phvfsca_pctmae_glmmdl,na.rm=T),
uci_pctmae=avg_pctmae+1.96*sd_pctmae/sqrt(n()),
lci_pctmae=avg_pctmae-1.96*sd_pctmae/sqrt(n())
)
write_tsv(stationsweRegression::format_numeric(stat_pctmae,sci=FALSE),
file=file.path(PATH_XVAL,paste0('phv',SNOW_VAR,'_pctmae_',datestr,'.txt')))
}
# combine crossvalidation statistics from each date into a single file ----
search_str=paste0('^phv',SNOW_VAR,'_r2*.txt$')
r2_fns <- dir(PATH_XVAL,glob2rx(search_str),full.names = TRUE)
r2_df <- suppressMessages(
map_df(.x=r2_fns,.f=read_tsv)
)
write_tsv(stationsweRegression::format_numeric(r2_df,sci=FALSE),
file=file.path(PATH_OUTPUT,paste0('phv',SNOW_VAR,'_r2_crossval.txt')))
# file.remove(r2_fns) #don't remove individual files. can combine with new sim runs another time
search_str=paste0('^phv',SNOW_VAR,'_pctmae*.txt$')
pctmae_fns <- dir(PATH_XVAL,glob2rx(search_str),full.names = TRUE)
pctmae_df <- suppressMessages(
map_df(.x=pctmae_fns,.f=read_tsv)
)
write_tsv(stationsweRegression::format_numeric(pctmae_df,sci=FALSE),
file=file.path(PATH_OUTPUT,paste0('phv',SNOW_VAR,'_pctmae_crossval.txt')))
# file.remove(pctmae_fns) #don't remove individual files. can combine with new sim runs another time