Suppression des départements DOM/TOM pour ne pas perturber l'échelle

This commit is contained in:
Colin Maudry
2025-06-16 23:02:37 +02:00
parent 88f37c199a
commit b0e440595a
+2
View File
@@ -22,6 +22,8 @@ lf = (
.group_by("Département")
.len("uid")
)
# Suppression des infos pour les DOM/TOM pour l'instant
lf = lf.remove(pl.col("Département").is_in(["97", "98"]))
with open("./data/departements-1000m.geojson") as f:
departements = json.load(f)