view c3s.sh @ 1:bd153c794da1 draft default tip

planemo upload for repository https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/c3s commit de74da48cc04c0cb261d07c451d00598beb834d9
author climate
date Thu, 08 Feb 2024 17:58:54 +0000
parents 250554670f72
children
line wrap: on
line source

#!/usr/bin/env bash

if [ -f download.tar.gz ]; then
   tar zxvf  download.tar.gz
   cat *.grib > tmp.grib
   cdo setgridtype,regular tmp.grib tmpg.grib
   cdo -f nc -t ecmwf copy tmpg.grib tmp.nc
elif [ -f download.zip ]; then
   unzip download.zip
   files=(*.nc)
   if [ -e "${files[0]}" ]; then
     mv ${files[0]} tmp.nc
   else
     cat *.grib > tmp.grib
     cdo setgridtype,regular tmp.grib tmpg.grib
     cdo -f nc -t ecmwf copy tmpg.grib tmp.nc
   fi
elif [ -f download.grib ]; then
   cdo -f nc -t ecmwf copy download.grib tmp.nc
elif [ -f download.nc ]; then
   mv download.nc tmp.nc
else
   echo "No data found! Check your request and/or credentials."
fi