Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Properly merge climate-group-names #52

Merged
merged 1 commit into from
Apr 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,32 @@
# keys: as in ACLED (with exceptions, see below)
# values: other names, e. g. in the original language
movement_aliases = {
"Animal Rebellion": ["AR"], # was renamed to "Animal Rising"
"Animal Rising": ["AR"],
"Alternatiba": [],
"Attac": [],
"BUND": ["Bund für Umwelt und Naturschutz Deutschland"],
"Declare Emergency": [],
"DGUB: The Green Youth Movement": ["Den Grønne Ungdomsbevægelse"],
"Ende Gelaende": [],
"Extinction Rebellion": [],
"Extinction Rebellion": ["XR"],
"Fridays for Future": [],
"Friends of the Earth": [],
"Greenpeace": [],
"Insulate Britain": [],
"Just Stop Oil (United Kingdom)": [],
"Just Stop Oil (UK)": [],
"Just Stop Oil (Norway)": ["Stopp Oljeletinga"],
"Last Renovation": ["Dernière Rénovation"],
"Last Generation (Germany)": ["Letzte Generation"],
"Last Generation (Austria)": ["Letzte Generation"],
"Last Generation (Italy)": ["Ultima Generazione"],
"Last Generation (Czech Republic)": ["Poslední generace"],
"Legambiente": [],
"NB: Emergency Break": ["Nødbremsen"],
"Renovate Switzerland": [],
"Restore Passenger Rail": [],
"Restore Wetlands Movement": ["Återställ Våtmarker"],
"DxE: Direct Action Everywhere": ["DxE"]
}

movements = list(movement_aliases.keys())
Expand All @@ -39,6 +44,7 @@
.replace("Extinction Rebellion", "XR: Extinction Rebellion")
.replace("Just Stop Oil (UK)", "Just Stop Oil")
.replace("Just Stop Oil (Norway)", "Just Stop Oil")
.replace("Direct Action Everywhere", "DxE: Direct Action Everywhere")
for k in movement_aliases.keys()
]

Expand Down
Loading