Jakub
Jakub
@taozhou2020, you also need to update the palette of the main (not only the legend) -- I think that part should like something like: ``` tm_polygons("HPI", fill.legend = tm_legend_hide(), fill.scale...
This issue bit me again -- I think that the background should either: (a) work without the frame or (b) enable the frame in the background... ``` r library(sf) library(tmap)...
Related: https://github.com/r-tmap/tmap/issues/729
@mtennekes would it be possible to merge `tm_mv` and `tm_mv_shape_vars` into just one function that would react to either provided names or indices?
@mtennekes, what do you think about updating the names: - `tm_mv_dim` that uses a (stars) dimension - `tm_mv_lyr` that uses attribute/layer indices ?
Awesome! I think that this is much more intuitive. I checked the script, and have a few comments (reprex attached below): 1. The "complex stars" section returns a few identical...
Hi @mtennekes -- just to let you know, I am still getting warnings/errors after updating the packages from GitHub, see: ``` r # remotes::install_github("r-tmap/tmap") # remotes::install_github("r-tmap/tmap.glyphs") library(tmap) file = system.file("tif/L7_ETMs.tif",...
The problem is still here (but the error message is different). ``` r library(tmap) library(terra) multi_raster_file = system.file("raster/landsat.tif", package = "spDataLarge") multi_rast = rast(multi_raster_file) tm_shape(multi_rast) + tm_rgb() #> Error: palette...
From the geocompr point of view, I would say that the most important are: `tmap_save()`, `tmap_animation()`, and `tmap_add_legend()`. Then `tm_rgb()`, `tm_title()`/`tm_main_title()`, and `tm_xlab()`/`tm_ylab()`
@mtennekes `tmap_animation()` seems to be working fine. I also have a question about it. When using `pages = "year"`, the panel names are not included (see the attached code). Thus,...