diff --git a/figures/create_admin_barplot-1.pdf b/figures/create_admin_barplot-1.pdf deleted file mode 100644 index 0d3f695..0000000 Binary files a/figures/create_admin_barplot-1.pdf and /dev/null differ diff --git a/figures/create_choropleth_others-1.pdf b/figures/create_choropleth_others-1.pdf deleted file mode 100644 index 9afa509..0000000 Binary files a/figures/create_choropleth_others-1.pdf and /dev/null differ diff --git a/figures/create_choropleth_others-2.pdf b/figures/create_choropleth_others-2.pdf deleted file mode 100644 index 5353591..0000000 Binary files a/figures/create_choropleth_others-2.pdf and /dev/null differ diff --git a/figures/create_choropleth_others-3.pdf b/figures/create_choropleth_others-3.pdf deleted file mode 100644 index 571c016..0000000 Binary files a/figures/create_choropleth_others-3.pdf and /dev/null differ diff --git a/figures/create_simd_barplot-1.pdf b/figures/create_simd_barplot-1.pdf deleted file mode 100644 index 49ec99b..0000000 Binary files a/figures/create_simd_barplot-1.pdf and /dev/null differ diff --git a/figures/create_ur_barplot-1.pdf b/figures/create_ur_barplot-1.pdf deleted file mode 100644 index 07b93c4..0000000 Binary files a/figures/create_ur_barplot-1.pdf and /dev/null differ diff --git a/figures/create_urbanrural_ecs_chart_choropleth-1.pdf b/figures/create_urbanrural_ecs_chart_choropleth-1.pdf deleted file mode 100644 index 5c47104..0000000 Binary files a/figures/create_urbanrural_ecs_chart_choropleth-1.pdf and /dev/null differ diff --git a/figures/plot_admin_ecs_choropleth-1.pdf b/figures/plot_admin_ecs_choropleth-1.pdf deleted file mode 100644 index bfa05c2..0000000 Binary files a/figures/plot_admin_ecs_choropleth-1.pdf and /dev/null differ diff --git a/figures/plot_admin_ecs_normed_choropleth-1.pdf b/figures/plot_admin_ecs_normed_choropleth-1.pdf deleted file mode 100644 index b3393df..0000000 Binary files a/figures/plot_admin_ecs_normed_choropleth-1.pdf and /dev/null differ diff --git a/figures/plot_admin_ecs_normed_choropleth-2.pdf b/figures/plot_admin_ecs_normed_choropleth-2.pdf deleted file mode 100644 index dc0c585..0000000 Binary files a/figures/plot_admin_ecs_normed_choropleth-2.pdf and /dev/null differ diff --git a/mapping_draft.Rmd b/mapping_draft.Rmd index 0e8b8f7..ad28501 100644 --- a/mapping_draft.Rmd +++ b/mapping_draft.Rmd @@ -1123,7 +1123,8 @@ write.csv(forestinv_counts_merged, "derivedData/forestinv_counts_merged.csv", ro # Plot SSSI polygons (showing buffers) with ECS points (coloured by location) tm_shape(sssi_simplified) + - tm_fill(col = "green", alpha = 0.3, lwd=0.001) + + tm_fill(col = "green", alpha = 0.3, lwd=0.001, + title = "Sites of Special Scientific Interest and ECS Groups") + # tm_shape(sssi_buf50) + tm_borders(lwd=0.001) + # tm_shape(sssi_buf500) + tm_borders(lwd=0.001) tm_shape(admin_lev1_sf) + tm_borders(lwd=0.1) + @@ -1131,38 +1132,43 @@ tm_shape(sssi_simplified) + # tm_shape(ecs_sf_sssi50m) + tm_dots("yellow", size = .5, alpha = .4) + # tm_shape(ecs_sf_sssi500m) + tm_dots("orange", size = .5, alpha = .4) + # tm_shape(ecs_sf_sssibeyond500m) + tm_dots("red", size = .5, alpha = .4) - tm_scale_bar(position = c("left", "bottom")) + - tm_style("gray", title = "Figure 11") + - tm_credits("Data: UK Data Service (OGL) - & Jeremy H. Kidwell, - Graphic is CC-by-SA 4.0", - position = c("right", "bottom")) + - tm_layout(title = "Sites of Special Scientific Interest and ECS Groups", + tm_scale_bar(position = c("right", "bottom")) + + tm_style("gray") + + tm_credits("Data: UK Data Service (OGL)\n& Jeremy H. Kidwell,\nGraphic is CC-by-SA 4.0", + size = 0.4, + position = c("left", "bottom"), + just = c("left", "bottom"), + align = "left") + + tm_layout(asp = NA, frame = FALSE, - title.size = .7 + title = "Figure 11", + title.size = .7, + legend.title.size = .7 ) - ``` ```{r all_wilderness_ecs_plot, message=FALSE, warning=FALSE, fig.width=4, fig.cap="Figure 12"} # Plot map with all wilderness shapes on it -tm_shape(sssi_simplified) + tm_fill(col = "blue", alpha = 0.3, lwd=0.001) + +tm_shape(sssi_simplified) + tm_fill(col = "blue", alpha = 0.3, lwd=0.001, title = "Wilderness Areas") + tm_shape(wildland_simplified) + tm_fill(col = "green", alpha = 0.3, lwd=0.001) + tm_shape(forestinv_simplified) + tm_fill(col = "orange", alpha = 0.3, lwd=0.001) + tm_scale_bar(breaks = c(0, 100, 200), size = 1) + tm_shape(ecs_sf) + tm_dots("red", size = .05, alpha = .4) + - tm_scale_bar(position = c("left", "bottom")) + - tm_style("gray", title = "Figure 12") + - tm_credits("Data: UK Data Service (OGL) - & Jeremy H. Kidwell, - Graphic is CC-by-SA 4.0", - position = c("right", "bottom")) + - tm_layout(title = "Wilderness Areas", + tm_scale_bar(position = c("right", "bottom")) + + tm_style("gray") + + tm_credits("Data: UK Data Service (OGL)\n& Jeremy H. Kidwell,\nGraphic is CC-by-SA 4.0", + size = 0.4, + position = c("left", "bottom"), + just = c("left", "bottom"), + align = "left") + + tm_layout(asp = NA, frame = FALSE, - title.size = .7 + title = "Figure 12", + title.size = .7, + legend.title.size = .7 ) ```