View source: R/fnc_write.R View source: R/fnc_reduce.R
fnc_write | R Documentation |
LWFBrook90 creates a lot of output files. In order to keep data storage to a minimum, both run_LWFB90
and run_multisite_LWFB90
provide an output_fun
- argument that can be used to reduce the output and directly write it to a database. This is what this function is made for.
LWFBrook90 creates a lot of output files. In order to keep data storage to a minimum, both run_LWFB90
and run_multisite_LWFB90
provide an output_fun
- argument that can be used to reduce the output and directly write it. This is what this function is made for. Since v.0.5.0 LWFBrook90R changed the output/default settings.
fnc_write
reduces and aggregates all columns returned by run_LWFB90
(see help page).
fnc_write_agg
enables an even more detailed selection of drought indices. See detail section for a full list. Because many indices are calculated, this function will be significantly slower, so check, if you can get the necessary information from the standard list of output variables.
Both functions write .rds files with the desired output for each point. fnc_write_to_sql
can be used to convert these files into a SQLite-DB.
This "step-in-between" is necessary because SQLite does not support parallel writing. Processed can be all output-values listed in run_LWFB90
.
fnc_write(
x,
aggr_tp,
out_tables,
col_select_outputs = NA,
col_select_layer = NA,
depths = NA,
dir_name = NA,
soil_nm
)
fnc_write(
x,
aggr_tp,
out_tables,
col_select_outputs = NA,
col_select_layer = NA,
depths = NA,
dir_name = NA,
soil_nm
)
x |
one of the intermediate products of |
aggr_tp |
a string containing the desired aggregation time period. Can be |
out_tables |
which tables of the |
col_select_outputs |
a string containing the desired columns from the "outputs"-outputs-list of |
col_select_layer |
a string containing the desired columns from the "layer"-outputs-list of |
depths |
dephts for which layer-discrete results shall be processed. Must be a vector of depths in cm (i.e. |
dir_name |
directory for tmp files, if |
soil_nm |
name of the modelled site. If the function is used in |
layercols |
a sting containing the desired output products. Full list of possible output columns can be find on the help page of |
dailycols |
same as layercols but for daily output. For possible options see |
db_name |
name and file path of the SQL-database |
Returns the desired output to the database directly.
Returns the desired output to .rds files, or, the console
IT IS HIGHLY RECOMMENDED TO MAKE A SUBSELECTION, OR THERE WILL BE A LOT OF COLUMNS.
For a complete list of possible output types plus description, see the details sections of run_LWFB90
# create simple sample data:
param_b90 <- set_paramLWFB90()
options_b90 <- set_optionsLWFB90()
# Set start and end Dates for the simulation
options_b90$startdate <- as.Date("2003-01-01")
options_b90$enddate <- as.Date("2006-12-31")
# Derive soil hydraulic properties from soil physical properties
# using pedotransfer functions
soil <- cbind(slb1_soil, hydpar_wessolek_tab(slb1_soil$texture))
# Run LWF-Brook90
x <- run_LWFB90(
# run_LWFB90-function arguments:
options_b90 = options_b90,
param_b90 = param_b90,
climate = slb1_meteo,
soil = soil,
# keep it easy to read
rtrn_input = F,
rtrn_output = F,
output_fun = fnc_write,
# fnc_write-function arguments:
aggr_tp = c("daily_monthly_vegper_yearly_complete"), # all aggregation options for demonstration purposes
out_tables = c("outputs_layer"), # all output sources for demonstration purposes
col_select_outputs = c("yr", "mo", "da", "doy", "stres", "relawat", "vrfln"), # subset from both mean and sum-aggregation
col_select_layer = c("yr", "mo", "da", "doy", "nl", "theta", "swati", "tran"), # subset from both mean and sum-aggregation
depths = c(10,30,600), # last one won't be calculated
dir_name = NA, # return to console
soil_nm = "test_soil"
)
# multiple Plots:
# set soil-list
ls.soil <- fnc_get_soil(df.ids = test.ids.bds,
soil_option = "BZE",
PTF_to_use = "WESSOLEK",
add_BodenInfo = F)
ls.parms <- fnc_get_params(df.ids = test.ids.bds,
tree_species = "spruce")
ls.clim <- fnc_get_clim(df.ids = test.ids.bds,
mindate = as.Date("2002-01-01"),
maxdate = as.Date("2004-12-31"))
# run multiple points back to console:
results <- run_multisite_LWFB90(options_b90 = options_b90,
param_b90 = ls.parms,
soil = ls.soil,
climate = ls.clim,
all_combinations = F,
cores = 5,
rtrn_output = F,
rtrn_input = F,
output_fun = fnc_write,
aggr_tp = c("daily_monthly_vegper_yearly_complete"), # all aggregation options for demonstration purposes
out_tables = c("outputs_layer"), # all output sources for demonstration purposes
col_select_outputs = c("yr", "mo", "da", "doy", "stres", "relawat", "vrfln"), # subset from both mean and sum-aggregation
col_select_layer = c("yr", "mo", "da", "doy", "nl", "theta", "swati", "tran"), # subset from both mean and sum-aggregation
depths = c(10,30,600), # last one won't be calculated
dir_name= NA # write to ./tmp/
)
results[[1]]
# run multiple points and write output
run_multisite_LWFB90(options_b90 = options_b90,
param_b90 = ls.parms,
soil = ls.soil,
climate = ls.clim,
all_combinations = F,
cores = 5,
rtrn_output = F,
rtrn_input = F,
output_fun = fnc_write,
aggr_tp = c("daily_monthly_vegper_yearly_complete"), # all aggregation options for demonstration purposes
out_tables = c("outputs_layer"), # all output sources for demonstration purposes
col_select_outputs = c("yr", "mo", "da", "doy", "stres", "relawat", "vrfln"), # subset from both mean and sum-aggregation
col_select_layer = c("yr", "mo", "da", "doy", "nl", "theta", "swati", "tran"), # subset from both mean and sum-aggregation
depths = c(10,30,600), # last one won't be calculated
dir_name= "./tmp/" # write to ./tmp/
)
# delete example tmp file
unlink("./tmp/", recursive = T)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.