Detailed, Zoomable Consultation Catchment Maps

Author

Adam Dennett

Current Catchments

Proposed Catchments

Both overlaid

Code
library(tmap)

tmap_mode("view")  # Ensure you're in plotting mode
ℹ tmap mode set to "view".
Code
tm_shape(optionZ) +
  tm_polygons(border.col = "red", border.alpha = 0.5, border.lwd = 2, alpha = 0) +
tm_shape(current) +
  tm_polygons(border.col = "black", border.alpha = 0.5, border.lwd = 2, alpha = 0) +
tm_shape(bh_sec_sch) +
  tm_dots(
    col = "black",
    border.lwd = 0,
    labels = "establishment_name"
  )

── tmap v3 code detected ───────────────────────────────────────────────────────
[v3->v4] `tm_polygons()`: use `fill_alpha` instead of `alpha`.[v3->v4] `tm_polygons()`: use `col_alpha` instead of `border.alpha`.[tm_polygons()] Argument `border.lwd` unknown.[v3->v4] `tm_polygons()`: use `fill_alpha` instead of `alpha`.[v3->v4] `tm_polygons()`: use `col_alpha` instead of `border.alpha`.[tm_polygons()] Argument `border.lwd` unknown.