diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2023-10-15 23:14:11 +0200 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2023-10-15 23:14:11 +0200 |
commit | 61174cef4f892d1eb6f460d68117f70dee35ebcb (patch) | |
tree | 954b31d15bc6f32a5dd481bda2bcd1d37d10218b /icon_download.sh | |
parent | cb21f9f3d22ee5295de1175e2e3c3476421c7ac1 (diff) | |
download | meteo_toolbox-61174cef4f892d1eb6f460d68117f70dee35ebcb.tar.gz |
icon_download more levels
Diffstat (limited to 'icon_download.sh')
-rwxr-xr-x | icon_download.sh | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/icon_download.sh b/icon_download.sh index 6b27b02..24d1b5a 100755 --- a/icon_download.sh +++ b/icon_download.sh @@ -41,9 +41,11 @@ PARAMETER_FILENAME_CAPS=yes PARAMETERS=( "t" "relhum" "u" "v" "fi" "clc" ) # tot_prec and cape_ml/cin_ml is in 15min intervals and screws with xygrib -PARAMETERS_SINGLE_LEVEL=( "pmsl" ) -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" ) +PARAMETERS_SINGLE_LEVEL=( "pmsl" "t_2m" "relhum_2m" ) +# DE +#PRESSURE_LEVELS=( "1000" "975" "950" "850" "700" "600" "500" "400" "300" "250" "200" ) +PRESSURE_LEVELS=( "1000" "950" "925" "900" "875" "850" "825" "800" "775" "700" "600" "500" "400" "300" "250" "200" "150" "100" ) +OFFSETS=( "000" "003" "006" "009" "012" "015" "018" "021" "024" "027" "030" "033" "036" "039" "042" "045" "048" ) mkdir -p $OUTDIR @@ -101,7 +103,7 @@ for F in $OUTDIR/*.grib2.bz2; do bzip2 -df "$F" & done -rm -f $OUTDIR/combined.grib2 +rm -f $OUTDIR/combined.grib2* grib_copy $OUTDIR/*.grib2 $OUTDIR/combined.grib2 || exit 1 rm -f $OUTDIR/icon*.grib2 |