Jakub
Jakub
```r # remotes::install_github("r-tmap/tmap") library(tmap) library(terra) tmap_mode("view") srtm = rast(system.file("raster/srtm.tif", package = "spDataLarge")) tm_shape(srtm) + tm_raster() ``` 
Hi @edzer -- the `st_buffer()` with `singleSide = TRUE` works as expected on an example from https://postgis.net/docs/ST_Buffer.html, but differently on actual data. Is this an expected behavior? ``` r library(sf)...
Quarto
Dear @rsbivand -- I propose adding a new section to the task view "Machine learning of spatial data". It is based on the work we've done for the FOSSGIS 2025...
I am currently teaching a course on spatial data analysis in R, and as a part of this course I've been showing how to use qgisprocess. However, two of the...
See https://grass.osgeo.org/news/2025_04_29_grass_branding_update/
I've tried to use `component.position` of `tm_layout` to place all of the components in the same place -- but it seems not to work. Reprex: ``` r library(tmap) data("land") tm_shape(land[1,])...