Jakub

Results 108 issues of Jakub

``` 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: [subset] no (valid) layer selected tm_shape(multi_rast[[3:1]]) + tm_rgb() #> Error: [subset] no...

bug
tmap_v4

``` r library(tmap) tmap_mode("plot") #> tmap mode set to 'plot' data(NLD_prov) tm_shape(NLD_prov) + tm_fill("name") + tm_scalebar(bg.color = "black") ``` ![](https://i.imgur.com/TkdxjAo.png)

bug
tmap_v4

![image](https://user-images.githubusercontent.com/3457131/227282875-9111a628-4ffc-44e1-94bc-b36b30b35ade.png) Source: https://twitter.com/profrichharris/status/1637481477242855424 Also: https://twitter.com/dev_333/status/1638426993485303808

Legends

``` r library(tmap) library(spData) tmap_mode("plot") #> tmap mode set to 'plot' tm_shape(nz) + tm_graticules() + tm_polygons() ``` ![](https://i.imgur.com/ewOtM08.png)

bug
tmap_v4

``` r library(tmap) library(spData) library(dplyr) library(sf) tmap_mode("plot") #> tmap mode set to 'plot' # prep data regions = aggregate(x = us_states[, "total_pop_15"], by = list(us_states$REGION), FUN = sum, na.rm =...

bug
tmap_v4

Related: https://github.com/r-spatial/mapview/issues/322 CC: @HannaMeyer

@rsbivand As we discussed last month, several shapefiles exist in the package (https://github.com/Nowosad/spData/tree/master/inst/shapes), that we may consider depreciating. However, I do not know how to do it properly (the depreciation...

A new function, `wq_prep()`, that creates a proper input depending on a given satellite and bands...

enhancement