Get a list of all the modules available on the github repo.
GetModuleList(type = c("all", "occurrence", "covariate", "process", "model", "output"), renew = FALSE)
type | The subset of zoon modules you want to return. Defaults to 'all', but you can select any of the zoon workflow steps: 'occurrence', 'covariate', 'process', 'model', or 'output'. |
---|---|
renew | Download from github even if we already have a module list. |
A list with all module names.
This function will only work on a platform that supports the
method 'libcurl' in the function url. This can be tested using the function
capabilities
(see example).
# NOT RUN { # GetModuleList requires libcurl to be supported if(capabilities('libcurl')) GetModuleList() # }