From 32ed4d62d9fae3f62db29fd73e1d9393aa1a8010 Mon Sep 17 00:00:00 2001 From: Jonas Gunz Date: Sun, 3 Sep 2023 23:04:46 +0200 Subject: improvements --- icon_download.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'icon_download.sh') diff --git a/icon_download.sh b/icon_download.sh index aaa4be9..5c58b73 100755 --- a/icon_download.sh +++ b/icon_download.sh @@ -4,21 +4,23 @@ # ///icon-d2_regular-lat-lon_pressure-level____ +# Detect latest with +# curl https://opendata.dwd.de/weather/nwp/content.log.bz2 | bzip2 -d + NPROC=$(nproc) OUTDIR=dwd_icon-d2 MODEL=icon-d2 MODEL_LONG=icon-d2_germany -BASE="http://opendata.dwd.de/weather/nwp" +BASE="https://opendata.dwd.de/weather/nwp" -RUN="18" +RUN="00" PARAMETERS=( "t" "relhum" "u" "v" "fi" ) # tot_prec and cape_ml/cin_ml is in 15min intervals and screws with xygrib PARAMETERS_SINGLE_LEVEL=( "w_ctmax" ) PRESSURE_LEVELS=( "1000" "975" "950" "850" "700" "600" "500" "400" "300" "250" "200" ) OFFSETS=( "000" "003" "006" "009" "012" "015" "018" "024" "027" "030" "033" "036" "039" "042" "045" "048" ) DATE=$(date +%Y%m%d) -DATE=20230901 mkdir -p $OUTDIR -- cgit v1.2.3