Skip to content

Commit bbe3d81

Browse files
committed
la totale
1 parent afff521 commit bbe3d81

File tree

1 file changed

+52
-0
lines changed

1 file changed

+52
-0
lines changed

la_totale.ksh

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
#!/bin/ksh
2+
3+
# Get config name
4+
config=$1
5+
6+
# Get CMEMS data
7+
cd datasets/CMEMS
8+
9+
for var in 'thetao' 'chl';do
10+
python get_data_sat.py -c $config -c $var -s CMEMS
11+
python interp_cmems.py -c $config -c $var -s CMEMS
12+
done
13+
14+
15+
# Do plots
16+
cd ../../plot
17+
18+
for var in 'thetao' 'chl';do
19+
#python time_series_data_vs_sat.py -c $config -v $var -s CMEMS
20+
python plot_2D_data_vs_sat.py -c $config -v $var -s CMEMS
21+
python plot_sat_timeseries.py -c $config -v $var -s CMEMS
22+
done
23+
24+
25+
for var in 'chl' 'zooc' 'no3';do
26+
python make_plot_2D.py -c $config -v $var
27+
done
28+
29+
30+
# Do Argo
31+
cd ../datasets/ARGO
32+
33+
python get_argo.py -c $config
34+
python compare_argo.py -c $config
35+
36+
37+
# Do Boussole
38+
cd ../BOUSSOLE
39+
python read_boussole.py -c $config
40+
41+
42+
# Do Okubo
43+
cd ../../tools/okubo/
44+
source ~/venvs/ow2/bin/activate
45+
46+
python compute_okubo.py -c $config
47+
48+
49+
50+
51+
52+

0 commit comments

Comments
 (0)