Choropleth Mapping

Short DescriptionChoropleth Mapping helps to understand and analyze the spatial distribution and patterns of health-related determinates and outcomes within urban areas.
DataGeospatial data (vector or raster) of health variables
Suggested toolsGeodaPythonQGIS
CategorySpatial Visualisation
VariableUnivariate

Overview


Creating a choropleth map for urban health involves visualizing health indicators or variables across different geographic regions or boundaries, such as neighborhoods, census tracts, or administrative units. The map uses color gradients or patterns to represent the variations in the health indicators across the urban area.

Example of a choropleth map revealing the prevalence of depression in Inner London at the 350m*350m grid cell level

Description


Preprocessing spatial information

Data standardisation

Visualisation and mapping:

Classification methods for choropleth maps

💡
The choice of classification method can significantly impact the interpretation of the map and how effectively it communicates the underlying data.
  1. Equal Interval: The equal interval classification divides the range of data values into equal intervals. Each interval represents an equal range of values, such as 0-10, 10-20, 20-30, and so on. This method is straightforward and suitable when the data distribution is relatively uniform.
  1. Quantile: The quantile classification divides the data into equal numbers of observations in each class. It ensures an equal distribution of data points across classes, making it useful for avoiding biases due to extreme values or data outliers.
  1. Natural Breaks (Jenks): The natural breaks classification aims to find natural groupings or clusters within the data based on minimizing the variance within each class and maximizing the differences between classes. It seeks to identify distinct breakpoints that indicate significant shifts in the data distribution.
  1. Standard Deviation: The standard deviation classification uses standard deviation as a measure to determine class breaks. It places data values within a certain number of standard deviations from the mean into specific classes. This method can help identify areas with extreme values or outliers.

Tutorial (External)