briatte / briatte/selection-bv

Grenoble

Open
#1 0 comments 0 reactions 0 assignees View on GitHub
data
Dominant language
R
Stars
2
Forks
0
PR merge metrics
No merged PRs in 30d

Description

https://data.metropolegrenoble.fr/visualisation/information/?id=les-bureaux-de-vote

```r
library(sf)

# dernière mise à jour : 1er février 2024
gr1 <- "~/Downloads/decoupage_bureau_vote_epsg4326/" %>%
st_read()

# contours Voronoï Insee 2023
gr2 <- "sorties/Grenoble/contours-Grenoble-BV-2025.rds" %>%
read_rds()

ggplot(gr1) +
geom_sf(fill = NA, size = 2,
# dec_bureau_vote_exist == 1 (bureaux existants au 1er février 2024)
color = if_else(gr1$dec_bure_6 == 1, "turquoise", "grey")) +
geom_sf(data = gr2, fill = NA, color = "black") +
theme_minimal()

ggsave("bv-gre.png", width = 10, height = 10)
```

En turquoise, les contours officiels 2024 ; en gris, les contours supprimés ; et en noir, l'[approximation Insee](https://blog.insee.fr/a-vote-a-chaque-bureau-de-vote-ses-electeurs/) de 2023 à partir des adresses du Répertoire Électoral Unique :

Image

Contributor guide

No contributing guide indexed for this repository

Research direction

Start by reviewing the Grenoble source URL and the R code shown in the issue, including the `gr1` shapefile and `sorties/Grenoble/contours-Grenoble-BV-2025.rds`. The issue does not state a requested change or acceptance criteria, so first determine whether Grenoble data should be added or updated and what output is expected.

Written by the indexing model from the issue text.

Assessment

Tech stack
r
Domain
data
Issue type
Feature
Difficulty
3/5
Estimated time
1-2 days
Activity status
Stale
Clarity
Needs clarification
Newbie friendliness
25/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.