Mercurial > repos > climate > c3s
comparison c3s.sh @ 0:250554670f72 draft
"planemo upload for repository https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/c3s commit 04069ef63198279caf3d97de5a58fb32df12c811"
author | climate |
---|---|
date | Tue, 13 Apr 2021 18:32:45 +0000 |
parents | |
children | bd153c794da1 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:250554670f72 |
---|---|
1 #!/usr/bin/env bash | |
2 | |
3 if [ -f download.tar.gz ]; then | |
4 tar zxvf download.tar.gz | |
5 cat *.grib > tmp.grib | |
6 cdo setgridtype,regular tmp.grib tmpg.grib | |
7 cdo -f nc -t ecmwf copy tmpg.grib tmp.nc | |
8 elif [ -f download.zip ]; then | |
9 unzip download.zip | |
10 cat *.grib > tmp.grib | |
11 cdo setgridtype,regular tmp.grib tmpg.grib | |
12 cdo -f nc -t ecmwf copy tmpg.grib tmp.nc | |
13 elif [ -f download.grib ]; then | |
14 cdo -f nc -t ecmwf copy download.grib tmp.nc | |
15 elif [ -f download.nc ]; then | |
16 mv download.nc tmp.nc | |
17 else | |
18 echo "No data found! Check your request and/or credentials." | |
19 fi |