1 | #!/bin/bash |
---|
2 | |
---|
3 | #set -v |
---|
4 | |
---|
5 | login=`whoami` |
---|
6 | |
---|
7 | comp=$1 |
---|
8 | bias=$2 |
---|
9 | season=$3 |
---|
10 | proj=$4 |
---|
11 | ref=$5 |
---|
12 | shift ; shift ; shift ; shift ; shift |
---|
13 | |
---|
14 | sims="$*" |
---|
15 | nsims=$# |
---|
16 | echo REF $ref |
---|
17 | echo SIM $sims |
---|
18 | |
---|
19 | login=`whoami` |
---|
20 | |
---|
21 | hostname=`hostname` |
---|
22 | if [ ${hostname:0:5} = cicla ] ; then |
---|
23 | DODSDIR=/modfs/ipslfs/dods |
---|
24 | HTML=http://vesg.ipsl.upmc.fr/thredds/fileServer/IPSLFS/$login/lmdz/MultiSimu/$comp |
---|
25 | fi |
---|
26 | if [ ${hostname:0:5} = camel ] ; then |
---|
27 | DODSDIR=/modfs/ipslfs/dods |
---|
28 | fi |
---|
29 | if [ ${hostname:0:5} = irene ] ; then |
---|
30 | DODSDIR= |
---|
31 | fi |
---|
32 | if [ ${hostname:0:5} = jean- ] ; then |
---|
33 | DODSDIR= |
---|
34 | fi |
---|
35 | |
---|
36 | ATLAS_DIR=$DODSDIR/$login/lmdz/atlas |
---|
37 | COMP_D=$DODSDIR/$login/lmdz/MultiSimu/$comp |
---|
38 | ZON_DIR=$COMP_D/ZON |
---|
39 | |
---|
40 | ############################################################################# |
---|
41 | refb=`echo $ref | sed -e 's/_[0-9][0-9][0-9][0-9]_[0-9][0-9][0-9][0-9]//'` |
---|
42 | years=`echo $ref | sed -e 's/'$refb'//'` |
---|
43 | echo YEARS $years |
---|
44 | # Le nom semble avoir changé ... sref=$COMP_D/ATLAS/index_${proj}_${season}_${ref}.html |
---|
45 | sref=$COMP_D/ATLAS/index_${proj}_${season}_${ref}.html |
---|
46 | ############################################################################# |
---|
47 | |
---|
48 | compf=$COMP_D/$bias$proj$season.html |
---|
49 | |
---|
50 | echo $compf |
---|
51 | echo $ref |
---|
52 | emptyelt='<td> - </td>' |
---|
53 | |
---|
54 | |
---|
55 | entete=1 |
---|
56 | |
---|
57 | rm -f $compf ; touch $compf |
---|
58 | |
---|
59 | echo PROJ $proj |
---|
60 | echo SEASON $season |
---|
61 | if [ -f $sref ] ; then |
---|
62 | for i in `sed -n -e '/TH ALIGN=LEFT.*.li/=' $sref` ; do |
---|
63 | #for i in `sed -n -e '/<TH ALIGN=LEFT> <li>/=' $sref` ; do |
---|
64 | var=`sed -n -e ${i}p $sref | cut -d\( -f2 | cut -d\) -f1` |
---|
65 | echo $i $var |
---|
66 | if [ $entete = 1 ] ; then |
---|
67 | lpdf=`sed -n -e /PDF/= $sref` |
---|
68 | (( lpdfm1 = $lpdf - 1 )) ; (( lpdfp1 = $lpdf + 1 )) ; |
---|
69 | echo $lpdfm1 |
---|
70 | entete=0 |
---|
71 | #head -$lpdfm1 $sref | sed -e '/border-color:transparent/d' -e '/font-size:80/d' >> $compf |
---|
72 | |
---|
73 | |
---|
74 | ############################################################## |
---|
75 | # MENU DEROULANT |
---|
76 | ##############################################################:$ |
---|
77 | cat $COMP_D/entete.html >> $compf |
---|
78 | |
---|
79 | ##################################################################### |
---|
80 | # Fichiers pour l'enetete |
---|
81 | ##################################################################### |
---|
82 | echo '<hr/>' >> $compf |
---|
83 | echo '<h1> Multi atlas, '$season', simulation de référence : '$ref' ('$bias') </h1>' >> $compf |
---|
84 | ##################################################################### |
---|
85 | |
---|
86 | sed -n -e $lpdfp1,${i}p $sref >> $compf |
---|
87 | |
---|
88 | cat <<eod>> $compf |
---|
89 | <TH ALIGN=LEFT>OBSERVATIONS</TH> |
---|
90 | <TH ALIGN=LEFT>$ref</TH> |
---|
91 | eod |
---|
92 | if [ "$bias" = "BIAS" ] ; then echo '<TH ALIGN=LEFT>'$ref' (BIAS)</TH>' >> $compf ; fi |
---|
93 | for sim in $sims ; do |
---|
94 | echo '<TH ALIGN=LEFT>' $sim '</TH>' >> $compf |
---|
95 | done |
---|
96 | echo ' <TR>' >> $compf |
---|
97 | else # entete=1 |
---|
98 | (( iobs = $i + 4 )) |
---|
99 | (( iref = $i + 3 )) |
---|
100 | (( ibiais = $i + 5 )) |
---|
101 | # Repetition des noms des variables |
---|
102 | (( ntext = $nsims / 3 + 1 )) |
---|
103 | iii=1 |
---|
104 | while [ $iii -le $ntext ] ; do |
---|
105 | sed -n -e ${i}p $sref | sed -e 's:^:<th></th>:' -e 's/LEFT/LEFT colspan="2"/' >> $compf |
---|
106 | (( iii = $iii + 1 )) |
---|
107 | done |
---|
108 | echo ' <TR>' >> $compf |
---|
109 | # Inclusion des moyennes zonales |
---|
110 | if [ -f $ZON_DIR/${var}zon.png ] ; then |
---|
111 | thredds=/thredds/fileServer/IPSLFS/fabric/lmdz/MultiSimu/$comp/ZON/${var}zon.png |
---|
112 | echo '<TD ALIGN=RIGHT><A HREF="'$thredds'"><IMG HEIGHT=200 WIDTH=200 SRC="'$thredds'"></a></TD>' >> $compf |
---|
113 | else |
---|
114 | echo $emptyelt >> $compf |
---|
115 | fi |
---|
116 | |
---|
117 | sed -n -e ${iobs}p $sref >> $compf |
---|
118 | sed -n -e ${iref}p $sref >> $compf |
---|
119 | if [ "$bias" = "BIAS" ] ; then sed -n -e ${ibiais}p $sref >> $compf ; fi |
---|
120 | for sim in $sims ; do |
---|
121 | ######################################################### |
---|
122 | simb=`echo $sim | sed -e 's/_[0-9][0-9][0-9][0-9]_[0-9][0-9][0-9][0-9]//'` |
---|
123 | years=`echo $sim | sed -e 's/'$simb'//'` |
---|
124 | index=$COMP_D/ATLAS/index_${proj}_${season}_${sim}.html |
---|
125 | # if [ -f $index ] ; then |
---|
126 | is=`sed -n -e '/<TH ALIGN=LEFT> <li.*.('$var')/=' $index | head -1` |
---|
127 | echo $sim $var $is |
---|
128 | ######################################################### |
---|
129 | if [ "$is" = "" ] ; then |
---|
130 | echo '<td> Missing </td>' >> $compf |
---|
131 | else |
---|
132 | if [ "$bias" = "BIAS" ] ; then (( isbiais = $is + 5 )) ; else (( isbiais = $is + 3 )) ; fi |
---|
133 | sed -n -e ${isbiais}p $index >> $compf |
---|
134 | fi |
---|
135 | # fi |
---|
136 | done |
---|
137 | echo ' <TR>' >> $compf |
---|
138 | fi |
---|
139 | done |
---|
140 | fi |
---|
141 | |
---|
142 | #echo VOTRE MULTIATLAS EST DISPONIBLE SUR $HTML/ACCUEIl.html |
---|