Fresnel Map
The Fresnel Map is a novel equal-area thematic mapping technique in which data is aggregated and visualised to doughnut-shaped zones that have the same area as the central circle.
Created in early 2020 during my doctoral research, it is inspired by Augustin-Jean Fresnel and Lionel March, who applied similar geometric techniques in architecture and civil engineering. The Codex Atlanticus 221v-b also depicts a diagram with a set of crescent-shaped zones that are equal in area.
An open source R package, fmap, has been created to produce Fresnel Maps and is available on Github. More information about this mapping technique can be found in my PhD thesis.
library(fmap)
library(sf)
library(dplyr)
# Load the sf datasets of cholera deaths and Soho pumps
data(cholera_deaths, soho_pumps)
# Filter the Broad Street Pump from the Soho pumps dataset
bstreet_pump <- soho_pumps %>% filter(soho.pump == "Broad Street")
# Visualise the Fresnel Map
fmap_plot(radius_inner = 125, ncircles = 8, geo_centre = bstreet_pump, geo_points = cholera_deaths, sum = "cholera.deaths")
Publications
Bolton, L.T. (2024). Cartographies of rooftop housing: techniques for mapping airspace development in London. Ph. D Thesis. University College London. Available at: https://discovery.ucl.ac.uk/id/eprint/10192942/ (Accessed: 28 June 2024). | View Thesis