Skip to content

Commit 4d10f77

Browse files
committed
Update images from PDF
1 parent 601ccac commit 4d10f77

10 files changed

+40
-7
lines changed

1200dpi/common-language-1200dpi.png

7.03 MB
Loading

1200dpi/mind-the-gap-1200dpi.png

6.51 MB
Loading

300dpi/common-language-300dpi.png

800 KB
Loading

300dpi/mind-the-gap-300dpi.png

748 KB
Loading

README.md

Lines changed: 20 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,25 +6,38 @@ These illustrations were contracted by Zarr, a [NumFOCUS](https://numfocus.org)
66

77
## Attribution
88

9-
Please include an attribution similar to: *["Common language"](https://github.com/zarr-developers/zarr-illustrations-falk-2024/blob/main/common-language.jpg) by [Henning Falk](https://twitter.com/DrHenningFalk), ©2022 [NumFOCUS](https://numfocus.org/), is used under a [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/) license. Modifications to this photo include cropping.*
9+
Please include an attribution similar to: *["Mind the Gap"](https://github.com/zarr-developers/zarr-illustrations-falk-2024/blob/main//300dpi/mind-the-gap-300dpi.png)
10+
by [Henning Falk](https://twitter.com/DrHenningFalk), ©2022 [NumFOCUS](https://numfocus.org/), is used under a [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/) license. Modifications to this photo include cropping.*
1011

1112
## Citing the illustrations
1213

1314
Falk, H. zarr-developers/zarr-illustrations-falk-2024 | Zenodo [WWW Document], 2024. URL https://doi.org/10.5281/zenodo.12751377 (accessed 7.16.2024).
1415

1516
## Images by name
1617

17-
- [Producers and consumers](#producers-consumers)
18+
- [Mind the Gap](#mind-the-gap)
1819
- [Common language](#common-language)
1920

20-
### "Producers and consumers"
21+
### "Mind the Gap"
2122

22-
![Producers consumers](/originals/producers-consumers.jpg)
23+
![Mind the gap](/300dpi/mind-the-gap-300dpi.png)
2324

24-
* Data producers and data consumers approach problems from different perspectives. Although their expertise is highly complementary, mutual understanding and communication is often challenging and hampers interdisciplinary collaboration.
25+
* [Hi-res PNG](/1200dpi/mind-the-gap-1200dpi.png)
26+
* [Original PDF](/originals/mind-the-gap.pdf)
27+
28+
> Data producers and data consumers approach problems from different
29+
> perspectives. Although their expertise is highly complementary, mutual
30+
> understanding and communication is often challenging and hampers
31+
> interdisciplinary collaboration.
2532
2633
### "Common language"
2734

28-
![Common language](/originals/common-language.jpg)
35+
![Common language](/300dpi/common-language-300dpi.png)
36+
37+
* [Hi-res PNG](/1200dpi/common-language-1200dpi.png)
38+
* [Original PDF](/originals/common-language.pdf)
2939

30-
* Developing efficient ways to communicate (e.g. a ‘common language’) allows data producers and consumers to work closely together and acquire novel insights by solving challenges that would have been too hard for either to tackle alone.
40+
> Developing efficient ways to communicate (e.g. a ‘common language’) allows
41+
> data producers and consumers to work closely together and acquire novel
42+
> insights by solving challenges that would have been too hard for either to
43+
> tackle alone.

generate.sh

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
#!/usr/bin/env bash
2+
#
3+
# Convert all original PDFs to PNGs at various DPI settings.
4+
# By default 300 and 1200 are used. Setting the environment
5+
# variable "DPI" to a space separated list will change that.
6+
#
7+
8+
DPI=${DPI:-"300 1200"}
9+
10+
set -e
11+
set -u
12+
set -x
13+
14+
for dpi in ${DPI}; do
15+
mkdir -p ${dpi}dpi
16+
for pdf in originals/*.pdf; do
17+
file=$(basename ${pdf})
18+
convert -density ${dpi} ${pdf} -trim +repage ${dpi}dpi/${file%%.pdf}-${dpi}dpi.png
19+
done
20+
done

originals/common-language.jpg

-2.01 MB
Binary file not shown.

originals/common-language.pdf

957 KB
Binary file not shown.

originals/mind-the-gap.pdf

944 KB
Binary file not shown.

originals/producers-consumers.jpg

-1.97 MB
Binary file not shown.

0 commit comments

Comments
 (0)