R/metapackage_functions.R
sitrep_check_deps.RdChecks if all packages needed for the sitrep ecosystem are installed and loads properly. Useful for verifying offline readiness.
sitrep_check_deps(quiet = FALSE)Named logical vector indicating which packages are available. Names are package names, values are TRUE if available, FALSE otherwise.
# \donttest{
# Check what's missing before going offline
sitrep_check_deps()
#> Warning: no DISPLAY variable so Tk is not available
#> Registered S3 method overwritten by 'tsibble':
#> method from
#> as_tibble.grouped_df dplyr
#> All 46 sitrep ecosystem packages are available!
#> Ready for offline use.
# }