Skip to content

Commit 36d39fa

Browse files
committed
Add data download scripts
1 parent de8bb29 commit 36d39fa

File tree

2 files changed

+41
-0
lines changed

2 files changed

+41
-0
lines changed

data_download/wget.tcwv.csh

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
#! /bin/csh -f
2+
#
3+
# c-shell script to download selected files from rda.ucar.edu using Wget
4+
# NOTE: if you want to run under a different shell, make sure you change
5+
# the 'set' commands according to your shell's syntax
6+
# after you save the file, don't forget to make it executable
7+
# i.e. - "chmod 755 <name_of_script>"
8+
#
9+
# Experienced Wget Users: add additional command-line flags here
10+
# Use the -r (--recursive) option with care
11+
set opts = "-N"
12+
#
13+
set cert_opt = ""
14+
# If you get a certificate verification error (version 1.10 or higher),
15+
# uncomment the following line:
16+
#set cert_opt = "--no-check-certificate"
17+
#
18+
# download the file(s)
19+
wget $cert_opt $opts https://data.rda.ucar.edu/ds633.0/e5.oper.an.sfc/202406/e5.oper.an.sfc.128_137_tcwv.ll025sc.2024060100_2024063023.nc
20+

data_download/wget.viwv.csh

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#! /bin/csh -f
2+
#
3+
# c-shell script to download selected files from rda.ucar.edu using Wget
4+
# NOTE: if you want to run under a different shell, make sure you change
5+
# the 'set' commands according to your shell's syntax
6+
# after you save the file, don't forget to make it executable
7+
# i.e. - "chmod 755 <name_of_script>"
8+
#
9+
# Experienced Wget Users: add additional command-line flags here
10+
# Use the -r (--recursive) option with care
11+
set opts = "-N"
12+
#
13+
set cert_opt = ""
14+
# If you get a certificate verification error (version 1.10 or higher),
15+
# uncomment the following line:
16+
#set cert_opt = "--no-check-certificate"
17+
#
18+
# download the file(s)
19+
wget $cert_opt $opts https://data.rda.ucar.edu/ds633.0/e5.oper.an.vinteg/202406/e5.oper.an.vinteg.162_071_viwve.ll025sc.2024060100_2024063023.nc
20+
wget $cert_opt $opts https://data.rda.ucar.edu/ds633.0/e5.oper.an.vinteg/202406/e5.oper.an.vinteg.162_072_viwvn.ll025sc.2024060100_2024063023.nc
21+

0 commit comments

Comments
 (0)