1 | #!/bin/bash |
---|
2 | #set -vx |
---|
3 | |
---|
4 | source ~/env_Multi_atlas.sh |
---|
5 | |
---|
6 | comp=$1 |
---|
7 | |
---|
8 | local=`pwd -P` |
---|
9 | |
---|
10 | if [ 1 == 0 ]; then |
---|
11 | login=`whoami` |
---|
12 | hostname=`hostname` |
---|
13 | if [ ${hostname:0:5} = cicla ] ; then |
---|
14 | DODSDIR=/thredds/ipsl |
---|
15 | dthredds=thredds-su.ipsl.fr/thredds/fileServer/ipsl_thredds |
---|
16 | HTML00=http://${dthredds}/$login |
---|
17 | machine=ciclad |
---|
18 | fi |
---|
19 | if [ ${hostname:0:5} = spiri ] ; then |
---|
20 | DODSDIR=/thredds/ipsl |
---|
21 | dthredds=thredds-su.ipsl.fr/thredds/fileServer/ipsl_thredds |
---|
22 | HTML00=http://${dthredds}/$login |
---|
23 | machine=spirit |
---|
24 | fi |
---|
25 | if [ ${hostname:0:5} = camel ] ; then |
---|
26 | DODSDIR=/thredds/ipsl |
---|
27 | fi |
---|
28 | if [ ${hostname:0:5} = irene ] ; then |
---|
29 | DODSDIR= |
---|
30 | fi |
---|
31 | if [ ${hostname:0:5} = jean- ] ; then |
---|
32 | DODSDIR= |
---|
33 | fi |
---|
34 | fi |
---|
35 | |
---|
36 | COMP_D=$DODSDIR/$login/lmdz/MultiSimu/$comp |
---|
37 | entetef=$COMP_D/entete.html |
---|
38 | |
---|
39 | ############################################################################# |
---|
40 | #echo YEARS $years |
---|
41 | ############################################################################# |
---|
42 | |
---|
43 | compf=$COMP_D/AXE3.html |
---|
44 | HTML=$HTML00/lmdz/MultiSimu/$comp |
---|
45 | |
---|
46 | cat $entetef > $compf |
---|
47 | |
---|
48 | echo '<hr>' >> $compf |
---|
49 | |
---|
50 | cat <<eod>> $compf |
---|
51 | <h1> Axe 3: Nuages et rayonnement </h1> |
---|
52 | |
---|
53 | <hr> |
---|
54 | Responsable : Ionela Musat <br> |
---|
55 | musat@lmd.jussieu.fr <br> |
---|
56 | Liste de diffusion : lmdz_nuages@mailhost.lmd.jussieu.fr |
---|
57 | |
---|
58 | <h2> Moyennes zonales </h2> |
---|
59 | |
---|
60 | <h3> <a href="$HTML/ZON/YEAR/index.html"> Moyennes zonales YEAR </a> </h3> |
---|
61 | |
---|
62 | <h3> <a href="$HTML/ZON/JJA/index.html"> Moyennes zonales JJA </a> </h3> |
---|
63 | |
---|
64 | <h3> <a href="$HTML/ZON/DJF/index.html"> Moyennes zonales DJF </a> </h3> |
---|
65 | |
---|
66 | <h3> <a href="$HTML/AMMACROSS/JJAS/index.html"> Moyennes zonales AMMACROSS JJAS </a> </h3> |
---|
67 | |
---|
68 | <h2> Diagnos simulateur d'observable satellite COSP </h2> |
---|
69 | |
---|
70 | <h3> <a href="$HTML/AXE3/ReflCld/index.html"> Histogram 2D Reflectance vs Cloud Fraction </a> </h3> |
---|
71 | |
---|
72 | <h3> <a href="$HTML/AXE3/VertCldCalipso/Annuel/index.html"> Distribution verticale de la fraction nuageuse Calipso YEAR </a> </h3> |
---|
73 | <h3> <a href="$HTML/AXE3/VertCldCalipso/DJF/index.html"> Distribution verticale de la fraction nuageuse Calipso DJF </a> </h3> |
---|
74 | <h3> <a href="$HTML/AXE3/VertCldCalipso/JJA/index.html"> Distribution verticale de la fraction nuageuse Calipso JJA </a> </h3> |
---|
75 | |
---|
76 | <h3> <a href="$HTML/AXE3/StratosCalipso/index.html"> Stratocumulus (Annuel) </a> </h3> |
---|
77 | |
---|
78 | eod |
---|
79 | |
---|
80 | |
---|
81 | # Concaténer les figures sur une page |
---|
82 | # Création de l'argument pour l'appel de concat_html.sh: |
---|
83 | # Prendre la liste des chemins, isoler les noms de fichiers, enlever |
---|
84 | # l'extension, faire une ligne, enlever la dernière virgule |
---|
85 | |
---|
86 | echo $concatarg |
---|
87 | |
---|
88 | for SEAS in YEAR JJA DJF ; do |
---|
89 | cat $entetef >| $COMP_D/ZON/$SEAS/index.html |
---|
90 | concatarg=`ls $COMP_D/ZON/$SEAS/*.png | sed "s/.*\///" | \ |
---|
91 | sed "s/\.png//" | awk '{printf "%s,",$0}' | sed 's/\(.*\),/\1/'` |
---|
92 | $local/concat_html.sh $COMP_D/ZON/$SEAS "Moyennes zonales" $concatarg 3 >> $COMP_D/ZON/$SEAS/index.html |
---|
93 | cat $entetef >| $COMP_D/AXE3/ReflCld/index.html |
---|
94 | done |
---|
95 | |
---|
96 | concatarg=`ls $COMP_D/AMMACROSS/JJAS/*.png | sed "s/.*\///" | \ |
---|
97 | sed "s/\.png//" | awk '{printf "%s,",$0}' | sed 's/\(.*\),/\1/'` |
---|
98 | cat $entetef >| $COMP_D/AMMACROSS/JJAS/index.html |
---|
99 | $local//concat_html.sh $COMP_D/AMMACROSS/JJAS "Moyennes zonales" $concatarg 3 >> $COMP_D/AMMACROSS/JJAS/index.html |
---|
100 | |
---|
101 | #Diagno Refl vs Cld |
---|
102 | #AI janvier 2017 |
---|
103 | |
---|
104 | # Concaténer les figures sur une page |
---|
105 | # Création de l'argument pour l'appel de concat_html.sh: |
---|
106 | # Prendre la liste des chemins, isoler les noms de fichiers, enlever |
---|
107 | # l'extension, faire une ligne, enlever la dernière virgule |
---|
108 | concatarg=`ls $COMP_D/AXE3/ReflCld/*.png | sed "s/.*\///" | \ |
---|
109 | sed "s/\.png//" | awk '{printf "%s,",$0}' | sed 's/\(.*\),/\1/'` |
---|
110 | |
---|
111 | echo $concatarg |
---|
112 | |
---|
113 | |
---|
114 | cat $entetef >| $COMP_D/AXE3/ReflCld/index.html |
---|
115 | echo "$local/concat_html.sh $COMP_D/AXE3/ReflCld "Histogram Refl vs Cld" $concatarg 4 >> $COMP_D/AXE3/ReflCld/index.html" |
---|
116 | |
---|
117 | |
---|
118 | |
---|
119 | #################################################################### |
---|
120 | ### REG ############################################################ |
---|
121 | #################################################################### |
---|
122 | |
---|
123 | cat <<eod>> $compf |
---|
124 | |
---|
125 | <h2> Diagnostiques Classifications en regimes </h2> |
---|
126 | <h3> <a href="$HTML/REG/index.html"> Regimes dynamiques tropicaux </a> </h3> |
---|
127 | |
---|
128 | <li><a href="$HTML/1D.html">SCM(1D)</a> |
---|
129 | |
---|
130 | </body> |
---|
131 | </html> |
---|
132 | eod |
---|
133 | |
---|
134 | |
---|
135 | # Concaténer les figures sur une page |
---|
136 | # Création de l'argument pour l'appel de concat_html.sh: |
---|
137 | # Prendre la liste des chemins, isoler les noms de fichiers, enlever |
---|
138 | # l'extension, faire une ligne, enlever la dernière virgule |
---|
139 | concatarg=`ls $COMP_D/REG/*.png | sed "s/.*\///" | \ |
---|
140 | sed "s/\.png//" | awk '{printf "%s,",$0}' | sed 's/\(.*\),/\1/'` |
---|
141 | |
---|
142 | echo $concatarg |
---|
143 | #exit |
---|
144 | |
---|
145 | cat $entetef >| $COMP_D/REG/index.html |
---|
146 | $local/concat_html.sh $COMP_D/REG "Regimes dynamiques tropicaux" $concatarg 3 >> $COMP_D/REG/index.html |
---|
147 | |
---|
148 | echo $compf | sed -e 's:/thredds/ipsl/:http\://thredds-su.ipsl.fr/thredds/fileServer/ipsl_thredds/:' |
---|