library(sf)
library(dplyr)
library(mapview)
MUNICIPIOSgeo = st_read("../data/Municipalities_geo.gpkg", quiet = TRUE)
LISBON = MUNICIPIOSgeo |> filter(Municipality == "Lisboa") # filter only Lisbon16 Grids
16.1 Make grid
To make a grid we is the st_make_grid() function.
GRID = LISBON |>
st_transform(crs = 3857) |> # to a projected crs
st_make_grid(cellsize = 500, # meters, we are using a projected crs
what = "polygons",
square = TRUE) |> # if FALSE, hexagons
st_sf() |> # from list to sf
st_transform(crs = 4326) # to WGS84
GRID = GRID |>
mutate(id = c(1:nrow(GRID))) # just to give an ID to each cell
mapview(GRID, alpha = 0)16.2 Count points in polygons
We can use the grid to count survey respondents in each cell.
SURVEY = read.csv("../data/SURVEY.txt", sep = "\t")
SURVEYgeo = SURVEY |> st_as_sf(coords = c("lon", "lat"), crs = 4326) # convert to sf from coordinates
SURVEY_with_GRIDid = SURVEYgeo |>
st_join(GRID,
join = st_intersects) |>
st_drop_geometry() |>
group_by(id) |>
summarise(count = n()) |> # variable with the number of points
ungroup()
# back to grid
GRIDdensity = GRID |> left_join(SURVEY_with_GRIDid)
mapview(GRIDdensity, zcol = "count")Or to count bus stops in each cell.
BUSstops = st_read("../geo/Carris_stops.gpkg", quiet = TRUE)
BUS_with_GRIDid = BUSstops |>
st_join(GRID,
join = st_intersects) |>
st_drop_geometry() |>
group_by(id) |>
summarise(freq = sum(frequency)) |>
ungroup()
# back to grid
GRIDdensity = GRID |> left_join(BUS_with_GRIDid)
mapview(GRIDdensity |> filter(!is.na(freq)), # exclude NAs
zcol = "freq",
alpha.regions = 0.5, # area transparency
alpha = 0) # hide cell limits