As we're progressing with nationwide and force-specific hotspot determination we have had to reassess some of the
tooling we've been using so far, particularly for presenting and disseminating results, and with a view to producing
practical tools for practitioners and policymakers.
We've started to hit performance limitations with geopandas so are switching a lot of the CPU-intensive spatial code to
use an ephemeral duckdb instance with the
spatial extension. This is exceptionally fast, able
to load 3 years of national crime data (~18m incidents, England & Wales) from over 1500 individual parquet files, and
group the crimes into 200m hex cells (~1.5m) - all in well under 10 seconds.
We've previously used Streamlit as a front-end (see
here) but it's also not scaling well, proving somewhat
inflexible and has compatibility issues with duckdb, so we're looking at alternatives. Later in the project we'll post
a more definitive article on recommendations for the best (python) tooling, but in the meantime we're excited about
the possibilities duckdb enables and want to share some progress...
We demonstrated in part 1 that random data with no structural concentration will exhibit
some concentration using the traditional measures. In this article we taker a deeper dive into this claim.
Recall that our null hypothesis was that crimes are not concentrated, crime is is no more or less likely to occur
in any given spatial unit, and the chance of a crime occurrence is not affected by previous events.
Public crime data in the UK contains precise (but obfuscated) location data, imprecise temporal information (the month
of occurrence) and broad categorical information (around a dozen categories). Taking 3 years of data for incidents of
ASB in West Yorkshire, aggregating crime into spatial units (in this case LSOA) we can plot a graph of (naive) Gini over time.
This graph shows some clear seasonality - concentration increases in the winter and decreases in the summer. A fairly
obvious explanation for this would be that since antisocial behaviour generally occurs outdoors, there are simply more
outdoor gatherings in warmer weather and longer daylight hours, therefore more opportunities.
However, more careful analysis of the data shows the apparent seasonality is an illusion. Here's why...
When we look at crime counts at different spatial scales, it is often useful to try to understand the demographics of
the area. Older people are more likely to be victims of certain crimes, for instance, and for others there are often
correlations between crime incidence and the deprivation, socioeconomic status or other makeup of the area.
The UK census is the biggest source of demographic data, providing many attributes over various spatial scales. With
census data there is always a tradeoff between spatial and categorical resolutions, often to preserve anonymity. For
example, the highest spatial resolution for counts of people by age in years is MSOA, and at higher resolutions
(LSOA, OA) age is only given in 5-year bands.
Another very important consideration is that we will want to aggregate people to non-statistical geographies, such as
grids and hexes. In order to do this, we could simply place people at random points within the statistical geography,
then take those that fall within the new geography. However this can be unrealistic, particularly in areas that are
rural or contain large-scale non-residential infrastructure or bodies of water (despite Monty Python's boasts, nobody
in Yorkshire lives under a lake!).
Crime prevention interventions can be characterised in many different ways. The College of Policing’s Crime Reduction Toolkit and its underpinning EMMIE framework provide a robust approach for assessing what works to reduce crime. But applying that knowledge in practice requires us to think carefully about how specific interventions will interact with the spatial and temporal characteristics of the problems they are intended to address. Understanding not just whether something works, but where, when, and under what conditions, is crucial for matching interventions to the dynamics of crime on the ground.