#30DayMapChallenge
Day 23: Process
I used QGIS to create one image per year, and then turned them into an animation using ffmpeg.
The command used here to turn all the .png of the folder into one video:
ffmpeg -pattern_type glob -framerate 2 -i "*.png" -c:v libx264 -pix_fmt yuv420p output.mp4
add a skeleton here at some point
2 months ago