File:Klimaleugnung Wandel.svg

Original file(SVG file, nominally 459 × 252 pixels, file size: 50 KB)

Captions

Captions

Change of climate denial over time

Summary edit

Description
English: Change of climate denial over time. Plotted data from report "The-New-Climate-Denial" pdf, Published January 16, 2024, Center for Countering Digital Hate, https://counterhate.com/
Date
Source Own work
Author Physikinger
SVG development
InfoField
W3C grn 
The SVG code is valid.
Created with Matplotlib-logo 
This plot was created with Matplotlib.
Source code
InfoField

Python code

# This source code is public domain

import numpy
import matplotlib.pyplot as plt

data = {
    2018: [48.1, 16.8, 3.9, 8.7, 22.6],
    2019: [33.6, 18.6, 3.6, 12.6, 31.6],
    2020: [22.4, 18.2, 5.2, 19.2, 35.1],
    2021: [17.7, 16.4, 4.9, 26.4, 34.6],
    2022: [17.3, 14.2, 4.9, 32.4, 31.2],
    2023: [13.8, 16.0, 5.5, 30.1, 34.6]
}

# Labels:
# 1. Global heating is not happening
# 2. Humangenerated greenhouse gasses are not causing global heating
# 3. The impacts of global heating are beneficial or harmless
# 4. Climate solutions won’t work
# 5. Climate science and the climate movement are unreliable

# German
text = """Globale Erwärmung
findet nicht statt,
Menschengemachte
Treibhausgase sind
nicht die Ursache,
Die Folgen sind
nützlich oder harmlos,
Die Klima-Lösungen
bewirken nichts,
Klimawissenschaften
und Bewegungen
sind nicht verlässlich""".split(',')

x = list(data.keys())
y = list([0] + data[year] for year in data)
yc = numpy.cumsum(y, axis=1) * 100 / numpy.sum(y, axis=1)[:,None]

plt.figure(figsize=(5.1,2.8))
for i in reversed(range(5)):
    plt.fill_between(x, yc[:,i], yc[:,i+1], color=f'C{i}', alpha=0.5, label=text[i].strip())
plt.plot(x,yc[:,1:], lw=0.9)
plt.title('Klima-Behauptungen im Wandel', loc='left')
plt.ylabel('Anteil (%)', labelpad=-4)
plt.legend(frameon=False, loc='center left', bbox_to_anchor=(1, 0.5))
plt.tight_layout()
plt.xlim(2018,2023)
plt.ylim(0,100)
plt.savefig('Klimaleugnung_Wandel.svg')

Licensing edit

I, the copyright holder of this work, hereby publish it under the following license:
Creative Commons CC-Zero This file is made available under the Creative Commons CC0 1.0 Universal Public Domain Dedication.
The person who associated a work with this deed has dedicated the work to the public domain by waiving all of their rights to the work worldwide under copyright law, including all related and neighboring rights, to the extent allowed by law. You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission.

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current20:27, 25 January 2024Thumbnail for version as of 20:27, 25 January 2024459 × 252 (50 KB)Physikinger (talk | contribs)Titel geändert: Klima-Behauptungen im Wandel
22:35, 22 January 2024Thumbnail for version as of 22:35, 22 January 2024459 × 252 (50 KB)Physikinger (talk | contribs)No spacing
22:24, 22 January 2024Thumbnail for version as of 22:24, 22 January 2024486 × 270 (50 KB)Physikinger (talk | contribs)Slightly improved
21:55, 22 January 2024Thumbnail for version as of 21:55, 22 January 2024495 × 270 (51 KB)Physikinger (talk | contribs)Uploaded own work with UploadWizard

There are no pages that use this file.

File usage on other wikis

The following other wikis use this file:

Metadata