Bike facilities

Follow the way

Berlin
Bike
Open Data
2022
Author

Néhémie Strupler

Published

March 25, 2022

A dataset provided by the municipality of Berlin includes information about the bike facilities to ride more safely in the city. It includes details about the following categories:

Exhibit of the day

What happens if we map all these facilities over the road network?

Show the code of the exhibit
library(sf)
library(dplyr)
library(ggplot2)
library(units)

# Load data road network
# "https://fbinter.stadt-berlin.de/fb/wfs/data/senstadt/s_vms_radverkehrsanlagen_rva?service=wfs&version=2.0.0&request=GetFeature&TYPENAMES=s_vms_radverkehrsanlagen_rva"

rva <- read_sf("raw_data/s_vms_radverkehrsanlagen_rva.gml")
rva <- rva[,4:11]
rva <- st_set_crs(rva, 25833) #ETRS89 / UTM zone 33N


dsn <- read_sf("raw_data/Detailnetz-Strassenabschnitte.shp")

# Berlin outline
lor <- st_read("raw_data/lor_planungsraeume_2021.gml")
colnames(lor)[1:6] |> tolower() ->  colnames(lor)[1:6]
lor$plr_id <- lor$plr_id |> as.factor()
subset(lor, select=-bez) -> lor
lor_outer <- st_as_sf(st_union(lor))

ggplot(rva) +
  geom_sf(data = lor_outer,
          fill = "black") +
  geom_sf(data = dsn,
          col = "white",
          alpha = 0.5) +
  geom_sf(data = rva,
           col = "red",
          size = 1.2,
         alpha = 0.9) +
  theme_void() +
  labs(title = "Bike facilities",
       subtitle = "Berlin / 2020",
      caption = "Data: Radverkehrsanlagen + Detailnetz - Straßenabschnitte + Detailnetz - Straßenabschnitte \nCC BY Amt für Statistik Berlin-Brandenburg & Geoportal Berlin")

ggsave("2022-03-25_bike_facilities.jpg",
       width = 7.0,
       height = 6,
       bg = "white",
       dpi = 220)

Data:Radverkehrsanlagen + Detailnetz Straßenabschnitte CC BY Geoportal Berlin”. Plot made with R, sf and ggplot2 (code in the source page as comments).

It looks quite impressive, but most of the network consists of shared sidewalks, i.e., ways that are free to use for cyclists but shared with other people. It does not represent a network dedicated to bikers, which would be much smaller (and depressing).