This function will store your cache_dir
path on your local machine and
would load it for future sessions. Type Sys.getenv("CATASTROESP_CACHE_DIR")
to find your cached path.
Alternatively, you can store the cache_dir
manually with the following
options:
Run
Sys.setenv(CATASTROESP_CACHE_DIR = "cache_dir")
. You would need to run this command on each session (Similar toinstall = FALSE
).Write this line on your .Renviron file:
CATASTROESP_CACHE_DIR = "value_for_cache_dir"
(same behavior thaninstall = TRUE
). This would store yourcache_dir
permanently.
Arguments
- cache_dir
A path to a cache directory. On missing value the function would store the cached files on a temporary dir (See
base::tempdir()
).- overwrite
If this is set to
TRUE
, it will overwrite an existingCATASTROESP_CACHE_DIR
that you already have in local machine.- install
if
TRUE
, will install the key in your local machine for use in future sessions. Defaults toFALSE.
Ifcache_dir
isFALSE
this parameter is set toFALSE
automatically.- verbose
Logical, displays information. Useful for debugging, default is
FALSE
.
About caching
Sometimes cached files may be corrupt. On that case, try re-downloading
the data setting update_cache = TRUE
.
If you experience any problem on download, try to download the
corresponding file by any other method and save it on your
cache_dir
. Use the option verbose = TRUE
for debugging the API query.
See also
Other cache utilities:
catr_clear_cache()
Examples
# Don't run this! It would modify your current state
# \dontrun{
catr_set_cache_dir(verbose = TRUE)
#> Using a temporary cache dir. Set 'cache_dir' to a value for store permanently
#> CatastRo cache dir is: C:\Users\RUNNER~1\AppData\Local\Temp\Rtmp2xaTjQ/CatastRo
# }
Sys.getenv("CATASTROESP_CACHE_DIR")
#> [1] "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\Rtmp2xaTjQ/CatastRo"