Chaque autorisation d’occupation du domaine public accordée à un commerce pour une terrasse, un étalage ou une contre-terrasse : 24 238 autorisations, pour environ 22 hectares de trottoirs et places de stationnement occupés.
Code
terrasses |> dplyr::filter(!is.na(nom_enseigne)) |> dplyr::arrange(dplyr::desc(surface_m2)) |> dplyr::transmute(Enseigne = nom_enseigne, Type = typologie, Arrondissement = ar,`Surface (m²)`=round(surface_m2, 1)) |>head(8) |> gt::gt() |> gt::tab_header(title ="8 plus grandes terrasses/étalages") |> gt::tab_options(table.width ="100%")
8 plus grandes terrasses/étalages
Enseigne
Type
Arrondissement
Surface (m²)
LA BELLE ROTONDE
TERRASSE OUVERTE
19
900.0
BILLY MANGO
TERRASSES OUVERTES SUR TROTTOIR
10
720.0
LAND_AND_MONKEYS AMSTERDAM
TERRASSES OUVERTES SUR TROTTOIR
9
420.0
BILLY MANGO
TERRASSES OUVERTES SUR TROTTOIR
10
240.0
SORA
TERRASSE ESTIVALE SUR TROTTOIR FACE À LA DEVANTURE
3
240.0
AMALUNA
CONTRE TERRASSE ESTIVALE SUR TROTTOIR FACE À LA DEVANTURE
18
164.6
CHEZ CHARLETTE
CONTRE TERRASSE ESTIVALE SUR PLACES ET TERRE-PLEIN
12
152.0
LA GRILLE
CONTRE-TERRASSE ESTIVALE SUR VOIE PIÉTONNE
12
144.0
Où sont-elles
Code
ggplot() +geom_sf(data = arr_sf, fill ="grey97", colour ="grey70", linewidth =0.3) +geom_hex(data = sf::st_coordinates(pts_sf) |> tibble::as_tibble(),aes(X, Y), bins =65, alpha =0.9) +scale_fill_viridis_c(option ="magma", direction =-1, trans ="sqrt", name ="Autorisations") +coord_sf(xlim = sf::st_bbox(arr_sf)[c("xmin", "xmax")],ylim = sf::st_bbox(arr_sf)[c("ymin", "ymax")], expand =FALSE) +labs(title ="Densité des terrasses et étalages autorisés") + theme_carte
Par arrondissement
Code
cnt <- terrasses |> dplyr::filter(!is.na(ar)) |> dplyr::count(ar, name ="n")arr_sf |> dplyr::left_join(cnt, by =c("c_ar"="ar")) |>ggplot() +geom_sf(aes(fill = n), colour ="white", linewidth =0.2) +scale_fill_viridis_c(option ="rocket", direction =-1, na.value ="grey92", name ="Autorisations") +labs(title ="Terrasses et étalages autorisés par arrondissement") + theme_carte
Types d’occupation
Code
terrasses |> dplyr::filter(!is.na(typologie)) |> dplyr::count(typologie, sort =TRUE) |>head(10) |> dplyr::mutate(typologie = stringr::str_to_sentence(typologie),typologie = forcats::fct_reorder(typologie, n)) |>ggplot(aes(n, typologie)) +geom_col(fill ="#c0392b", width =0.65) +geom_text(aes(label = n), hjust =-0.2, size =3) +scale_x_continuous(expand =expansion(mult =c(0, 0.12))) +labs(title ="Types d'autorisation les plus fréquents",subtitle ="Terrasses ouvertes et étalages dominent largement", x =NULL, y =NULL) + theme_barres
Les enseignes avec le plus d’autorisations
Code
terrasses |> dplyr::filter(!is.na(nom_enseigne), nom_enseigne !="") |> dplyr::count(nom_enseigne, sort =TRUE) |>head(10) |> dplyr::mutate(nom_enseigne = forcats::fct_reorder(nom_enseigne, n)) |>ggplot(aes(n, nom_enseigne)) +geom_col(fill ="#3b6f8a", width =0.6) +geom_text(aes(label = n), hjust =-0.2, size =3) +scale_x_continuous(expand =expansion(mult =c(0, 0.12))) +labs(title ="Enseignes avec le plus d'autorisations (multi-sites)",subtitle ="Chaînes de restauration et de distribution, comptées sur tous leurs points de vente",x =NULL, y =NULL) + theme_barres