More work on cover

This commit is contained in:
Charlotte Van Petegem 2024-04-24 15:55:09 +02:00
parent d35a71e00e
commit 4b91d5a0c6
No known key found for this signature in database
GPG key ID: 019E764B7184435A
5 changed files with 25215 additions and 228 deletions

22428
cover/cover.svg Normal file

File diff suppressed because it is too large Load diff

After

Width:  |  Height:  |  Size: 827 KiB

14
cover/histogram.py Normal file
View file

@ -0,0 +1,14 @@
f = open('submissions.csv')
for i, line in enumerate(f):
line = line.strip()
date, num = line.split(',')
date = date.replace('-', '')
num = int(num)
print(f""" <rect
style="fill:#ffffff;fill-opacity:0.33;stroke-width:0.000540929;stroke:none;stroke-opacity:1"
id="hist{date}"
width="{352.6 / 2772}"
height="{num * (200 / 38771)}"
x="{i * 352.6 / 2772}"
y="{240 - num * (200 / 38771)}"
inkscape:label="hist{date}" />""")

2772
cover/submissions.csv Normal file

File diff suppressed because it is too large Load diff