Jakub
Jakub
- different extents - different resolutions - different projections
- [ ] - https://github.com/Nowosad/motif/issues/31 - Find a quicker way to find unique values in stars.proxy - [ ] - https://github.com/Nowosad/motif/issues/14 - Add parallelization
@sjewo `cartogram_ncont` and `cartogram_dorling` works as expected; however there is some issue withe the `cartogram_cont` function. ``` r list.of.packages 2 105.91667 28.08333 1 #> 3 -111.25000 28.75000 1 #> 4...
https://github.com/geocompx/geocompr/blob/02f35553c88ed72cb35df1210c65292a3ae42707/index.Rmd#L220
``` r library(spData) library(tmap) # works tm_shape(nz) + tm_polygons("Median_income") + tm_layout(legend.position = c("left", "bottom")) ```  ``` r # fails tm_shape(nz) + tm_polygons("Median_income") + tm_layout(legend.position = c(0.02, 0.02)) #> Error...
Hi @mtennekes, would do you think about: 1. [x] Renaming some of the "step" files by adding `"helper"` in the filename, e.g., `step1_xx.R` -> `step1_helper_xx.R`? 2. [x] Moving the `tm_cartogram()`...
``` r library(sf) library(tmap) library(spData) world_map = tm_shape(spData::world) + tm_polygons() + tm_title(text = "Big Title World Map", bg.color = "red") world_map ``` 