mapping_environmental_action/mapping_draft-hpc_optimised...

1461 lines
99 KiB
Plaintext

---
title: "Mapping Environmental Action in Scotland"
abstract:
# thanks: "Replication files are available on the author's Github account (https://github.com/kidwellj/mapping_environmental_action). **Current version**: `r format(Sys.time(), '%B %d, %Y')`
style: jeremy1
author: "[Jeremy H. Kidwell](http://jeremykidwell.info)"
affiliation: University of Birmingham
institute: University of Birmingham
e-mail: "[j.kidwell@bham.ac.uk](mailto:j.kidwell@bham.ac.uk)"
date: "`r Sys.Date()`"
bibliography: biblio.bib
linkcolor: black
geometry: margin=1in
fontsize: 11pt
output:
html_document:
theme: readable
keep_md: true
code_folding: hide
self_contained: true
toc: true
toc_depth: 2
number_sections: true
fig_caption: true
fig_retina: 1
pdf_document:
toc: false
keep_tex: true
number_sections: true
fig_caption: true
citation_package: natbib
latex_engine: xelatex
always_allow_html: yes
---
```{r setup, include=FALSE}
# Note, this script has been written largely with RStudio on MacOS, but is compiled on
# an hpc cluster which runs Linux, so some tweaks below ensure smooth execution
# in both environments. Also, as above, the script is meant to output to both PDF and
# html_document knitr formats.
require(knitr) # used to knit RMarkdown format script into working documents in various formats
require(kableExtra) # used for markdown table formatting compatible with knitr
# note: some features of the below line are specific to html/pdf format and will need to be adapted pre-compile until dual outputs are working (see https://github.com/kidwellj/mapping_environmental_action/issues/2)
knitr::opts_chunk$set(fig.path='figures/', warning=FALSE, echo=FALSE, message=FALSE, dpi=300, fig.width=7)
```
```{r load_packages, message=FALSE, warning=FALSE, include=FALSE}
# Set up working machine independent working directory and environment
require(here) # used to keep working directory organised and portable
require(renv) # used to set up environment
require(usethis) # integrates git support for rStudio
# Set repository to be new standard, e.g. cloud server.
# For smooth execution on command-line knitr - this will avoid a dialogue box
# if packages are to be installed for below on first run
local({r <- getOption("repos")
r["CRAN"] <- "https://cloud.r-project.org"
options(repos=r)
})
require(RCurl) # used for fetching reproducible datasets
require(sf) # new simplefeature data class, supercedes sp in many ways
# See issue https://github.com/kidwellj/mapping_environmental_action/issues/3 for progress re: migration from sp()
require(sp) # needed for proj4string, deprecated by sf()
library(ragg) # better video device, more accurate and faster rendering, esp. on macos. Also should enable system fonts for display
library(tidyverse)
require(tmap) # using as an alternative to base r graphics and ggplot for geospatial plots
require(tmaptools) # for get_asp_ratio below
require(grid) # using for inset maps on tmap
require(broom) # required for tidying SPDF to data.frame for ggplot2
require(reshape2) # using for grouped bar plot
require(scales)
## Packages required for knitr output
## Packages used for features or issues relating to html_document knitr output
require(plotly) # allows for export of plots to dynamic web pages
require(gtable) # more powerful package for multi-plot layouts, not necessary for knitr
# Set up local workspace:
if (dir.exists("data") == FALSE) {
dir.create("data")
}
if (dir.exists("figures") == FALSE) {
dir.create("figures")
}
if (dir.exists("derivedData") == FALSE) {
dir.create("derivedData")
}
# Dependencies and environment related to PostGIS database access, used to filter datasets before loading in some instances
# require(sqldf) #
## Packages required for PostGIS database access
# Many thanks to Sébastien Rochette for documentation here: https://www.r-bloggers.com/interact-with-postgis-from-r/
# require(config) # used to access database connection credentials in config.yml file below
# library(DBI)
# library(odbc)
# library(RPostgres)
# library(rpostgis)
# library(dbplyr)
# # Setup PostGIS database connection
# dw <- config::get("datawarehouse")
#
# con <- dbConnect(odbc::odbc(),
# driver = dw$driver,
# database = dw$database,
# uid = dw$uid,
# pwd = dw$pwd,
# host = dw$server,
# port = 5432
# )
# Define Coordinate Reference Systems (CRS) for later use
# Note: I've used British National Grid (27000) in this paper, but have found that
# it is falling out of use in many cases, so will be defaulting to WGS84 in future
# data-sets and papers.
# Proj4 is also now deprecated in favour of WKT2, so I will be adapting code to use this more robust standard in the future. See here for more details: https://inbo.github.io/tutorials/tutorials/spatial_crs_coding/#set-the-crs-of-a-spatial-object-in-sp
# TODO: remove below as part of overall migration to sf()
# See issue https://github.com/kidwellj/mapping_environmental_action/issues/3 for progress re: migration from sp() and https://github.com/kidwellj/mapping_environmental_action/issues/4 for progress re: abandoning of Proj4 more broadly
wgs84 <- CRS(SRS_string = "EPSG:4326") # WGS 84 has EPSG code 4326, note: crs() requires sp() to get epsg data
bng <- CRS(SRS_string = "EPSG:27700") # BNG has EPSG code 4326
```
# Introduction[^15541312]
Until recently, environmentalism has been treated by governments and environmental charities as a largely secular concern. In spite of the well-developed tradition of "eco-theology" which began in earnest in the UK in the mid-twentieth century (and which has many precursors in previous centuries), third-sector groups and governments, particularly in Britain and Europe, have largely ignored religious groups as they have gone about their business crafting agendas for behaviour change, developing funding programmes, and developing platforms to mitigate ecological harm, motivate consumers and create regulation regimes. That this has changed is evidenced by the fact that several prominent non-religious environmental groups have commissioned studies and crafted outreach programmes to persons with a particular faith tradition or to "spiritual communities" including RSPB (2013) and the Sierra Club USA (2008).[^158261118] Further, since 2008, the Scottish Government has provided a significant portion of funding for the ecumenical charity, Eco-Congregation Scotland, which works to promote literacy on environmental issues in religious communities in Scotland and helps to certify congregations under their award programme. What is not well known, however, even by these religious environmental groups themselves, is whether or how their membership might be different from other environmental groups. This study represents an attempt to illuminate this new interest with some more concrete data about religious groups in Scotland and how they may differ from non-religious counterparts.
# Eco-Congregation Scotland: The Basics
```{r load_ecs_data, message=FALSE, warning=FALSE}
# read in Eco-Congregation Scotland data and-------------------
# ...turn it into a SimpleFeature---------------------
# TODO: update below to match new dataset once it has been uploaded to zenodo
# if (file.exists("data/ECS-GIS-Locations_3.0.geojson") == FALSE) {
# download.file("https://____.zip",
# destfile = "data/____.zip")
# unzip("data/____.zip", exdir = "data")
# }
ecs <- st_read("data/ECS-GIS-Locations_3.0.geojson")
# Write data to PostGIS database for later analysis, currently commented out for later integration
# st_write(ecs, dsn = con, layer = "ecs",
# overwrite = FALSE, append = FALSE)
```
There are `r length(ecs$name)` eco-congregations in Scotland. By some measurements, particularly in terms of individual sites and possibly also with regards to volunteers, this makes Eco-Congregation Scotland one of the largest environmental third-sector groups in Scotland.[^159141043]
In seeking to conduct GIS and statistical analysis of ECS, it is important to note that there some ways in which these sites are statistically opaque. Our research conducted through interviews at a sampling of sites and analysis of a variety of documents suggests that there is a high level of diversity both in terms of the number of those participating in environmental action and the types of action underway at specific sites. Work at a particular site can also ebb and flow over the course of time. Of course, as research into other forms of activism and secular environmental NGOs has shown, this is no different from any other third sector volunteer group. Variability is a regular feature of groups involved in activism and/or environmental concern.
For the sake of this analysis, we took each Eco-Congregation Scotland site to represent a point of analysis as if each specific site represented a community group which had "opted-in" on environmental concern. On this basis, in this section, in the tradition of human geography, we "map" environmental action among religious communities in Scotland a variety of ways. This is the first major geographical analysis of this kind conducted to date in Europe. We measure the frequency and location of ECS sites against a variety of standard geo-referenced statistical data sets, seeking to provide a statistical and geographically based assessment of the participation of religious groups in relation to the following:
- Location within Scotland
- Religious affiliation
- Relation to the Scottish Index of Multiple Deprivation (SIMD)
- Relation to the 8-Fold Scottish Government Urban-Rural Scale
- Proximity to "wilderness" (based on several different designations)
For the sake of comparison, we also measured the geographical footprint of two other forms of community group in Scotland, (1) Transition Towns (taking into account their recent merge with Scotland Communities Climate Action Network) and (2) member groups of the Development Trust Association Scotland ("DTAS"). These two groups provide a helpful basis for comparison as they are not centralised and thus have a significant geographical dispersion across Scotland. They also provide a useful comparison as transition is a (mostly) non-religious environmental movement, and community development trusts are not explicitly linked to environmental conservation (though this is often part of their remit), so we have a non-religious point of comparison in Transition and a non-environmental point of comparison with DTAS
# Technical Background
Analysis was conducted using QGIS 3.12 and R `r getRversion()`, and data-sets were generated in CSV, geopackage, and geojson format.[^15541313] To begin with, I assembled a data set consisting of x and y coordinates for each congregation in Scotland and collated this against a variety of other specific data. Coordinates were checked by matching UK postcodes of individual congregations against geo-referencing data in the Office for National Statistics postcode database. In certain instances a single "congregation" is actually a series of sites which have joined together under one administrative unit. In these cases, each site was treated as a separate data point if worship was held at that site at least once a month, but all joined sites shared a single unique identifier. As noted above, two other datasets were generated for the sake of comparative analysis.[^177171536] These included one similar Environmental Non-Governmental Organisation (ENGO) in Scotland (1) Transition Scotland (which includes Scotland Communities Climate Action Network);[^15541342] and another community-based NGO, Scottish Community Development Trusts.[^158261232] As this report will detail, these three overlap in certain instances both literally and in terms of their aims, but each also has a separate identity and footprint in Scotland. Finally, in order to normalise data, we utilised the PointX POI dataset which maintains a complete database of Places of Worship in Scotland.[^15541614]
# Background and History of Eco-Congregation Scotland
Eco-Congregation Scotland began a year before the official launch of Eco-Congregation England and Wales, in 1999, as part of an effort by Kippen Environment Centre (later renamed to Forth Environment Link, or "FEL") a charity devoted to environmental education in central Scotland[^158261210] to broaden the scope of its environmental outreach to churches in central Scotland.[^15826124] Initial funding was provided, through Kippen Environment Centre by way of a "sustainable action grant" (with funds drawn from a government landfill tax) through a government programme called Keep Scotland Beautiful (the Scottish cousin of Keep Britain Tidy). After this initial pilot project concluded, the Church of Scotland provided additional funding for the project in the form of staff time and office space. Additional funding a few years later from the Scottish Government helped subsidise the position of a business manager, and in 2011 the United Reformed Church contributed additional funding which subsidised the position of a full-time environmental chaplain for a 5-year term, bringing the total staff to five.
```{r calculate_ecs_by_year, message=FALSE, warning=FALSE}
# Tidy up date fields and convert to date data type
ecs$registration <- as.Date(ecs$registration, "%d/%m/%Y")
ecs$award1 <- as.Date(ecs$award1, "%d/%m/%Y")
ecs$award2 <- as.Date(ecs$award2, "%d/%m/%Y")
ecs$award3 <- as.Date(ecs$award3, "%d/%m/%Y")
ecs$award4 <- as.Date(ecs$award4, "%d/%m/%Y")
# TODO: add "R" to command in paragraph below once this is resolved, do search for all non 'r instances
ecs_complete_cases <- ecs[complete.cases(ecs$year_begun),]
```
The programme launched officially in 2001 at Dunblane Cathedral in Stirling and by 2005 the project had `r length(which(as.numeric(as.character(ecs$year_begun)) < 2006))` congregations registered to be a part of the programme and 25 which had completed the curriculum successfully and received an Eco-Congregation award. By 2011, the number of registrations had tripled to `r length(which(as.numeric(as.character(ecs$year_begun)) < 2012))` and the number of awarded congregations had quadrupled to `r length(which((ecs$award1 < "2012/01/01")))`. This process of taking registrations and using a tiered award or recognition scheme is common to many voluntary organisations. The ECS curriculum was developed in part by consulting the Eco-Congregation England and Wales materials which had been released just a year earlier in 1999, though it has been subsequently revised, particularly with a major redesign in 2010. In the USA, a number of similar groups take a similar approach including Earth Ministry (earthministry.org) and Green Faith (greenfaith.org).[^footnote1]
In the case of Eco-Congregation Scotland, congregations are invited to begin by "registering" their interest in the programme by completing a basic one-sided form. The next step requires the completion of an award application, which includes a facilitated curriculum called a "church check-up" and after an application is submitted, the site is visited and assessed by third-party volunteer assessors. Sites are invited to complete additional applications for further awards which are incremental (as is the application process). Transition communities, at least in the period reflected on their map, go through a similar process (though this does not involve the use of a supplied curriculum) by which they are marked first as "interested," become "active" and then gain "official" status.[^1554162]
# Representation by Regional Authorities (Council Areas) {.tabset}
```{r import_admin_data, message=FALSE, warning=FALSE, include=FALSE}
# read in polygon for Scottish admin boundaries
if (file.exists("data/scotland_ca_2010.shp") == FALSE) {
download.file("https://borders.ukdataservice.ac.uk/ukborders/easy_download/prebuilt/shape/Scotland_ca_2010.zip",
destfile = "data/Scotland_ca_2010.zip")
unzip("data/Scotland_ca_2010.zip", exdir = "data")
}
admin_lev1 <- st_read("data/scotland_ca_2010.shp")
# Create simplified version of geometry for visualisations, with a tolerance of 100m
admin_lev1_simplified <- st_simplify(admin_lev1, preserveTopology = FALSE, dTolerance = 100)
# compare memory usage of objects
round(c(object.size(admin_lev1), object.size(admin_lev1_simplified)) / 1024)
# Write to SQL database
# st_write(admin_lev1, dsn = con, layer = "admin_lev1",
# overwrite = FALSE, append = FALSE)
# read in polygon for intermediate admin boundary layers
if (file.exists("data/scotland_parlcon_2011.shp") == FALSE) {
download.file("http://census.edina.ac.uk/ukborders/easy_download/prebuilt/shape/Scotland_parlcon_2011.zip",
destfile = "data/Scotland_parlcon_2011.zip")
unzip("data/Scotland_parlcon_2011.zip", exdir = "data")
}
admin_lev2 <- st_read("data/scotland_parlcon_2011.shp")
# Create simplified version of geometry for visualisations, with a tolerance of 100m
admin_lev2_simplified <- st_simplify(admin_lev2, preserveTopology = FALSE, dTolerance = 100)
# compare memory usage of objects
round(c(object.size(admin_lev2), object.size(admin_lev2_simplified)) / 1024)
# Generate new sf shape using bounding box for central belt for map insets below
# Note: coordinates use BNG as CRS (EPSG: 27700)
scotland <- st_bbox(c(xmin = 5513.0000, xmax = 470332.0000,
ymin = 530249.0000, ymax = 1220301.5000),
crs = st_crs("+init=epsg:27700")) %>%
st_as_sfc()
centralbelt_region <- st_bbox(c(xmin = 234841, xmax = 346309,
ymin = 653542, ymax = 686722),
crs = st_crs("+init=epsg:27700")) %>%
st_as_sfc()
centralbelt_ratio <- get_asp_ratio(centralbelt_region)
scotland_ratio<- get_asp_ratio(scotland)
```
```{r import_groups_data, message=FALSE, warning=FALSE, include=FALSE}
# read in Transition Towns data and turn it into a SpatialPointsDataFrame
transition <- st_read("data/transition-scotland_2.3.geojson")
# read in pointX data and turn it into a SpatialPointsDataFrame
# TODO to add function above to parse out raw pointx file (or using OS local?)
pow_pointX <- st_read("data/pointx_201512_scotland_pow.geojson")
## read in Scottish Community Dev. trust data and turn it into a SpatialPointsDataFrame
dtas <- st_read("data/community-dev-trusts-2.6.geojson")
## read in permaculture data and turn it into a SpatialPointsDataFrame
permaculture <- st_read("data/permaculture_scot-0.8.geojson")
# subset point datasets for inset maps below
ecs_centralbelt <- st_intersection(ecs, centralbelt_region)
dtas_centralbelt <- st_intersection(dtas, centralbelt_region)
transition_centralbelt <- st_intersection(transition, centralbelt_region)
pow_centralbelt <- st_intersection(pow_pointX, centralbelt_region)
permaculture_centralbelt <- st_intersection(permaculture, centralbelt_region)
```
```{r process_admin_data}
# Augment existing dataframes to run calculations and add columns with point counts per polygon,
# percentages, and normalising data.
# Generate a table of frequencies for each set of points in admin_lev1
# calculate count of ECS for fields in admin and provide percentages
# Thanks to commenter for tip on sf() approach here at https://stackoverflow.com/questions/45314094/equivalent-of-poly-counts-to-count-lat-long-pairs-falling-inside-of-polygons-w#45337050
admin_lev1$ecs_count <- lengths(st_covers(admin_lev1, ecs))
admin_lev1$ecs_percent<- prop.table(admin_lev1$ecs_count)
# calculate count of places of worship in PointX db for fields in admin and provide percentages
admin_lev1$pow_count <- lengths(st_covers(admin_lev1, pow_pointX))
admin_lev1$pow_percent<- prop.table(admin_lev1$pow_count)
# calculate count of Transition for fields in admin and provide percentages
admin_lev1$transition_count <- lengths(st_covers(admin_lev1, transition))
admin_lev1$transition_percent<- prop.table(admin_lev1$transition_count)
# calculate count of dtas for fields in admin and provide percentages
admin_lev1$dtas_count <- lengths(st_covers(admin_lev1, dtas))
admin_lev1$dtas_percent<- prop.table(admin_lev1$dtas_count)
# calculate count of permaculture for fields in admin and provide percentages
admin_lev1$permaculture_count <- lengths(st_covers(admin_lev1, permaculture))
admin_lev1$permaculture_percent<- prop.table(admin_lev1$permaculture_count)
# run totals for intermediate boundaries level 2
# This code will generate a table of frequencies for each spatialpointsdataframe in admin_lev2
# calculate count of ECS for fields in admin_lev2 and provide percentages
admin_lev2$ecs_count <- lengths(st_covers(admin_lev2, ecs))
admin_lev2$ecs_percent<- prop.table(admin_lev2$ecs_count)
# calculate count of places of worship in PointX db for fields in admin_lev2 and provide percentages
admin_lev2$pow_count <- lengths(st_covers(admin_lev2, pow_pointX))
admin_lev2$pow_percent<- prop.table(admin_lev2$pow_count)
# calculate count of Transition for fields in admin_lev2 and provide percentages
admin_lev2$transition_count <- lengths(st_covers(admin_lev2, transition))
admin_lev2$transition_percent<- prop.table(admin_lev2$transition_count)
# calculate count of dtas for fields in admin_lev2 and provide percentages
admin_lev2$dtas_count <- lengths(st_covers(admin_lev2, dtas))
admin_lev2$dtas_percent<- prop.table(admin_lev2$dtas_count)
# calculate count of permaculture for fields in admin_lev2 and provide percentages
admin_lev2$permaculture_count <- lengths(st_covers(admin_lev2, permaculture))
admin_lev2$permaculture_percent<- prop.table(admin_lev2$permaculture_count)
# Import csv with population data for each level of administrative subdivision and join to spatialdataframe
# TODO - consider adapting to use ONS mid-year statistics: https://www.ons.gov.uk/peoplepopulationandcommunity/populationandmigration/populationestimates/datasets/populationestimatesforukenglandandwalesscotlandandnorthernireland
# Load population statistics for normalising data by population and merge with admin_lev1
admin_lev1_pop <- read.csv("./data/scotland_admin_2011pop.csv")
# TODO: sf() merge doesn't support by.x etc. operations, need to adapt
admin_lev1 <- merge(x=admin_lev1, y=admin_lev1_pop, by.x = "code", by.y = "code")
admin_lev1_merged <- merge(admin_lev1, admin_lev1_pop)
# Convert number stored as string with a comma to an integer
admin_lev1$X2011_pop <- admin_lev1$X2011_pop %>%
str_replace_all(",", "")
# Calculate counts as percentages of total for normalising below
admin_lev1$pop_percent <- prop.table(as.numeric(admin_lev1$X2011_pop))
admin_lev1$pow_percent <- prop.table(admin_lev1$pow_count)
# Normalise ecs_count using population figures (using ArcGIS method)
admin_lev1$ecs_count_popnorm <- admin_lev1$ecs_count * admin_lev1$pop_percent
# Normalise ecs_count using places of worship counts (using ArcGIS method)
admin_lev1$ecs_count_pownorm <- admin_lev1$ecs_count * admin_lev1$pow_percent
# Placeholder for England parish data for later implementation
# download.file("http://census.edina.ac.uk/ukborders/easy_download/prebuilt/shape/England_cp_1991.zip", destfile = "parishes/parishes-1991.zip")
# unzip("parishes/parishes-1991.zip", exdir = "parishes")
# parishes <- rgdal::readOGR(dsn = "parishes", "england_cp_1991")
# Preserve scale
admin_lev1$ecs_count_popnorm_scaled <- admin_lev1$ecs_count_popnorm*(sum(admin_lev1$ecs_count)/sum(admin_lev1$ecs_count_popnorm))
admin_lev1$ecs_count_pownorm_scaled <- admin_lev1$ecs_count_pownorm*(sum(admin_lev1$ecs_count)/sum(admin_lev1$ecs_count_pownorm))
# Load population statistics for normalising data by population on admin_lev2
# TODO: source this data file in a replicable way (e.g. zenodo)
admin_lev2_pop <- read.csv("./data/scotland_and_wales_const_scotland_2011pop.csv")
admin_lev2 <- merge(x=admin_lev2, y=admin_lev2_pop, by.x = "code", by.y = "CODE")
# Convert number stored as string with a comma to an integer (using data.zone data)
admin_lev2$Data.zone.Population <- as.numeric(gsub(",", "", admin_lev2$Data.zone.Population))
# Calculate counts as percentages of total for normalising below
admin_lev2$pop_percent <- prop.table(admin_lev2$Data.zone.Population)
admin_lev2$pow_percent <- prop.table(admin_lev2$pow_count)
# Normalise ecs_count using population figures (using ArcGIS method)
admin_lev2$ecs_count_popnorm <- admin_lev2$ecs_count * admin_lev2$pop_percent
# Normalise ecs_count using places of worship counts (using ArcGIS method)
admin_lev2$ecs_count_pownorm <- admin_lev2$ecs_count * admin_lev2$pow_percent
# Preserve scale
admin_lev2$ecs_count_popnorm_scaled <- admin_lev2$ecs_count_popnorm*(sum(admin_lev2$ecs_count)/sum(admin_lev2$ecs_count_popnorm))
admin_lev2$ecs_count_pownorm_scaled <- admin_lev2$ecs_count_pownorm*(sum(admin_lev2$ecs_count)/sum(admin_lev2$ecs_count_pownorm))
```
Perhaps the first important question to ask of these groups is, where are they? I calculated the spread of eco-congregations and transition groups across each of the 32 council areas in Scotland. Every council area in Scotland has at least one eco-congregation or transition group). The most are located in `r as.character(admin_lev1$NAME_2[which.max(admin_lev1$ecs_count)])`, with `r max(admin_lev1$ecs_count)`, whereas the mean among all the 32 council areas is `r mean(admin_lev1$ecs_count)`, with a median of `r median(admin_lev1$ecs_count)`, standard deviation of `r sd(admin_lev1$ecs_count)`, and interquartile range of `r IQR(admin_lev1$ecs_count)`. The following choropleth maps show the relative concentration of eco-congregations (indicated by yellow to red).
Though there are too few eco-congregations and transition groups for a numerically significant representation in any of the intermediate geographies, mapping the concentration of sites by agricultural parishes allows for a more granular visual and I include this for comparison sake.[^15571030]
## Eco-Congregation Scotland groups shown by concentration in administrative regions (NUTS3)
```{r 01_admin_ecs_choropleth, fig.width=4, fig.cap="Figure 1"}
# Note: for more information on EU administrative levels, see here: https://ec.europa.eu/eurostat/web/nuts/national-structures-eu
# Draw initial choropleth map of ECS concentration (using tmap and sf below by default)
# Revising re: CRS inset maps complete to here
tm_shape(admin_lev2) +
tm_fill(col = "ecs_count", palette = "Oranges", title = "Concentration of ECS groups") +
tm_borders(alpha=.5, lwd=0.1) +
tm_shape(admin_lev1_simplified) +
tm_borders(lwd=0.6) +
# TODO: Change title field "name" to match admin1
# also consider scaling text size using area # quick plot example:
# qtm(World, fill = "income_grp", text = "iso_a3", text.size = "AREA") # use "World$" to see the two attributes: income_grp and iso_a3, text.size= area: text is sized increasingly with coutry area size.
# tm_text("name", size=.2, shadow=TRUE, bg.color="white", bg.alpha=.25) +
# tm_shape(ecs) +
# tm_dots("red", size = .05, alpha = .4) +
# 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 = "Figure 1a",
title.size = .7,
legend.title.size = .7,
inner.margins = c(0.1, 0.1, 0.05, 0.05)
)
```
```{r 02_admin_ecs_normed_choropleth, fig.width=4, fig.show="hold", fig.cap="Figure 2"}
# Plot out first figure with normalised data:
tm_shape(admin_lev2) +
tm_fill(col = "ecs_count_pownorm_scaled", palette = "Oranges", n = 5, title = "Concentration of ECS groups, data normalised by places of worship") +
tm_borders(alpha=.5, lwd=0.1) +
tm_shape(admin_lev1_simplified) +
tm_borders(lwd=0.6) +
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,
title = "Figure 2a",
frame = FALSE,
title.size = .7,
legend.title.size = .7,
inner.margins = c(0.1, 0.1, 0.05, 0.05)
)
# Plot out second figure with normalised data:
tm_shape(admin_lev2) +
tm_fill(col = "ecs_count_popnorm_scaled", palette = "Oranges", n = 5,
title = "Concentration of ECS groups, data normalised by population density") +
tm_borders(alpha=.5, lwd=0.1) +
tm_shape(admin_lev1_simplified) +
tm_borders(lwd=0.6) +
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 = "Figure 2b",
title.size = .7,
legend.title.size = .7,
inner.margins = c(0.1, 0.1, 0.05, 0.05)
)
```
Given the way population and places of worship are unevenly distributed across Scotland it is important to represent data in terms of relative distribution. For this study, we attempted to "normalise" our data in two different ways, (1) as shown in Figure 2a above, by adjusting relative to the number of places of worship in each council region and (2) as shown by Figure 2b above, by taking population figures from the 2011 census (see data sheet in Appendix A).[^15914204] The latter of these two can yield particularly unexpected results. Thus, of the `r length(pow_pointX)` "places of worship" in Scotland, the highest concentration is actually the `r as.character(admin_lev1$NAME_2[which.max(admin_lev1$pow_count)])` region, with `r max(admin_lev1$pow_count)`, second is `r max( admin_lev1$pow_count[admin_lev1$pow_count!=max(admin_lev1$pow_count)] )` (`r as.character(admin_lev1$NAME_2[which.max( admin_lev1$pow_count[admin_lev1$pow_count!=max(admin_lev1$pow_count)])] )`). Rank of Council Areas by population and number of places of worship is also included in Appendix A.
```{r create_admin_proportions}
# Calculate factors by which ECS representation exceeds rep by population and total pow counts
admin_lev1$ecs_pop_factor <- ((admin_lev1$ecs_percent - admin_lev1$pop_percent) / admin_lev1$pop_percent)*2
admin_lev1$ecs_pow_factor <- ((admin_lev1$ecs_percent - admin_lev1$pow_percent) / admin_lev1$pow_percent)*2
admin_lev1$ecs_transition_factor <- ((admin_lev1$ecs_percent - admin_lev1$transition_percent) / admin_lev1$transition_percent)*2
admin_lev1$ecs_dtas_factor <- ((admin_lev1$ecs_percent - admin_lev1$dtas_percent) / admin_lev1$dtas_percent)*2
```
We can use this data to normalise our figures regarding Eco-Congregation Scotland communities and this draws the presence in Edinburgh of ECS communities into even sharper relief, as Edinburgh, though ranked second in terms of population and fifth in terms of places of worship, ranks first for the presence of all ECS congregations and awarded ECS congregations. However, taking population as the basis for normalisation first, we find that Edinburgh is far from the most prominent outlier. In trying to communicate this difference for a lay-audience, we have chosen to list this difference as a multiplier (i.e. there are 2.x times as many congregations as their share of population and an average figure of congregations might allow for) as this conveys the difference in a straight-forward way. Outliers where the disparity between their relative share of the total ECS footprint and their relative share of population is different by a positive ratio of more than double include the Orkney Islands (3.7 times more eco-congregations than their expected average share based on population), Argyll and Bute (`admin_lev1[CODE=S12000023]$ecs_pop_factor` 4.2x), Stirling (2.76x), and Perthshire and Kinross (2.18x). Interestingly, there are no outliers whose relative share of the total footprint of ECS is double or more in the negative direction (see Appendix A chart for full numbers).
Turning to the total of `r length(pow_pointX)` "places of worship" in Scotland, we find a slightly different picture of the relative concentration of Eco-Congregations in Scotland. In this case, the outliers are *TODO: add code here!*
Whereas our initial measurements indicated a prominent lead for Edinburgh, by normalising our data in this way we can highlight the stronger-than-expected presence of several others that might otherwise escape notice because they lie in a region with significantly lower population or numerically less places of worship. Taking the PointX data on "places of worship" in Scotland, we find a less dramatic picture, but also a slightly different one. The positive outliers include East Renfrewshire (3.4x) Edinburgh (2.9x), Stirling (2.2), West Lothian (1.9x) and Aberdeen (1.5x). Again, negative outliers are far less dramatic, with only Midlothian possessing a ratio of more than 100% negative difference from the number of "places of worship" at 1.5x *fewer*.
```{r 03_admin_barplot, fig.width=4, fig.cap="Figure 3"}
# comvert admin back to dataframe for analysis
admin.df <- data.frame(admin_lev1)
# Goal here is to generate a grouped bar plot; https://www.r-graph-gallery.com/48-grouped-barplot-with-ggplot2/
# Need to flatten admin_lev1 based on all the count columns and generate using ggplot
admin_gathered <- gather(data.frame(admin_lev1), key="group_type", value="number", ecs_count, transition_count, dtas_count, permaculture_count)
admin_barplot <-
ggplot(admin_gathered,
aes(fill=group_type, y=number, x=name)) +
geom_bar(position="dodge", stat="identity") +
coord_flip() +
labs(
title = "Figure 3",
subtitle ="Comparison of Groups by Administrative Region",
fill = "Groups") +
theme(
legend.position="bottom",
legend.title = element_blank(),
axis.text.x = element_blank()) +
scale_color_manual(labels = c("DTAS", "ECS", "Permaculture", "Transition"))
# TODO, need better export method now that tmap() and graphic device are fixed
pdf("figures/03_admin_barplot.pdf")
print(admin_barplot)
dev.off()
```
## Other environmental groups shown by concentration in administrative regions (NUTS)
```{r 04_choropleth_others, fig.width=4, fig.show="hold", fig.cap="Figure 4"}
# TODO: consider switching to two-dimensional kernel densities instead of dots as shown here: https://github.com/mtennekes/tmap/tree/master/demo/LondonCrimes
admin_lev2_scotland_ecs_plot <-
tm_shape(admin_lev2) +
tm_fill(col = "ecs_count", palette = "Oranges", n = 5, title = "Concentration of ECS groups") +
tm_borders(alpha=.5, lwd=0.1) +
tm_shape(admin_lev1_simplified) +
tm_borders(lwd=0.6) +
tm_shape(ecs) +
tm_dots("red", size = .02, alpha = .2) +
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 = "Figure 4a",
title.size = .7,
legend.title.size = .7,
inner.margins = c(0.1, 0.1, 0.05, 0.05),
outer.margins = c(0.2, 0.01, 0.01, 0.01)
)
# Build smaller central belt plot for inset:
admin_lev2_centralbelt <- st_crop(admin_lev2, centralbelt_region)
admin_lev2_centralbelt_ecs_plot <-
tm_shape(admin_lev2_centralbelt) +
tm_fill(col = "ecs_count", palette = "Oranges", n = 5) +
tm_shape(ecs_centralbelt) + tm_dots("red", size = .05, alpha = .4) +
tm_legend(show=FALSE)
# Stitch together maps using grid()
vp_admin_lev2_centralbelt_ecs_plot <- viewport(x = 0.5, y = 0.1, height = 6.0/centralbelt_ratio)
# plot full map with inset
tmap_mode("plot")
pdf("figures/03_admin_lev2_scotland_ecs_plot.pdf")
print(admin_lev2_centralbelt_ecs_plot,
vp = vp_admin_lev2_centralbelt_ecs_plot)
# TODO, need better export method now that tmap() and graphic device are fixed
dev.off()
# Second plot, revealing transition towns
tm_shape(admin_lev2) +
tm_fill(col = "transition_count", palette = "Oranges", n = 5, title = "Concentration of Transition groups") +
tm_borders(alpha=.5, lwd=0.1) +
tm_shape(admin_lev1_simplified) +
tm_borders(lwd=0.6) +
tm_shape(transition) +
tm_dots("red", size = .02, alpha = .2) +
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 = "Figure 4b",
title.size = .7,
legend.title.size = .7,
inner.margins = c(0.1, 0.1, 0.05, 0.05),
outer.margins = c(0.2, 0.01, 0.01, 0.01)
)
tm_shape(admin_lev2) +
tm_fill(col = "dtas_count", palette = "Oranges", n = 5, title = "Concentration of DTAS groups") +
tm_borders(alpha=.5, lwd=0.1) +
tm_shape(admin_lev1_simplified) +
tm_borders(lwd=0.6) +
tm_shape(dtas) +
tm_dots("red", size = .02, alpha = .2) +
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 = "Figure 4c",
title.size = .7,
legend.title.size = .7,
inner.margins = c(0.1, 0.1, 0.05, 0.05),
outer.margins = c(0.2, 0.01, 0.01, 0.01)
)
tm_shape(admin_lev2) +
tm_fill(col = "permaculture_count", palette = "Oranges", n = 5,
title = "Concentration of Permaculture groups") +
tm_borders(alpha=.5, lwd=0.1) +
tm_shape(admin_lev1_simplified) +
tm_borders(lwd=0.6) +
tm_shape(permaculture) +
tm_dots("red", size = .02, alpha = .2) +
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 = "Figure 4d",
title.size = .7,
legend.title.size = .7,
inner.margins = c(0.1, 0.1, 0.05, 0.05),
outer.margins = c(0.2, 0.01, 0.01, 0.01)
)
```
## Cartogram Comparisons
```{r 05_cartograms, fig.width=4, fig.show="hold", fig.cap="Figure 5"}
# # TODO: plot as animated chorogram:
# # https://www.r-graph-gallery.com/331-basic-cartogram/
# # see here for example using sf: https://github.com/dreamRs/topogRam
# # example using tmap here: https://github.com/mtennekes/tmap/raw/8177c5d4e36b480f109474b1ab3f5f073cefe7d5/examples/tm_fill.R
# library(cartogram)
# # Make animated:
# https://github.com/thomasp85/gganimate
```
We can compare the representation in these various regions against our comparison groups to see how other community-based organisations cluster in Scottish administrative districts. Here there are some significant contrasts. Scottish Community Development trusts are most intensely concentrated in the Highlands and Argyll & Bute. But, this is consistent with all the other categories, Eco-Congregations, Places of Worship, and dtas are all over-represented in this area, varying only by the degree. Edinburgh is different, here we find that Eco-Congregations and Transition projects are over-represented, while dtass are under-represented. Finally, the highlands are another strong contrast, here we find a very strong over-representation by transition towns and dtass while the representation of Eco-Congregations is relatively close to the population share for that area. The two areas of greatest contrast for Eco-Congregations from the other groups are unsurprising, Edinburgh is the location of the ECS offices, while Stirling is the area in which ECS first began (see Appendix B for full data).
# Christian Denominations #
Eco-Congregation Scotland describes itself as an "ecumenical movement helping local groups of Christians link environmental issues to their faith, reduce their environmental impact and engage with their local community." There are several ties to the Church of Scotland, as the denomination provides office space to Eco-Congregation Scotland in the Church of Scotland complex at 121 George Street in Edinburgh and provides funding for one full-time member of staff. In spite of this, ECS has, from the start, attempted to emphasise its ecumenical aspirations and this is reflected in a wide variety of ways. The name "eco-congregation" is meant to be tradition neutral (in interviews, staff noted how they have sought to avoid names such as "eco-kirk" which would be the more obvious Presbyterian title, or "eco-community" or "eco-church" which might indicate allegiance towards another). Further, the group has a environmental chaplain on their staff whose position is funded by the United Reformed Church, and other members of staff are funded by the Scottish government, and as such, carry no formal affiliation with a religious institution. This diversity and ecumenicism is reflected in a membership which is, though dominated by the Church of Scotland, nevertheless, made up of a range of Christian traditions.
Though these are not numerically significant, it is important to note that some member congregations describe themselves as ecumenical communities, and others are hybrids reflecting the merging of two traditions. As this ecumenical/hybrid designation involves a small number of the overall total, for the sake of this research, these have been combined into a category called "ecumenical." Further, as research conducted by Church of Scotland statistician Fiona Tweedie has shown, in many Scottish communities with only one church, members of this church will specify their denominational affiliation in a variety of ways (Roman Catholic, Quaker, Methodist, etc.) even though the church and its minister are formally affiliated with the Church of Scotland.[^159142242] So, we should be careful not to assume that the various denominational affiliations of eco-congregations are indicative in an absolute way.
A wide variety of historians and sociologists of religion have noted the regional significance of different Christian denominations in Scotland so we sought to assess the relative distribution and concentration of eco-congregations by denomination. Finding comparative statistics is a complex task, made more complicated by several factors. First, most demographic data on religious belonging in Scotland comes in the form of the 2011 census and as such is far more atomised than this data-set which identifies groups at the level of "congregations" rather than individuals. Equating these two is also complex, as participation by members of congregations can be measured in a variety of ways, there are often a small number of active participants in each eco-congregation group, but may also be a large scale, but passive, support by the wider community.
So why provide this kind of data (i.e. at the level of individual churches) when more granular data (i.e. at the level of individuals persons) is available in the form of the census and related parallel publications such as the 2008 Scottish Environmental Attitudes survey? We believe that mapping places of worship provides a useful intermediate level of analysis and may complement our more atomised understanding of EA which has been assessed at the level of individual persons to date. Because representation within some administrative areas of Scotland, can lead to a small number of data points, we have kept analysis to a National level and have not provided more specific administrative-area level calculations.
```{r 06_ecs_denomination_table}
# TODO: fix to work with new sf() object
ecs_dt <- (st_set_geometry(ecs, NULL))
knitr::kable(table(ecs_dt$denomination), caption = 'Figure 5. Table of ECS by denomination')
# TODO: Add dataframe with overall church numbers for the UK from "ScottishChurches" dataset by JK
```
As one might expect, there is a strong representation of the Church of Scotland, almost 74% of eco-congregations, with this number remaining the same when we only count awarded sites. We can confirm, on the basis of this analysis that ECS has a disproportional representation by Church of Scotland churches. At the 2002 church census count, it only represented 40.20% of Scottish churches (1666 of 4144 total churches). Similarly, on the 2011 Scottish census, only 32.44% of persons claimed to be members of the Church of Scotland. We can adjust this representation to 60%, if one excludes the 2,445,204 persons (46% of the total on the census) who reported either "no religion" or adherence to a religious tradition not currently represented among the eco-congregation sites. There is a slight over-representation by the United Reformed church, though this seems considerably more dramatic when one takes into account the fact that this is a trebling or more of their overall share of Scottish churches. The URC makes up only sightly more than 1% of church buildings in Scotland and a tiny 0.04% of respondents to the 2011 census. The Scottish Episcopal church hovers right around a proportional representation within ECS. More concerning are the significant underrepresentation by Roman Catholic churches, Baptists, the Free Church of Scotland, and other independent churches.
While Roman Catholic churches make up just over 10% of the church buildings in Scotland, less than 5% of churches registered as eco-congregations are RC. Even more dramatic is the quartering of baptist churches, and the non-existent representation among the significant group of independent churches and small denominations. These make up nearly 25% of all Scottish churches (over a thousand) and yet only 4 have registered as eco-congregations. We provide several tentative advisories in response to these under-representations in the final section of this paper.
# Eco-Congregations, Urban, Rural and Remote
```{r import_ur8fold_data, message=FALSE, warning=FALSE}
# read in relevant polygons for UR8fold scale
if (file.exists("data/SG_UrbanRural_2016.shp") == FALSE) {
download.file("http://sedsh127.sedsh.gov.uk/Atom_data/ScotGov/ZippedShapefiles/SG_UrbanRural_2016.zip",
destfile = "data/SG_UrbanRural_2016.zip")
unzip("data/SG_UrbanRural_2016.zip", exdir = "data")
}
urbanrural <- st_read("data/SG_UrbanRural_2016.shp")
# Create simplified version of geometry for visualisations, with a tolerance of 100m
urbanrural_simplified <- st_simplify(urbanrural, preserveTopology = FALSE, dTolerance = 100)
# TODO: worth considering uploading data to zenodo for long-term reproducibility as ScotGov shuffles this stuff around periodically breaking URLs
# compare memory usage of objects
round(c(object.size(urbanrural), object.size(urbanrural_simplified)) / 1024)
# This code will generate a table of frequencies for each spatialpointsdataframe in urbanrural
# calculate count of ECS for fields in urbanrural
urbanrural$ecs_count <- lengths(st_covers(urbanrural, ecs))
urbanrural$ecs_percent<- prop.table(urbanrural$ecs_count)
# calculate count of places of worship in PointX db for fields in urbanrural and provide percentages
urbanrural$pow_count <- lengths(st_covers(urbanrural, pow_pointX))
urbanrural$pow_percent<- prop.table(urbanrural$pow_count)
# calculate count of Transition for fields in urbanrural
urbanrural$transition_count <- lengths(st_covers(urbanrural, transition))
urbanrural$transition_percent<- prop.table(urbanrural$transition_count)
# calculate count of dtas for fields in urbanrural
urbanrural$dtas_count <- lengths(st_covers(urbanrural, dtas))
urbanrural$dtas_percent<- prop.table(urbanrural$dtas_count)
# calculate count of permaculture for fields in urbanrural
urbanrural$permaculture_count <- lengths(st_covers(urbanrural, permaculture))
urbanrural$permaculture_percent<- prop.table(urbanrural$permaculture_count)
```
Rather than bifurcate congregations into an urban/rural dichotomy, for this study we used the Scottish Government's six-point remoteness scale to categorise eco-congregations along a spectrum of highly populated to remote areas. This 8-fold scale (calculated biennially) offers a more nuanced measurement that combines measurements of remoteness and population along the following lines:
1. Large Urban Areas - Settlements of over 125,000 people.
2. Other Urban Areas - Settlements of 10,000 to 125,000 people.
3. Accessible Small Towns - Settlements of between 3,000 and 10,000 people, and within a 30 minute drive time of a Settlement of 10,000 or more.
4. Remote Small Towns - Settlements of between 3,000 and 10,000 people, and with a drive time between 30 and 60 minutes to a Settlement of 10,000 or more.
5. Very Remote Small Towns - Settlements of between 3,000 and 10,000 people, and with a drive time of over 60 minutes to a Settlement of 10,000 or more.
6. Accessible Rural Areas - Areas with a population of less than 3,000 people, and within a drive time of 30 minutes to a Settlement of 10,000 or more.
7. Remote Rural Areas - Areas with a population of less than 3,000 people, and with a drive time of between 30 and 60 minutes to a Settlement of 10,000 or more.
8. Very Remote Rural Areas - Areas with a population of less than 3,000 people, and with a drive time of over 60 minutes to a Settlement of 10,000 or more.
The key question which this analysis seeks to answer is whether ECS, or the other groups surveyed, are more concentrated in Urban or Rural areas, so as is the case below with our analysis of deprivation, we are concerned with the outer conditions, i.e. the urban areas (items 1-2) and remote areas (items 7-8).
Of all the groups surveyed in this study, Eco-Congregation Scotland is the most heavily concentrated in large urban areas (33.53%), exceeding by almost 50% the rate for all places of worship (22.96% in large urban areas). Transition is a much more modest 20% and development trusts a bit lower at 15%. It is interesting to note that the rate of ECS concentration in these large urban areas matches the level of overall population distribution (34.5%). On the other end of the scale, Eco-Congregation Scotland is the least concentrated in remote rural areas (with 3.93% on level 7 and 5.44% on level 8 on the urban-rural scale), though again, they correlate roughly to the general population distribution (3.2% and 2.9% respectively). Places of worship outpace both the population of Scotland and the footprint of Eco-Congregation Scotland, with 14.98% in very remote rural areas, but this is exceeded by transition at 16.47% and both by Scottish community development trusts at 32.14%. So while Eco-Congregation Scotland correlates roughly with Scottish population distribution across the urban-rural scale, it has a considerably more urban profile than either of the other two groups surveyed.
```{r 07_ur_barplot, fig.width=4, fig.cap="Figure 6"}
# Need to flatten urbanrural based on all the count columns and generate using ggplot
urbanrural_gathered <- gather(data.frame(urbanrural), key="group_type", value="number", ecs_count, transition_count, dtas_count, permaculture_count)
# TODO: switch to stacked percentage plot, see here: https://www.r-graph-gallery.com/48-grouped-barplot-with-ggplot2/
ggplot(urbanrural_gathered,
aes(fill=group_type, y=number, x=UR8FOLD)) +
geom_bar(position="dodge", stat="identity") +
coord_flip() +
labs(
title = "Figure 6",
subtitle="Comparison of Groups by UrbanRural category",
fill = "Groups")
```
## Eco-Congregation Scotland\nconcentrations in Urban Rural 8-fold classifications
```{r 08_urbanrural_ecs_chart_choropleth, message=FALSE, warning=FALSE, fig.width=4, fig.cap="Figure 7"}
# TODO: Double check data licenses for tm_credits
# Generate code for inset map of central belt
# First build large plot using National level view
# TODO: add inner margin to layout to provide adequate spce for inset map at bottom
urbanrural_uk_ecs_choropleth_plot <- tm_shape(urbanrural_simplified) +
tm_polygons(col = "UR8FOLD", palette = "BrBG", lwd=0.001, n=9,
title = "UrbanRural 8 Fold Scale") +
tm_shape(ecs) +
tm_dots("red", size = .05, alpha = .2) +
tm_scale_bar(position = c("left", "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,
title = "Figure 7",
frame = FALSE,
title.size = .7,
legend.title.size = .7,
# values are bottom, left, top, right, modified here to make space for inset
inner.margins = c(0.1, 0.1, 0.05, 0.05),
outer.margins = c(0.2, 0.01, 0.01, 0.01)
)
# Next build smaller central belt plot for inset:
urbanrural_simplified_centralbelt <- st_crop(urbanrural_simplified, centralbelt_region)
urbanrural_centralbelt_ecs_choropleth_plot <-
tm_shape(urbanrural_simplified_centralbelt) +
tm_polygons(col = "UR8FOLD", palette = "BrBG") +
tm_shape(ecs_centralbelt) + tm_dots("red", size = .05, alpha = .4) +
tm_legend(show=FALSE)
# Stitch together maps using grid()
# Note: viewport values are X, Y, width and height
# todo: extrploate and use scale of inset bbox (centralbelt_ratio) to configure dimensions above for inset plots
vp_urbanrural_centralbelt_ecs_choropleth_plot <- viewport(x = 0.5, y = 0.1, height = 6.0/centralbelt_ratio)
# plot full map with inset
tmap_mode("plot")
urbanrural_uk_ecs_choropleth_plot
print(urbanrural_centralbelt_ecs_choropleth_plot, vp = vp_urbanrural_centralbelt_ecs_choropleth_plot)
# Generate dynamic plot for exploring
# TODO: change basemap
# tmap_mode("view")
# tm_shape(urbanrural_simplified) + tm_polygons(col = "UR8FOLD", palette = "BrBG") +
# tm_shape(ecs) +
# tm_dots("red", size = .05, alpha = .4, popup.vars = TRUE) +
# tm_view(alpha = 1, basemaps = "Esri.WorldTopoMap")
```
# Wealth, Employment, and Literacy
```{r 09_simd_data, message=FALSE, warning=FALSE}
# read in relevant polygons, Scottish Index of Multiple deprivation
if (file.exists("data/sc_dz_11.shp") == FALSE) {
download.file("http://simd.scot/2016/data/simd2016_withgeog.zip",
destfile = "data/simd2016_withgeog.zip")
unzip("data/simd2016_withgeog.zip", exdir = "data", junkpaths = TRUE)
}
simd_shapes <- st_read("data/sc_dz_11.shp")
simd_indicators <- read.csv("./data/simd2016_withinds.csv")
simd_indicators_min <- simd_indicators[c(1,6:17)]
# Combine shapes with data
simd_wgs = left_join(simd_shapes, simd_indicators_min, by = c("DataZone" = "Data_Zone"))
# Original data is in wgs, so need to convert from wgs to bng to work with analysis across data sets
simd <- simd_wgs %>% st_transform(27700)
# Create simplified version of geometry for visualisations, with a tolerance of 100m
# Workaround to address invalid spherical geometry issue
sf_use_s2(FALSE)
simd_simplified <- st_simplify(simd_shapes, preserveTopology = FALSE, dTolerance = 100)
# compare memory usage of objects
round(c(object.size(simd_shapes), object.size(simd_simplified)) / 1024)
# Augment each dataset with relevant (geolocated) columns from SIMD
# assign combined table with SIMD columns to attribute table slot of ecs table
ecs <- st_join(ecs, simd )
# assign combined table with SIMD columns to attribute table slot of ecs table
pow_pointX <- st_join(pow_pointX, simd )
# assign combined table with SIMD columns to attribute table slot of transition table
# TODO: fix bad geometry here causing fails as it lies outside simd polygons
transition <- st_join(transition, simd )
# assign combined table with SIMD columns to attribute table slot of permaculture table
permaculture <- st_join(permaculture, simd )
# assign combined table with SIMD columns to attribute table slot of dtas table
# TODO: fix bad geometry here causing fails as it lies outside simd polygons
dtas <- st_join(dtas, simd )
# Augment SIMD with group counts
simd$ecs_count <- lengths(st_covers(simd, ecs))
simd$transition_count <- lengths(st_covers(simd, transition))
simd$dtas_count <- lengths(st_covers(simd, dtas))
simd$permaculture_count <- lengths(st_covers(simd, permaculture))
simd$pow_count <- lengths(st_covers(simd, pow_pointX))
# Generate simplified dataframes with counts for each group
ecs_simd <- data.frame(select(ecs, name, TotPop2011, Overal_SIMD16_Rank:Housing_Domain_2016_Rank))
colnames(ecs_simd)[1] <- "group_name"
ecs_simd$group_type <- "ecs"
transition_simd <- data.frame(select(transition, Name.x, TotPop2011, Overal_SIMD16_Rank:Housing_Domain_2016_Rank))
colnames(transition_simd)[1] <- "group_name"
transition_simd$group_type <- "transition"
dtas_simd <- data.frame(select(dtas, Name.x, TotPop2011, Overal_SIMD16_Rank:Housing_Domain_2016_Rank))
colnames(dtas_simd)[1] <- "group_name"
dtas_simd$group_type <- "dtas"
permaculture_simd <- data.frame(select(permaculture, Link, TotPop2011, Overal_SIMD16_Rank:Housing_Domain_2016_Rank))
colnames(permaculture_simd)[1] <- "group_name"
permaculture_simd$group_type <- "permaculture"
# Bind into single long data frame
allgroups_simd <- bind_rows(ecs_simd, transition_simd)
allgroups_simd <- bind_rows(allgroups_simd, dtas_simd)
allgroups_simd <- bind_rows(allgroups_simd, permaculture_simd)
allgroups_gathered <- gather(allgroups_simd, key = "simd_category", value = "rank", Overal_SIMD16_Rank, Income_Domain_2016_Rank, Employment_Domain_2016_Rank, Health_Domain_2016_Rank, Education_Domain_2016_Rank, Geographic_Access_Domain_2016_Rank, Crime_Domain_2016_Rank, Housing_Domain_2016_Rank)
```
## SIMD representation across domains by group {.tabset}
### Jitterplot
```{r 10_simd_jitterplot}
# simd jitterplot
# jitterplot option, from Teutonico 2015, p. 63
# https://ggplot2.tidyverse.org/reference/geom_jitter.html
```
### Barplot
```{r 11_simd_barplot, fig.width=4, fig.cap="Figure 8"}
# Run plots
# Faceted stacked bar plot
# Sort by SIMD ranks for bar stacking below
allgroups_gathered <- allgroups_gathered[order(allgroups_gathered$simd_category, allgroups_gathered$rank),]
# Set manual x-axis labels
axisLabels.x <- c("Crime", "Education", "Employment","Geographic Access","Health","Housing","Income","Overall Rank")
# Plot
# TODO - tidy facet labels: http://www.cookbook-r.com/Graphs/Facets_(ggplot2)/
# TODO - add pointX, consider filtering out some of the simd_categories
ggplot(data=allgroups_gathered,
aes(x=simd_category, y=rank,
fill=cut_interval(allgroups_gathered$rank, n = 5))) +
geom_bar(stat="identity", position="fill") +
facet_grid(~group_type) +
theme(legend.position="none", axis.text.x = element_text(size=6, angle=90, hjust = 0.95, vjust = 0.2)) +
scale_x_discrete(labels=axisLabels.x) +
labs(x = NULL,
y = "SIMD Rank (in bins by quantile)",
fill = "Groups",
title = "Figure 8",
subtitle="Distribution of Groups across IMD Domains by Rank",
caption = paste("Jeremy H. Kidwell :: jeremykidwell.info",
"Data: UK Data Service (OGL) & Jeremy H. Kidwell",
"You may redistribute this graphic under the terms of the CC-by-SA 4.0 license.",
sep = "\n"))
# write.csv(simd_percents_only, "derivedData/simd_percents_only.csv", row.names=FALSE)
```
### Boxplot
```{r 12_simd_boxplot, fig.width=4, fig.cap="Figure 10"}
# simd boxplot
# ggplot(data=allgroups_gathered, aes(x=simd_category, y=rank)) +
# geom_boxplot(stat="identity") +
# facet_grid(~group_type)
# TODO: add calculations inline to text below using data
```
## Discussing SIMD
Another crucial point of assessment relates to the relation of Eco-Congregation communities to the Scottish Index of Multiple Deprivation. This instrument aggregates a large variety of factors which can lead to deprivation including crime rates, employment levels, access to services (implicating remoteness), and literacy. By assessing ECS, Transition, and dtas against the deprivation scale, we can assess whether eco-congregations fall within particular demographics and also whether the fully aggregated SIMD measurement provides a useful point of comparison for our purposes. The SIMD essentially divides Scotland into 6407 geographic zones and then ranks them based on their relative deprivation. This data set can be split into any number of groups, but for our purposes we have settled on Quintiles, splitting the SIMD data set at every 1302 entries. We then measured where each transition group, ECS, and dtas fell within these zones and calculated how they fell into these five quintiles, from more to least deprived.
The first, and most compelling finding is that, in general Eco-Congregation Scotland and Transition Scotland are both roughly the same and match the level of population distribution in the lowest quintile of the general SIMD measurement. 8% of transition groups and eco-congregation groups which have received awards and 9% of the population are located within this quintile. However, taken in relation to the distribution of places of worship in the lowest quintile, we find that eco-congregations are located at half the rate that places of worship are (15%) and dtass match this much more closely at 14%. Turning towards the top quintile, this pattern also holds, here both transition groups (21%) and eco-congregations (21% and 29% of awarded congregations) depart from the population distribution in this upper quintile (which is 10%). Again, general places of worship (at 11%) and DTASs (at 5%) take the opposite direction. We can say decisively that in communities which have been identified as good candidates for intervention to reduce deprivation, ECS and Transition are less likely, and they are over-represented at the areas which fall into the least deprived quintile.
We can find divergence between transition communities and eco-congregation when we split out SIMD domains. In the lowest quartile, measuring exclusively for the income domain, ECS is more represented (11%) - roughly the same as DTAS (12%), and transition is less (6%) represented. In general (as shown on the chart in Appendix D), these trends hold when representation of our groups are measured within other non-remoteness domains of the SIMD. Our basic conclusion is that transition towns are least likely to operate within the lowest quartile of SIMD and DTASs are most likely, with ECS somewhere in the middle. Given the general disparity against the presence of places of worship, it seems fair to suggest that this might be an area for improvement, perhaps even worth developing a special programme which might target areas in SIMD quartile 1 for eco-congregation outreach. This might be considered particularly in light of the starkest underrepresentation of ECS and transition within the SIMD domain of education, skills, and training.
```{r wilderness_data_prep}
# 1. Download data for SSSI:
if (file.exists("data/SSSI_SCOTLAND.shp") == FALSE) {
# TODO: upload data to zenodo, uncomment below
# http://gateway.snh.gov.uk/natural-spaces/dataset.jsp?dsid=SSSI
# download.file("", destfile = "data/SSSI_SCOTLAND_ESRI.zip")
unzip("data/SSSI_SCOTLAND_ESRI.zip", exdir = "data")
}
sssi <- st_read("data/SSSI_SCOTLAND.shp")
# Create simplified version of geometry for visualisations, with a tolerance of 100m
sssi_simplified <- st_simplify(sssi, preserveTopology = TRUE, dTolerance = 100)
# compare memory usage of objects
round(c(object.size(sssi), object.size(sssi_simplified)) / 1024)
# 2. Download wild land areas:
if (file.exists("data/WILDLAND_SCOTLAND.shp") == FALSE) {
# TODO: upload data to zenodo, uncomment below
# https://gateway.snh.gov.uk/natural-spaces/dataset.jsp?dsid=WILDLAND
# download.file("", destfile = "data/WILDLAND_SCOTLAND_ESRI.zip")
unzip("data/WILDLAND_SCOTLAND_ESRI.zip", exdir = "data")
}
wildland <- st_read("data/WILDLAND_SCOTLAND.shp")
# Create simplified version of geometry for visualisations, with a tolerance of 100m
wildland_simplified <- st_simplify(wildland, preserveTopology = FALSE, dTolerance = 100)
# compare memory usage of objects
round(c(object.size(wildland), object.size(wildland_simplified)) / 1024)
# 3. Download data for National Forest Inventory:
# Note: UK-wide data is here: https://opendata.arcgis.com/datasets/bcd6742a2add4b68962aec073ab44138_0.zip?outSR=%7B%22wkid%22%3A27700%2C%22latestWkid%22%3A27700%7D
if (file.exists("data/National_Forest_Inventory_Woodland_Scotland_2017.shp") == FALSE) {
download.file("https://opendata.arcgis.com/datasets/3cb1abc185a247a48b9d53e4c4a8be87_0.zip?outSR=%7B%22wkid%22%3A27700%2C%22latestWkid%22%3A27700%7D",
destfile = "data/National_Forest_Inventory_Woodland_Scotland_2017.zip")
unzip("data/National_Forest_Inventory_Woodland_Scotland_2017.zip", exdir = "data")
}
# forestinv <- st_read("data/National_Forest_Inventory_Woodland_Scotland_2017.shp")
# Create simplified version of geometry for visualisations, with a tolerance of 100m
# Some tweaks required here, useful notes here: https://www.r-bloggers.com/2021/03/simplifying-geospatial-features-in-r-with-sf-and-rmapshaper/
# forestinv_simplified <- st_simplify(forestinv, preserveTopology = TRUE, dTolerance = 1000)
# compare memory usage of objects
# round(c(object.size(forestinv), object.size(forestinv_simplified)) / 1024)
# Download data for scenic areas
# https://opendata.arcgis.com/datasets/d7f6b987c7224a72a185ce012258d500_23.zip
# International Union for Conservation of Nature (IUCN), Category V Protected Landscapes
# for England: https://environment.data.gov.uk/DefraDataDownload/?mapService=NE/AreasOfOutstandingNaturalBeautyEngland&Mode=spatial
# download.file("https://opendata.arcgis.com/datasets/d7f6b987c7224a72a185ce012258d500_23.zip", destfile = "data/ScenicAreas.zip")
# unzip("data/ScenicAreas.zip", exdir = "data")
scenicareas <- st_read("data/SG_NationalScenicAreas_1998.shp")
# Create simplified version of geometry for visualisations, with a tolerance of 100m
scenicareas_simplified <- st_simplify(scenicareas, preserveTopology = TRUE, dTolerance = 100)
# compare memory usage of objects
round(c(object.size(scenicareas), object.size(scenicareas_simplified)) / 1024)
# Set symmetrical CRS for analysis below (inserted here in order to correct errors, may be deprecated later)
# st_crs(sssi) <- 27700
# st_crs(ecs) <- 27700
# st_crs(pow_pointX) <- 27700
# st_crs(dtas) <- 27700
# st_crs(transition) <- 27700
# st_crs(permaculture) <- 27700
# Define buffer and measure number of ECS groups within 0.5 miles of all SSSI
# CRS uses meters for units, so a buffer for 0.5 miles would use 805 meters)
# Define buffers as lines and polygons for reuse below (as some of these operations take > 10 minutes)
# TODO: Working with simplified polygons here to optimise execution, need to confirm calculations are the same as polygons without simplification (likely!)
sssi_buf50 <- st_buffer(sssi, dist = 50)
sssi_buf500 <- st_buffer(sssi, dist = 500)
# Lines offer even more optimised representation suitable for plotting
# TODO: resolve error:
# Error in st_cast.sfc(., to = "LINESTRING") :
# use smaller steps for st_cast; first cast to MULTILINESTRING or POLYGON?
# sssi_buf50_lines <- st_union(sssi_simplified) %>% st_buffer(50) %>%
# st_cast(to = "MULTILINESTRING") %>%
# st_cast(to = "LINESTRING")
# sssi_buf500_lines <- st_union(sssi_simplified) %>% st_buffer(500) %>%
# st_cast(to = "MULTILINESTRING") %>%
# st_cast(to = "LINESTRING")
wildland_buf50 <- st_buffer(wildland, dist = 50)
wildland_buf500 <- st_buffer(wildland, dist = 500)
# Lines offer even more optimised representation suitable for plotting
# wildland_buf50_lines = st_union(wildland_simplified) %>% st_buffer(50) %>%
# st_cast(to = "LINESTRING")
# wildland_buf500_lines = st_union(wildland_simplified) %>% st_buffer(500) %>%
# st_cast(to = "LINESTRING")
# forestinv_buf50 <- st_buffer(forestinv_simplified, dist = 50)
# forestinv_buf500 <- st_buffer(forestinv_simplified, dist = 500)
# Lines offer even more optimised representation suitable for plotting
# forestinv_buf50_lines = st_union(forestinv_simplified) %>% st_buffer(50) %>%
# st_cast(to = "LINESTRING")
# forestinv_buf500_lines = st_union(forestinv_simplified) %>% st_buffer(500) %>%
# st_cast(to = "LINESTRING")
scenicareas_buf50 <- st_buffer(scenicareas, dist = 50)
scenicareas_buf500 <- st_buffer(scenicareas, dist = 500)
# Calculate number of groups within polygons
# calculate coincidence of ecs points within each polygons and buffers for each
# TODO: possibly use st_difference(sssi_buf50, sssi)
# TODO: consider subsetting instead here, e.g.:
# plot(lnd, col = "lightgrey") # plot the london_sport object
# sel <- lnd$Partic_Per > 25
# plot(lnd[ sel, ], col = "turquoise", add = TRUE) # add selected zones to map
# from https://gotellilab.github.io/Bio381/StudentPresentations/SpatialDataTutorial.html
# TODO: integrate pre-calc here into calculations further down which are still recalculating these figures
ecs_sssi <- st_within(ecs, sssi)
ecs_sssi50m <- st_within(ecs, sssi_buf50)
ecs_sssi500m <- st_within(ecs, sssi_buf500)
ecs_sssibeyond500m <- !(st_within(ecs, sssi_buf500))
ecs_wildland <- st_within(ecs, wildland)
ecs_wildland50m <- st_within(ecs, wildland_buf50)
ecs_wildland500m <- st_within(ecs, wildland_buf500)
ecs_wildlandbeyond500m <- !(st_within(ecs, wildland_buf500))
# ecs_forestinv <- st_within(ecs, forestinv_simplified)
# ecs_forestinv50m <- st_within(ecs, forestinv_buf50)
# ecs_forestinv500m <- st_within(ecs, forestinv_buf500)
# ecs_forestinvbeyond500m <- !(st_within(ecs, forestinv_buf500))
ecs_scenicareas <- st_within(ecs, scenicareas)
ecs_scenicareas50m <- st_within(ecs, scenicareas_buf50)
ecs_scenicareas500m <- st_within(ecs, scenicareas_buf500)
ecs_scenicareasbeyond500m <- !(st_within(ecs, scenicareas_buf500))
# TODO: implement more efficient code using do.call() function or sapply() as here https://stackoverflow.com/questions/3642535/creating-an-r-dataframe-row-by-row
# TODO: implement parallel computing to distribute execution of loopable calculations below
# See: https://nceas.github.io/oss-lessons/parallel-computing-in-r/parallel-computing-in-r.html
# Generate dataframe based on SSSI buffers
# Load in POI tables so that we can calculate coincidence of other features
# Sadly, this dataset is paywalled by digimap, though most academic researchers should be able to aquire it through
# an institutional subscription from Digimap, Ordnance Survey Data Download. The POI set is located under
# "Boundary and Location Data" under "Points of Interest," "select visible area" for whole UK then download.
#
# I'm going to take some shortcuts here, preventing this code from being truly reproducible
# because the poi dataset is really huge - I've already downloaded and filtered to specific codes for features
# so code immediately below is untested. Will need to adjust below to the actual code I'm working with eventually.
## Skip ==>
# poi <- read.csv("data/poi_csv", header = FALSE, sep = "|")
# coordinates(poi) <- c("Feature Easting", "Feature Northing")
# proj4string(poi) <- proj4string(CRS(bng))
## transform CRS on churches (from BNG) to wgs84 for comparisons below
# poi_wgs <- spTransform(poi, CRS(wgs84))
## subsets
#poi_pubs <- poi[!is.na(poi[3] = "01020034")]
#poi_chequecashing <- poi[!is.na(poi[3] = "02090142")]
#poi_pawnbrokers <- poi[!is.na(poi[3] = "02090151")]
#poi_worship <- poi[!is.na(poi[3] = "06340459")]
# ==> to here for now
# Load in retail data from geolytics dataset
# from here: https://geolytix.co.uk/?retail_points
poi_grocery_wgs <- read.csv("data/retailpoints_version11_dec17.txt", sep = "\t")
# select useful columns
poi_grocery_wgs <- select(poi_grocery_wgs, retailer, store_name, long_wgs, lat_wgs)
# convert to sf
poi_grocery_wgs <- st_as_sf(poi_grocery_wgs, coords = c("long_wgs", "lat_wgs"))
st_crs(poi_grocery_wgs) <- 4326
poi_grocery <- poi_grocery_wgs %>% st_transform(27700)
# filter out non-Scottish data
poi_grocery_scotland <- st_intersection(poi_grocery, admin_lev1)
# Load in British pubs from Ordnance survey dataset
poi_pubs <- read.csv("data/poi_pubs.csv", header = FALSE, sep = "|")
# select useful columns
poi_pubs <- select(poi_pubs, V1, V2, V3, V4, V5)
# rename columns to tidier names
colnames(poi_pubs) <- c("refnum", "name", "code", "x", "y")
# convert to sf
poi_pubs <- st_as_sf(poi_pubs, coords = c("x", "y"))
st_crs(poi_pubs) <- 27700
# filter out non-Scottish data
poi_pubs <- st_intersection(poi_pubs, admin_lev1)
# Calculate incidence of ecs within SSSI and within buffers at 50/500m
ecs_sssi_row <- c(sum(apply(st_within(ecs, sssi_simplified, sparse=FALSE), 1, any)), sum(apply(st_within(ecs, sssi_buf50, sparse=FALSE), 1, any)), sum(apply(st_within(ecs, sssi_buf500, sparse=FALSE), 1, any)))
pow_sssi_row <- c(sum(apply(st_within(pow_pointX, sssi_simplified, sparse=FALSE), 1, any)), sum(apply(st_within(pow_pointX, sssi_buf50, sparse=FALSE), 1, any)), sum(apply(st_within(pow_pointX, sssi_buf500, sparse=FALSE), 1, any)))
dtas_sssi_row <- c(sum(apply(st_within(dtas, sssi_simplified, sparse=FALSE), 1, any)), sum(apply(st_within(dtas, sssi_buf50, sparse=FALSE), 1, any)), sum(apply(st_within(dtas, sssi_buf500, sparse=FALSE), 1, any)))
transition_sssi_row <- c(sum(apply(st_within(transition, sssi_simplified, sparse=FALSE), 1, any)), sum(apply(st_within(transition, sssi_buf50, sparse=FALSE), 1, any)), sum(apply(st_within(transition, sssi_buf500, sparse=FALSE), 1, any)))
permaculture_sssi_row <- c(sum(apply(st_within(permaculture, sssi_simplified, sparse=FALSE), 1, any)), sum(apply(st_within(permaculture, sssi_buf50, sparse=FALSE), 1, any)), sum(apply(st_within(permaculture, sssi_buf500, sparse=FALSE), 1, any)))
grocery_sssi_row <- c(sum(apply(st_within(poi_grocery, sssi_simplified, sparse=FALSE), 1, any)), sum(apply(st_within(poi_grocery, sssi_buf50, sparse=FALSE), 1, any)), sum(apply(st_within(poi_grocery, sssi_buf500, sparse=FALSE), 1, any)))
pubs_sssi_row <- c(sum(apply(st_within(poi_pubs, sssi_simplified, sparse=FALSE), 1, any)), sum(apply(st_within(poi_pubs, sssi_buf50, sparse=FALSE), 1, any)), sum(apply(st_within(poi_pubs, sssi_buf500, sparse=FALSE), 1, any)))
# Generate dataframe from rows based on counts
sssi_counts <- rbind(ecs_sssi_row, pow_sssi_row)
sssi_counts <- rbind(sssi_counts, dtas_sssi_row)
sssi_counts <- rbind(sssi_counts, transition_sssi_row)
sssi_counts <- rbind(sssi_counts, permaculture_sssi_row)
sssi_counts <- rbind(sssi_counts, grocery_sssi_row)
sssi_counts <- rbind(sssi_counts, pubs_sssi_row)
sssi_counts <- as.data.frame(sssi_counts)
colnames(sssi_counts) <- c("Within SSSIs", "...50m", "...500m")
# Generate dataframe from rows based on percentages of totals
# TODO: Work with ecs_sf etc., but first sort out why length is different between shapefiles
ecs_sssi_row_pct <- ecs_sssi_row/length(ecs)
pow_sssi_row_pct <- pow_sssi_row/length(pow_pointX)
dtas_sssi_row_pct <- dtas_sssi_row/length(dtas)
transition_sssi_row_pct <- transition_sssi_row/length(transition)
permaculture_sssi_row_pct <- permaculture_sssi_row/length(permaculture)
grocery_sssi_row_pct <- grocery_sssi_row/length(poi_grocery)
pubs_sssi_row_pct <- pubs_sssi_row/length(poi_pubs)
sssi_counts_pct <- rbind(ecs_sssi_row_pct, pow_sssi_row_pct)
sssi_counts_pct <- rbind(sssi_counts_pct, dtas_sssi_row_pct)
sssi_counts_pct <- rbind(sssi_counts_pct, transition_sssi_row_pct)
sssi_counts_pct <- rbind(sssi_counts_pct, permaculture_sssi_row_pct)
sssi_counts_pct <- rbind(sssi_counts_pct, grocery_sssi_row_pct)
sssi_counts_pct <- rbind(sssi_counts_pct, pubs_sssi_row_pct)
colnames(sssi_counts_pct) <- c("% Within SSSIs", "% within 50m", "% within 500m")
# Merge into larger dataframe
sssi_counts_merged <- cbind(sssi_counts, sssi_counts_pct)
# Generate dataframe based on wildland buffers
ecs_wildland_row <- c(sum(apply(st_within(ecs, wildland_simplified, sparse=FALSE), 1, any)), sum(apply(st_within(ecs, wildland_buf50, sparse=FALSE), 1, any)), sum(apply(st_within(ecs, wildland_buf500, sparse=FALSE), 1, any)))
pow_wildland_row <- c(sum(apply(st_within(pow_pointX, wildland_simplified, sparse=FALSE), 1, any)), sum(apply(st_within(pow_pointX, wildland_buf50, sparse=FALSE), 1, any)), sum(apply(st_within(pow_pointX, wildland_buf500, sparse=FALSE), 1, any)))
wildland_counts <- rbind(ecs_wildland_row, pow_wildland_row)
dtas_wildland_row <- c(sum(apply(st_within(dtas, wildland_simplified, sparse=FALSE), 1, any)), sum(apply(st_within(dtas, wildland_buf50, sparse=FALSE), 1, any)), sum(apply(st_within(dtas, wildland_buf500, sparse=FALSE), 1, any)))
wildland_counts <- rbind(wildland_counts, dtas_wildland_row)
transition_wildland_row <- c(sum(apply(st_within(transition, wildland_simplified, sparse=FALSE), 1, any)), sum(apply(st_within(transition, wildland_buf50, sparse=FALSE), 1, any)), sum(apply(st_within(transition, wildland_buf500, sparse=FALSE), 1, any)))
wildland_counts <- rbind(wildland_counts, transition_wildland_row)
permaculture_wildland_row <- c(sum(apply(st_within(permaculture, wildland_simplified, sparse=FALSE), 1, any)), sum(apply(st_within(permaculture, wildland_buf50, sparse=FALSE), 1, any)), sum(apply(st_within(permaculture, wildland_buf500, sparse=FALSE), 1, any)))
wildland_counts <- rbind(wildland_counts, permaculture_wildland_row)
grocery_wildland_row <- c(sum(apply(st_within(poi_grocery, wildland_simplified, sparse=FALSE), 1, any)), sum(apply(st_within(poi_grocery, wildland_buf50, sparse=FALSE), 1, any)), sum(apply(st_within(poi_grocery, wildland_buf500, sparse=FALSE), 1, any)))
wildland_counts <- rbind(wildland_counts, grocery_wildland_row)
pubs_wildland_row <- c(sum(apply(st_within(poi_pubs, wildland_simplified, sparse=FALSE), 1, any)), sum(apply(st_within(poi_pubs, wildland_buf50, sparse=FALSE), 1, any)), sum(apply(st_within(poi_pubs, wildland_buf500, sparse=FALSE), 1, any)))
wildland_counts <- rbind(wildland_counts, pubs_wildland_row)
colnames(wildland_counts) <- c("Within Wildland Areas", "...50m", "...500m")
# Generate dataframe from rows based on percentages of totals
ecs_wildland_row_pct <- ecs_wildland_row/length(ecs)
pow_wildland_row_pct <- pow_wildland_row/length(pow_pointX)
dtas_wildland_row_pct <- dtas_wildland_row/length(dtas)
transition_wildland_row_pct <- transition_wildland_row/length(transition)
permaculture_wildland_row_pct <- permaculture_wildland_row/length(permaculture)
grocery_wildland_row_pct <- grocery_wildland_row/length(poi_grocery)
pubs_wildland_row_pct <- pubs_wildland_row/length(poi_pubs)
wildland_counts_pct <- rbind(ecs_wildland_row_pct, pow_wildland_row_pct)
wildland_counts_pct <- rbind(wildland_counts_pct, dtas_wildland_row_pct)
wildland_counts_pct <- rbind(wildland_counts_pct, transition_wildland_row_pct)
wildland_counts_pct <- rbind(wildland_counts_pct, permaculture_wildland_row_pct)
wildland_counts_pct <- rbind(wildland_counts_pct, grocery_wildland_row_pct)
wildland_counts_pct <- rbind(wildland_counts_pct, pubs_wildland_row_pct)
colnames(wildland_counts_pct) <- c("% Within wildlands", "% within 50m", "% within 500m")
# Merge into larger dataframe
wildland_counts_merged <- cbind(wildland_counts, wildland_counts_pct)
# Generate dataframe based on forestinv buffers
# ecs_forestinv_row <- c(sum(apply(st_within(ecs, forestinv_simplified, sparse=FALSE), 1, any)), sum(apply(st_within(ecs, forestinv_buf50, sparse=FALSE), 1, any)), sum(apply(st_within(ecs, forestinv_buf500, sparse=FALSE), 1, any)))
# pow_forestinv_row <- c(sum(apply(st_within(pow_pointX, forestinv_simplified, sparse=FALSE), 1, any)), sum(apply(st_within(pow_pointX, forestinv_buf50, sparse=FALSE), 1, any)), sum(apply(st_within(pow_pointX, forestinv_buf500, sparse=FALSE), 1, any)))
# forestinv_counts <- rbind(ecs_forestinv_row, pow_forestinv_row)
#
# dtas_forestinv_row <- c(sum(apply(st_within(dtas, forestinv_simplified, sparse=FALSE), 1, any)), sum(apply(st_within(dtas, forestinv_buf50, sparse=FALSE), 1, any)), sum(apply(st_within(dtas, forestinv_buf500, sparse=FALSE), 1, any)))
# forestinv_counts <- rbind(forestinv_counts, dtas_forestinv_row)
#
# transition_forestinv_row <- c(sum(apply(st_within(transition, forestinv_simplified, sparse=FALSE), 1, any)), sum(apply(st_within(transition, forestinv_buf50, sparse=FALSE), 1, any)), sum(apply(st_within(transition, forestinv_buf500, sparse=FALSE), 1, any)))
# forestinv_counts <- rbind(forestinv_counts, transition_forestinv_row)
#
# permaculture_forestinv_row <- c(sum(apply(st_within(permaculture, forestinv_simplified, sparse=FALSE), 1, any)), sum(apply(st_within(permaculture, forestinv_buf50, sparse=FALSE), 1, any)), sum(apply(st_within(permaculture, forestinv_buf500, sparse=FALSE), 1, any)))
# forestinv_counts <- rbind(forestinv_counts, permaculture_forestinv_row)
#
# grocery_forestinv_row <- c(sum(apply(st_within(poi_grocery, forestinv_simplified, sparse=FALSE), 1, any)), sum(apply(st_within(poi_grocery, forestinv_buf50, sparse=FALSE), 1, any)), sum(apply(st_within(poi_grocery, forestinv_buf500, sparse=FALSE), 1, any)))
# forestinv_counts <- rbind(forestinv_counts, grocery_forestinv_row)
#
# pubs_forestinv_row <- c(sum(apply(st_within(poi_pubs, forestinv_simplified, sparse=FALSE), 1, any)), sum(apply(st_within(poi_pubs, forestinv_buf50, sparse=FALSE), 1, any)), sum(apply(st_within(poi_pubs, forestinv_buf500, sparse=FALSE), 1, any)))
# forestinv_counts <- rbind(forestinv_counts, pubs_forestinv_row)
#
# colnames(forestinv_counts) <- c("Within Woodlands", "...50m", "...500m")
# Generate dataframe from rows based on percentages of totals
# TODO: fix error generated by ecs_forestinv_row_pct using ecs as sf().
# Shift to using table summary function
# ecs_forestinv_row_pct <- ecs_forestinv_row/length(ecs)
# pow_forestinv_row_pct <- pow_forestinv_row/length(pow_pointX)
# dtas_forestinv_row_pct <- dtas_forestinv_row/length(dtas)
# transition_forestinv_row_pct <- transition_forestinv_row/length(transition)
# permaculture_forestinv_row_pct <- permaculture_forestinv_row/length(permaculture)
# grocery_forestinv_row_pct <- grocery_forestinv_row/length(poi_grocery)
# pubs_forestinv_row_pct <- pubs_forestinv_row/length(poi_pubs)
#
# forestinv_counts_pct <- rbind(ecs_forestinv_row_pct, pow_forestinv_row_pct)
# forestinv_counts_pct <- rbind(forestinv_counts_pct, dtas_forestinv_row_pct)
# forestinv_counts_pct <- rbind(forestinv_counts_pct, transition_forestinv_row_pct)
# forestinv_counts_pct <- rbind(forestinv_counts_pct, permaculture_forestinv_row_pct)
# forestinv_counts_pct <- rbind(forestinv_counts_pct, grocery_forestinv_row_pct)
# forestinv_counts_pct <- rbind(forestinv_counts_pct, pubs_forestinv_row_pct)
# colnames(forestinv_counts_pct) <- c("% Within Woodlands", "% within 50m", "% within 500m")
#
# # Merge into larger dataframe
# forestinv_counts_merged <- cbind(forestinv_counts, forestinv_counts_pct)
# Generate dataframe based on scenicareas buffers
ecs_scenicareas_row <- c(sum(apply(st_within(ecs, scenicareas_simplified, sparse=FALSE), 1, any)), sum(apply(st_within(ecs, scenicareas_buf50, sparse=FALSE), 1, any)), sum(apply(st_within(ecs, scenicareas_buf500, sparse=FALSE), 1, any)))
pow_scenicareas_row <- c(sum(apply(st_within(pow_pointX, scenicareas_simplified, sparse=FALSE), 1, any)), sum(apply(st_within(pow_pointX, scenicareas_buf50, sparse=FALSE), 1, any)), sum(apply(st_within(pow_pointX, scenicareas_buf500, sparse=FALSE), 1, any)))
scenicareas_counts <- rbind(ecs_scenicareas_row, pow_scenicareas_row)
dtas_scenicareas_row <- c(sum(apply(st_within(dtas, scenicareas_simplified, sparse=FALSE), 1, any)), sum(apply(st_within(dtas, scenicareas_buf50, sparse=FALSE), 1, any)), sum(apply(st_within(dtas, scenicareas_buf500, sparse=FALSE), 1, any)))
scenicareas_counts <- rbind(scenicareas_counts, dtas_scenicareas_row)
transition_scenicareas_row <- c(sum(apply(st_within(transition, scenicareas_simplified, sparse=FALSE), 1, any)), sum(apply(st_within(transition, scenicareas_buf50, sparse=FALSE), 1, any)), sum(apply(st_within(transition, scenicareas_buf500, sparse=FALSE), 1, any)))
scenicareas_counts <- rbind(scenicareas_counts, transition_scenicareas_row)
permaculture_scenicareas_row <- c(sum(apply(st_within(permaculture, scenicareas_simplified, sparse=FALSE), 1, any)), sum(apply(st_within(permaculture, scenicareas_buf50, sparse=FALSE), 1, any)), sum(apply(st_within(permaculture, scenicareas_buf500, sparse=FALSE), 1, any)))
scenicareas_counts <- rbind(scenicareas_counts, permaculture_scenicareas_row)
grocery_scenicareas_row <- c(sum(apply(st_within(poi_grocery, scenicareas_simplified, sparse=FALSE), 1, any)), sum(apply(st_within(poi_grocery, scenicareas_buf50, sparse=FALSE), 1, any)), sum(apply(st_within(poi_grocery, scenicareas_buf500, sparse=FALSE), 1, any)))
scenicareas_counts <- rbind(scenicareas_counts, grocery_scenicareas_row)
pubs_scenicareas_row <- c(sum(apply(st_within(poi_pubs, scenicareas_simplified, sparse=FALSE), 1, any)), sum(apply(st_within(poi_pubs, scenicareas_buf50, sparse=FALSE), 1, any)), sum(apply(st_within(poi_pubs, scenicareas_buf500, sparse=FALSE), 1, any)))
scenicareas_counts <- rbind(scenicareas_counts, pubs_scenicareas_row)
colnames(scenicareas_counts) <- c("Within Scenic Areas", "...50m", "...500m")
# Generate dataframe from rows based on percentages of totals
ecs_scenicareas_row_pct <- ecs_scenicareas_row/length(ecs)
pow_scenicareas_row_pct <- pow_scenicareas_row/length(pow_pointX)
dtas_scenicareas_row_pct <- dtas_scenicareas_row/length(dtas)
transition_scenicareas_row_pct <- transition_scenicareas_row/length(transition)
permaculture_scenicareas_row_pct <- permaculture_scenicareas_row/length(permaculture)
grocery_scenicareas_row_pct <- grocery_scenicareas_row/length(poi_grocery)
pubs_scenicareas_row_pct <- pubs_scenicareas_row/length(poi_pubs)
scenicareas_counts_pct <- rbind(ecs_scenicareas_row_pct, pow_scenicareas_row_pct)
scenicareas_counts_pct <- rbind(scenicareas_counts_pct, dtas_scenicareas_row_pct)
scenicareas_counts_pct <- rbind(scenicareas_counts_pct, transition_scenicareas_row_pct)
scenicareas_counts_pct <- rbind(scenicareas_counts_pct, permaculture_scenicareas_row_pct)
scenicareas_counts_pct <- rbind(scenicareas_counts_pct, grocery_scenicareas_row_pct)
scenicareas_counts_pct <- rbind(scenicareas_counts_pct, pubs_scenicareas_row_pct)
colnames(scenicareas_counts_pct) <- c("% Within scenicareass", "% within 50m", "% within 500m")
# Merge into larger dataframe
scenicareas_counts_merged <- cbind(scenicareas_counts, scenicareas_counts_pct)
```
# Proximity to "Wilderness"
Chasing down a curiosity, I decided to try and calculate whether proximity to "wilderness" or "scenic nature" or just trees might have some impact on generating more mobilised communities. I realised that there would be several problems with this kind of calculation up front, first being that "nature" is a deeply problematic construct, reviled by geographers and philosophers alike. With this in mind, I identified several different ways of reckoning wilderness, starting with the highly anachronistic "Scenic Land" designation from the 1970s. Then I pursued the more carefully calculated "core wild areas" generated by SNH just a few years ago. However, even the core wile areas concept has been criticised heavily, so I also expanded out my search to include all sites of special scientific interest and then went even wider to include the Scottish Forestry Service's "Native Woodland" and finally, the most generic possible measurement, any land identified as forested at the last Forest Inventory.
Proximity to these areas was the next concern, because many of these designations deliberately exclude human habitat, so it was necessary to measure the number of sites within proximity. There is a question which lies here regarding aesthetics, namely, what sort of proximity might generate an affective connection? From my own experience, I decided upon the distance represented by a short walk, i.e. a half-kilometre. However, with the more generic measurements, such as SSSI and forestation, this wouldn't do, as there are so many of these sites that a buffer of 500 meters encapsulates almost all of inhabited Scotland. So for these sites I also calculated a count within 50 metres.
So what did I discover? The results were inconclusive. First, it is important to note that on the whole, Eco-Congregations tend to be more urban than place of worship taken generally at a rate of nearly 3:1 (5.4% of Eco-Congregations lie in areas currently designated as "Very Remote Rural Areas" whereas nearly 15% of places of worship lie in these areas), so what I was testing for was whether this gap was smaller when specifying these various forms of "wild" remoteness. For our narrowest measurements, there were so few sites captured as to render measurement unreliable. There are, for obvious reasons, `st_within(ecs, wildland)` sites located within any of SNG's core wild areas. Similarly, there are very few of our activist communities located within SSSI's (only `st_within(pow_pointX, sssi)` places of worship out of `r length(pow_pointX)`, `st_within(transition, sssi)` transition towns, (or 2%) and `st_within(dtas, sssi)` community development trusts (3%)). However, expanding this out makes things a bit more interesting, within 50 metres of SSSI's in Scotland lie `st_within(ecs, sssi_buf50)` Eco-Congregations (or just under 1%), which compares favourably with the `st_within(pow_pointX, sssi_buf50)` places of worship (or just 1.5%) far exceeding our ratio (1:1.5 vs. 1:3). This is the same with our more anachronistic measure of "scenic areas," there are 7 eco-congregations within these areas, and 175 places of worship, making for a ratio of nearly 1:2 (2.1% vs. 4.3%). Taking our final measure, of forested areas, this is hard to calculate, as only [commented out for now] Eco-Congregation lies within either native or generally forested land.
```{r 13_wilderness_tables}
# Output mmd tables using kable
sssi_counts_merged %>%
kable(format = "html", col.names = colnames(sssi_counts_merged), caption = "Group counts within SSSIs") %>%
kable_styling(bootstrap_options = c("striped", "hover", "condensed", full_width = F, "responsive"))
wildland_counts_merged %>%
kable(format = "html", col.names = colnames(wildland_counts_merged), caption = "Group counts within Wildland Areas") %>%
kable_styling(bootstrap_options = c("striped", "hover", "condensed", full_width = F, "responsive"))
# forestinv_counts_merged %>%
# kable(format = "html", col.names = colnames(forestinv_counts_merged), caption = "Group counts within Woodlands") %>%
# kable_styling(bootstrap_options = c("striped", "hover", "condensed", full_width = F, "responsive"))
scenicareas_counts_merged %>%
kable(format = "html", col.names = colnames(scenicareas_counts_merged), caption = "Group counts within Scenic Areas") %>%
kable_styling(bootstrap_options = c("striped", "hover", "condensed", full_width = F, "responsive"))
# Output CSV files for tables above
write.csv(sssi_counts_merged, "derivedData/sssi_counts_merged.csv", row.names=TRUE)
write.csv(wildland_counts_merged, "derivedData/wildland_counts_merged.csv", row.names=TRUE)
# write.csv(forestinv_counts_merged, "derivedData/forestinv_counts_merged.csv", row.names=TRUE)
write.csv(scenicareas_counts_merged, "derivedData/scenicareas_counts_merged.csv", row.names=TRUE)
```
```{r 14_sssi_ecs_buffer_plot, message=FALSE, warning=FALSE, fig.width=4, fig.cap="Figure 11"}
# Plot SSSI polygons (showing buffers) with ECS points (coloured by location)
# TODO set bounding box to clip all polygons (or identify offending layer)
tm_shape(sssi_simplified, bbox = scotland) +
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) + tm_borders(lwd=0.01) +
tm_shape(ecs) + tm_dots("red", size = .02, alpha = .4) +
# tm_shape(ecs_sssi50m) + tm_dots("yellow", size = .5, alpha = .4) +
# tm_shape(ecs_sssi500m) + tm_dots("orange", size = .5, alpha = .4) +
# tm_shape(ecs_sssibeyond500m) + tm_dots("red", size = .5, alpha = .4)
# 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 = "Figure 11",
title.size = .7,
legend.title.size = .7
)
```
```{r 15_all_wilderness_ecs_plot, message=FALSE, warning=FALSE, fig.width=4, fig.cap="Figure 12"}
# Plot map with all wilderness shapes on it
# TODO set bounding box to clip all polygons (or identify offending layer)
tm_shape(sssi_simplified, bbox = scotland) + tm_fill(col = "blue", alpha = 0.4, lwd=0.01, title = "Wilderness Areas") +
tm_shape(wildland_simplified, bbox = scotland) + tm_fill(col = "green", alpha = 0.4, lwd=0.01) +
# tm_shape(forestinv_simplified, bbox = scotland) + tm_fill(col = "orange", alpha = 0.4, lwd=0.01) +
tm_shape(scenicareas_simplified, bbox = scotland) + tm_fill(col = "orange", alpha = 0.4, lwd=0.01) +
tm_shape(admin_lev1) + tm_borders(lwd=0.01) +
# tm_scale_bar(breaks = c(0, 100, 200), size = 1) +
tm_shape(ecs) + tm_dots("red", size = .02, alpha = .4) +
tm_shape(pow_pointX) + tm_dots("orange", size = .01, alpha = .2) +
tm_shape(dtas) + tm_dots("blue", size = .02, alpha = .4) +
tm_shape(transition) + tm_dots("green", size = .02, alpha = .4) +
tm_shape(permaculture) + tm_dots("pink", size = .025, alpha = .4) +
# 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 = "Figure 12",
title.size = .7,
legend.title.size = .7
)
```
# Appendix A
```{r admin_table}
# Output CSV files for various levels of admin
write.csv(admin_lev1, "derivedData/admin_lev1.csv", row.names=FALSE)
write.csv(admin_lev2, "derivedData/admin_lev2.csv", row.names=FALSE)
write.csv(ecs, "derivedData/ecs.csv", row.names=FALSE)
write.csv(transition, "derivedData/transition.csv", row.names=FALSE)
write.csv(permaculture, "derivedData/permaculture.csv", row.names=FALSE)
write.csv(dtas, "derivedData/dtas.csv", row.names=FALSE)
write.csv(simd, "derivedData/simd.csv", row.names=FALSE)
# Output mmd tables using kable
admin_lev1_df <- st_set_geometry(admin_lev1, NULL)
admin_lev1_prop_df <- select(admin_lev1_df, name, ecs_count, ecs_percent, pow_count, pow_percent, transition_count, transition_percent, dtas_count, dtas_percent, permaculture_count, permaculture_percent)
admin_lev1_df %>%
kable(format = "html", col.names = colnames(admin_lev1_df)) %>%
kable_styling(bootstrap_options = c("striped", "hover", "condensed")) %>%
kableExtra::scroll_box(width = "100%", height = "800px")
```
# Appendix B - Data by Urban / Rural Classification
```{r urbanrural_table}
# Output CSV files for urbanrural tables
write.csv(urbanrural, "derivedData/urbanrural.csv", row.names=FALSE)
# Output mmd tables using kable
urbanrural_table <- st_set_geometry(urbanrural, NULL)
urbanrural_table <- select(urbanrural_table, UR8FOLD, ecs_count:permaculture_percent)
urbanrural_table %>%
kable(format = "html", col.names = colnames(urbanrural_table)) %>%
kable_styling(bootstrap_options = c("striped", "hover", "condensed")) %>%
kableExtra::scroll_box(width = "100%")
```
# Citations
[^15541312]: This research was jointly funded by the AHRC/ESRC under project numnbers AH/K005456/1 and AH/P005063/1.
[^158261118]: This is not to say that there have been no collaborations before 2000, noteworthy in this respect is the WWF who helped to found the Alliance of Religion and Conservation (ARC) in 1985.
[^159141043]: This suggestion should be qualified - RSPB would greatly exceed ECS both in terms of the number of individual subscribers and budget. The RSPB trustee's report for 2013-2014 suggests that their member base was 1,114,938 people across Britain with a net income of £127m - the latter of which exceeds the Church of Scotland. If we adjust this based on the Scottish share of the population of the United Kingdom as of the 2011 census (8.3%) this leaves us with an income of £9.93m. The British charity commission requires charities to self-report the number of volunteers and staff, and from their most recent statistics we learn that RSPB engaged with 17,600 volunteers and employed 2,110 members of staff. Again, adjusted for population, this leaves 1,460 volunteers in Scotland and 176 staff. However, if we measure environmental groups based on the number of sites they maintain, RSPB has only 40 reserves with varying levels of local community engagement. For comparison, as of Sep 14 2015, Friends of the Earth Scotland had only 10 local groups (concentrated mostly in large urban areas). Depending on how one measures "volunteerism," it may be possible that ECS has more engaged volunteers in Scotland as well - if each ECS group had only 4 "volunteers" then this would exceed RSPB.
[^15541313]: Kidwell, Jeremy. (2016). Eco-Congregation Scotland, 2014-2016. University of Edinburgh. http://dx.doi.org/10.7488/ds/1357. Include citation here to RDJ article
[^15541342]:My dataset on transition towns will be made available later in 2016. Initial data was aquired from the Transition Scotland website http://www.transitionscotland.org/transition-in-scotland on December 10, 2014. We are currently in the process of collaboratively generating a more up-to-date dataset which will reflect their collaboration with SCCAN.
[^177171536]: For further detail on Dataset generation, see Kidwell, Forthcoming, 2018.
[^158261232]:Data was acquired from the Development Trusts Association website, http://www.dtascot.org.uk, accessed on 20 July 2015. As above, we are currently in the process of active collaboration with volunteers from the DTAS to co-generate a new dataset.
[^15541614]:PointX data for "Landscape Data" items is sourced from Ordnance Survey Land-Line and MasterMap(R) and the data points are augmented with additional information provided through research by PointX staff, and data aquired from unidentified "local data companie(s)" and the "118 Information" database (see: http://www.118information.co.uk). This data is under license and cannot be made available for use. It is important to note that I became aware of inaccuracies in this dataset over the course of use and subsequently generated my own dataset in collaboration with churches in Scotland. This will be made available later in 2016. I am in active conversation with OS about improving the quality of the data in PointX regarding places of worship.
[^15826124]:Interview with Margaret Warnock, 29 Aug 2014.
[^158261210]:From http://www.forthenvironmentlink.org, accessed 12 July 2015.
[^1554162]:From the Transition map key, "Green pins are 'official' groups
Blue pins are active communities who are connected to the Scottish Transition network Yellow pins show interest in this area"
[^15571030]:This was calculated by calculating a 10m wide footprint for every postcode in Scotland, areas which are not within 10m of a postcode (as of May 2014) are counted as uninhabited.
[^159142242]: Fiona Tweedie, *Ecumenical Audit: Questionnaire Findings* (2014). [^footnote1]: Ref. IA article
[^15914204]:See note above regarding the data used from the PointX POI database. Note, for our research,we filtered out religious groups not represented within the Eco-Congregation footprint. We discuss representation by tradition and religion further below.adition and religion further below.