calais-data

Des données sur le passage à Calais - retour accueil

git clone git://bebou.netlib.re/calais-data
Log | Files | Refs |

commit b3d0e5b36d44fbd0490a90ef8e4c505c87a8f160
parent 7c715bb19a4d12322cc617b18578dc3e4024ed41
Auterice: Arthur Pons <arthur.pons@unistra.fr>
Date:   Thu, 10 Oct 2024 22:52:39 +0200

test de conversion en avif

Ca produit des fichiers vraiment petits donc pourquoi pas tester

Diffstat:
M.gitignore | 1+
Mmakefile | 15++++++++-------
2 files changed, 9 insertions(+), 7 deletions(-)

diff --git a/.gitignore b/.gitignore @@ -1,3 +1,4 @@ figures/*.tsv figures/*.png +figures/*.avif .*.sw? diff --git a/makefile b/makefile @@ -9,12 +9,14 @@ update : < dataset/windspeeds dataset/missingwindspeeds.sh | dataset/createlinks.sh | dataset/fetchwindspeeds.sh >> dataset/windspeeds deploy: figures - cp full.tsv /home/arthur/git/arthur.bebou/contents/calais-passage/ - cp weekdays.tsv /home/arthur/git/arthur.bebou/contents/calais-passage/ - cp figures/*.png /home/arthur/git/arthur.bebou/contents/calais-passage/ - cp figures/*.sh /home/arthur/git/arthur.bebou/contents/calais-passage/ - cp figures/*.gp /home/arthur/git/arthur.bebou/contents/calais-passage/ - cp figures/*.tsv /home/arthur/git/arthur.bebou/contents/calais-passage/ + @echo "Conversion en avif, ça prend du temps" + @find figures -name '*.png' | xargs -n1 sh -c 'echo conversion de $$1;convert $$1 $${1%png}avif' -- + cp full.tsv /home/arthur/git/arthur.bebou/contents/calais-passage/ + cp weekdays.tsv /home/arthur/git/arthur.bebou/contents/calais-passage/ + cp figures/*.avif /home/arthur/git/arthur.bebou/contents/calais-passage/ + cp figures/*.sh /home/arthur/git/arthur.bebou/contents/calais-passage/ + cp figures/*.gp /home/arthur/git/arthur.bebou/contents/calais-passage/ + cp figures/*.tsv /home/arthur/git/arthur.bebou/contents/calais-passage/ ## LE DATASET @@ -37,6 +39,5 @@ figures/fig%.tsv : figures/fig%.sh full.tsv weekdays.tsv figures/fig%.png : figures/fig%.gp figures/fig%.tsv full.tsv weekdays.tsv $< > $@ - @optipng $@ >&2 2> /dev/null .PHONY: update deploy updatewindspeeds