R/get_settings.R
get_settings_gee.Rd
Defines settings for settings for Google Earth Engine download
for a pre-defined set of "bundles" (c("modis_fpar",
"modis_evi", "modis_lai", "modis_gpp")
).
get_settings_gee(
bundle = "modis_fpar",
python_path = system("which python", intern = TRUE),
gee_path = ".",
data_path = ".",
method_interpol = "linear",
keep = FALSE,
overwrite_raw = FALSE,
overwrite_interpol = FALSE
)
A character string specifying which dataset (bundle)
to download. Defaults to "modis_fpar"
. Available are:
c("modis_fpar", "modis_evi", "modis_lai", "modis_gpp")
.
A character string specifying the local path to the python executable
A character string specifying the local path to the
gee_subseet
library.
Defaults to "."
(present working directory).
A character string specifying the path of where the data
should be downloaded to.
Defaults to "."
(present working directory).
A character string specifying which interpolation
method to use. Defaults to linear interpolation ("linear"
).
A logical specifying whether to keep all intermediate data
(before filtering, and before imputing mean seasonal cycle),
and all alternative interpolation results. Defaults to FALSE
.
A logical specifying whether raw data as downloaded
from GEE is to be overwritten. Defaults to FALSE
,
i.e. data is read from exisitng file if available.
A logical specifying whether processed
(interpolated) data, is to be overwritten. Defaults to FALSE
,
i.e. data is read from exisitng file if available.
A named list containing information required for download from Google Earth Engine.
if (FALSE) settings_gee <- get_settings_gee() # \dontrun{}