Skip to content

Instantly share code, notes, and snippets.

@dewomser
Created January 23, 2023 22:54
Show Gist options
  • Save dewomser/d93700d267a4c68f100070a0677cc0ff to your computer and use it in GitHub Desktop.
Save dewomser/d93700d267a4c68f100070a0677cc0ff to your computer and use it in GitHub Desktop.
Radarvorhersage Aktuelle Daten von opendata.dwd.de Rohdaten/gezippt. Bash 1-liner
datum=$(date -u '+%y%m%d%H'); minute5=$(printf %02d $((($(date '+%M')-5)/5*5))) ; for ((i = 0 ; i < 125 ; i=i+5)); do wget https://opendata.dwd.de/weather/radar/radvor/re/RE$datum$minute5"_"$(printf %03d $i).gz; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment