From 891b265144dfc21611f8e03a6f4955a3d1dbe444 Mon Sep 17 00:00:00 2001 From: pietervdvn Date: Fri, 4 Jun 2021 19:32:53 +0200 Subject: [PATCH] Add alias --- Docs/Tools/csvGrapher.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Docs/Tools/csvGrapher.py b/Docs/Tools/csvGrapher.py index 4174cec6e..7a8f27203 100644 --- a/Docs/Tools/csvGrapher.py +++ b/Docs/Tools/csvGrapher.py @@ -396,6 +396,7 @@ theme_remappings = { "arbres":"arbres_llefia", "aed_brugge": "aed", "https://llefia.org/arbres/mapcomplete.json":"arbres_llefia", + "https://llefia.org/arbres/mapcomplete1.json":"arbres_llefia", "toevoegen of dit natuurreservaat toegangkelijk is":"buurtnatuur", "testing mapcomplete 0.0.0":"buurtnatuur", "https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/geveltuinen/geveltuinen.json": "geveltuintjes" @@ -436,10 +437,10 @@ def main(): stats = list(clean_input(csv.reader(csvfile, delimiter=',', quotechar='"'))) print("Found " + str(len(stats)) + " changesets") - # contributor_count(stats) + contributor_count(stats) create_graphs(stats) - # create_per_theme_graphs(stats, 15) - # create_per_contributor_graphs(stats, 25) + create_per_theme_graphs(stats, 15) + create_per_contributor_graphs(stats, 25) print("All done!")