This is plotting script quickly hacked together to visualize official COVID-19 infection data for Germany by the Robert-Koch-Institute.
To use, download one of the daily updated .xlsx files by the
Robert-Koch-Institute.
You can then open the julia console in the project with julia --project=@. and
resolve all dependencies with ]resolve.
Finally, you can load the script with include("main.jl").
The following script generates a png file given the .xlsx file.
fig = rki_plot("downloaded_rki_file.xlsx", "2021/04/10")
save("plot.png", fig.scene) # save the plot into plot.pngAnd now you can admire a wonderful plot.
I only have tested this on Julia 1.6, but 1.5 should be fine, too.
The included map data (landkreise.geojson) come from
here and
here.
