[3684] | 1 | #!/bin/bash |
---|
| 2 | |
---|
| 3 | comp=$1 |
---|
| 4 | |
---|
| 5 | local=`pwd -P` |
---|
| 6 | login=`whoami` |
---|
| 7 | hostname=`hostname` |
---|
| 8 | if [ ${hostname:0:5} = cicla ] ; then |
---|
[3881] | 9 | DODSDIR=/thredds/ipsl |
---|
[3684] | 10 | HTML00=http://vesg.ipsl.upmc.fr/thredds/fileServer/IPSLFS/$login |
---|
| 11 | machine=ciclad |
---|
| 12 | fi |
---|
| 13 | if [ ${hostname:0:5} = camel ] ; then |
---|
[3881] | 14 | DODSDIR=/thredds/ipsl |
---|
[3684] | 15 | fi |
---|
| 16 | if [ ${hostname:0:5} = irene ] ; then |
---|
| 17 | DODSDIR= |
---|
| 18 | fi |
---|
| 19 | if [ ${hostname:0:5} = jean- ] ; then |
---|
| 20 | DODSDIR= |
---|
| 21 | fi |
---|
| 22 | |
---|
| 23 | ATLAS_DIR=$DODSDIR/$login/lmdz/atlas |
---|
| 24 | OUT_DIR=$DODSDIR/$login/lmdz/MultiSimu/$comp |
---|
| 25 | entetef=$OUT_DIR/entete.html |
---|
| 26 | ZON_DIR=$OUT_DIR/ZON |
---|
| 27 | |
---|
| 28 | ############################################################################# |
---|
| 29 | ############################################################################# |
---|
| 30 | |
---|
| 31 | compf=$OUT_DIR/METRICS_min.html |
---|
| 32 | echo $compf |
---|
| 33 | emptyelt='<td> - </td>' |
---|
| 34 | |
---|
| 35 | # Modification du html après l'introduction des tuning saisonniers |
---|
| 36 | HTML=$HTML00/lmdz/MultiSimu/$comp |
---|
| 37 | |
---|
| 38 | if [ -d $OUT_DIR/METRICS/YEAR ] ; then # Nouvelle version |
---|
| 39 | MET_D=METRICS/YEAR |
---|
| 40 | else |
---|
| 41 | MET_D=METRICS |
---|
| 42 | fi |
---|
| 43 | |
---|
| 44 | entete=1 |
---|
| 45 | |
---|
| 46 | rm -f $compf ; touch $compf |
---|
| 47 | |
---|
| 48 | cat $entetef >> $compf |
---|
| 49 | |
---|
| 50 | echo '<hr/>' >> $compf |
---|
| 51 | cat <<......eod>> $compf |
---|
| 52 | <h2> Calcul de métriques sur des masques </h2> |
---|
| 53 | <h3> Les flux sont orientés vers le bas. |
---|
| 54 | Les moyennes sont faites sur les masques montrés entre le titre et le graphe. |
---|
| 55 | Pour ETOA, la figure correspond à la différence entre le rouge et le bleu. |
---|
| 56 | </h3> |
---|
| 57 | ......eod |
---|
| 58 | echo '<hr/>' >> $compf |
---|
| 59 | |
---|
| 60 | echo '<h3>' >> $compf |
---|
| 61 | |
---|
| 62 | echo '<hr/>' >> $compf |
---|
| 63 | echo '<h2> Moyennes annuelles - Annual mean </h2>' >> $compf |
---|
| 64 | echo '<table>' >> $compf |
---|
| 65 | |
---|
| 66 | echo '<TR>' >> $compf |
---|
| 67 | |
---|
| 68 | ################ 3 premieres metriques #####################" |
---|
| 69 | masks="conv weak subs" |
---|
| 70 | for MET in "Convective" "Weak" "Subsidence" ; do |
---|
| 71 | echo "<TD ALIGN=CENTER> $MET </TD>" >> $compf |
---|
| 72 | done |
---|
| 73 | |
---|
| 74 | echo '<TR>' >> $compf |
---|
| 75 | for mask in $masks ; do |
---|
| 76 | thredds=$HTML/$MET_D/mask$mask.png |
---|
| 77 | echo '<TD ALIGN=CENTER><A HREF="'$thredds'"><IMG HEIGHT=80 WIDTH=120 SRC="'$thredds'"></a></TD>' >> $compf |
---|
| 78 | done |
---|
| 79 | |
---|
| 80 | echo '<TR>' >> $compf |
---|
| 81 | for mask in $masks ; do |
---|
| 82 | thredds=$HTML/$MET_D/$mask.png |
---|
| 83 | echo '<TD ALIGN=CENTER><A HREF="'$thredds'"><IMG HEIGHT=400 WIDTH=500 SRC="'$thredds'"></a></TD>' >> $compf |
---|
| 84 | done |
---|
| 85 | |
---|
| 86 | echo '<TR>' >> $compf |
---|
| 87 | |
---|
| 88 | ################ 3 premieres metriques #####################" |
---|
| 89 | |
---|
| 90 | |
---|
| 91 | # Nouveaux tunings saisonniers |
---|
| 92 | if [ -d $OUT_DIR/METRICS/YEAR ] ; then # Nouvelle version |
---|
| 93 | |
---|
| 94 | |
---|
| 95 | seas=( YEAR DJF JJA ) |
---|
| 96 | comment=( "ETO-Weak YEAR" "circA DJF" "Sibe JJA" ) |
---|
| 97 | mask=( etow circA Sibe ) |
---|
| 98 | |
---|
| 99 | echo '<hr/>' >> $compf |
---|
| 100 | echo '<h2> '$seas' mean </h2>' >> $compf |
---|
| 101 | echo '<table>' >> $compf |
---|
| 102 | |
---|
| 103 | ################ 3 premieres metriques #####################" |
---|
| 104 | |
---|
| 105 | for i in 0 1 2 ; do |
---|
| 106 | echo "<TD ALIGN=CENTER> ${comment[$i]} </TD>" >> $compf |
---|
| 107 | done |
---|
| 108 | |
---|
| 109 | echo '<TR>' >> $compf |
---|
| 110 | for i in 0 1 2 ; do |
---|
| 111 | thredds=$HTML/METRICS/${seas[$i]}/mask${mask[$i]}.png |
---|
| 112 | echo '<TD ALIGN=CENTER><A HREF="'$thredds'"><IMG HEIGHT=80 WIDTH=120 SRC="'$thredds'"></a></TD>' >> $compf |
---|
| 113 | done |
---|
| 114 | |
---|
| 115 | echo '<TR>' >> $compf |
---|
| 116 | for i in 0 1 2 ; do |
---|
| 117 | thredds=$HTML/METRICS/${seas[$i]}/${mask[$i]}.png |
---|
| 118 | echo '<TD ALIGN=CENTER><A HREF="'$thredds'"><IMG HEIGHT=400 WIDTH=500 SRC="'$thredds'"></a></TD>' >> $compf |
---|
| 119 | done |
---|
| 120 | |
---|
| 121 | echo '</table>' >> $compf |
---|
| 122 | |
---|
| 123 | |
---|
| 124 | |
---|
| 125 | fi |
---|
| 126 | |
---|
| 127 | echo UN NOVEL MULTI ATLAS EST DISPONIBLE SUR $HTML00/lmdz/MultiSimu/$comp/entete.html |
---|