Type: Package
Title: Meta-Package for Thematic Mapping with 'tmap'
Version: 0.1.0
Description: Attaches a set of packages commonly used for spatial plotting with 'tmap'. It includes 'tmap' and its extensions ('tmap.glyphs', 'tmap.networks', 'tmap.cartogram', 'tmap.mapgl'), as well as supporting spatial data packages ('sf', 'stars', 'terra') and 'cols4all' for exploring color palettes. The collection is designed for thematic mapping workflows and does not include the full set of packages from the R-spatial ecosystem.
Depends: R (≥ 4.1)
Imports: tmap (≥ 4.2), tmap.glyphs, tmap.networks, tmap.cartogram, tmap.mapgl, sf, stars, terra, cols4all, cli, crayon
License: GPL-3
Encoding: UTF-8
RoxygenNote: 7.3.3
NeedsCompilation: no
Packaged: 2025-10-09 15:24:09 UTC; mtes
Author: Martijn Tennekes [aut, cre], Robin Lovelace [ctb]
Maintainer: Martijn Tennekes <mtennekes@gmail.com>
Repository: CRAN
Date/Publication: 2025-10-16 11:40:02 UTC

tmapverse Meta-Package for Thematic Mapping

Description

The tmapverse package attaches a set of packages that are commonly used for spatial plotting with tmap. It includes tmap and its extensions (tmap.glyphs, tmap.networks, tmap.cartogram), as well as supporting spatial data packages (sf, stars, terra), and cols4all for exploring color palettes. The package is intended for use in thematic mapping workflows and does not include the full set of packages from the R-spatial ecosystem.

Author(s)

Maintainer: Martijn Tennekes mtennekes@gmail.com

Other contributors:


List all packages in the tmapverse

Description

List all packages in the tmapverse. The function tmapverse_packages will return a character vector of packages. The function tmapverse_packages_versions will also return the corresponding versions and those of the latest versions available in the specified repository.

Usage

tmapverse_packages(include_deps = FALSE, recursive = FALSE)

tmapverse_packages_versions(
  include_deps = FALSE,
  recursive = FALSE,
  repos = getOption("repos")
)

Arguments

include_deps

Include dependencies?

recursive

If include_deps, should nested dependencies also be included?

repos

repository

Value

vector of package names ( tmapverse_packages) or a data.frame of version information (tmapverse_packages_versions)

Examples

tmapverse_packages()
tmapverse_packages(include_deps = TRUE)
tmapverse_packages(include_deps = TRUE, recursive = TRUE)

tmapverse_packages_versions()
tmapverse_packages_versions(include_deps = TRUE)