1 | #!/bin/bash |
---|
2 | |
---|
3 | source ~/env_Multi_atlas.sh |
---|
4 | |
---|
5 | comp=$1 |
---|
6 | |
---|
7 | local=`pwd -P` |
---|
8 | |
---|
9 | if [ 1 == 0 ]; then |
---|
10 | login=`whoami` |
---|
11 | hostname=`hostname` |
---|
12 | if [ ${hostname:0:5} = cicla ] ; then |
---|
13 | DODSDIR=/thredds/ipsl |
---|
14 | dthredds=thredds-su.ipsl.fr/thredds/fileServer/ipsl_thredds |
---|
15 | HTML00=http://${dthredds}/$login |
---|
16 | machine=ciclad |
---|
17 | fi |
---|
18 | if [ ${hostname:0:5} = spiri ] ; then |
---|
19 | DODSDIR=/thredds/ipsl |
---|
20 | dthredds=thredds-su.ipsl.fr/thredds/fileServer/ipsl_thredds |
---|
21 | HTML00=http://${dthredds}/$login |
---|
22 | machine=spirit |
---|
23 | fi |
---|
24 | if [ ${hostname:0:5} = camel ] ; then |
---|
25 | DODSDIR=/thredds/ipsl |
---|
26 | fi |
---|
27 | if [ ${hostname:0:5} = irene ] ; then |
---|
28 | DODSDIR= |
---|
29 | fi |
---|
30 | if [ ${hostname:0:5} = jean- ] ; then |
---|
31 | DODSDIR= |
---|
32 | fi |
---|
33 | fi |
---|
34 | |
---|
35 | COMP_D=$DODSDIR/$login/lmdz/MultiSimu/$comp |
---|
36 | entetef=$COMP_D/entete.html |
---|
37 | |
---|
38 | ############################################################################# |
---|
39 | echo YEARS $years |
---|
40 | ############################################################################# |
---|
41 | |
---|
42 | compf=$COMP_D/AXE2.html |
---|
43 | HTML=$HTML00/lmdz/MultiSimu/$comp |
---|
44 | |
---|
45 | cat $entetef > $compf |
---|
46 | echo '<hr>' >> $compf |
---|
47 | |
---|
48 | cat <<eod>> $compf |
---|
49 | <h1> Axe 2: variabilité des précipitations tropicales</h1> |
---|
50 | |
---|
51 | <hr> |
---|
52 | Responsable : |
---|
53 | Catherine Rio |
---|
54 | remplacée momentanéement par Jean-Yves Grandpeix et Marine Bonazzola <br> |
---|
55 | jyg@lmd.jussieu.fr,mbonaz@lmd.jussieu.fr <br> |
---|
56 | Liste de diffusion : lmdz_vartrop@mailhost.lmd.jussieu.fr |
---|
57 | |
---|
58 | <IMG HEIGHT=450 WIDTH=650 SRC="$HTML/AXE2/XMGR/tmp.png"> |
---|
59 | |
---|
60 | |
---|
61 | <h2> <a href="$HTML/lma2.html"> Analyse LMA (Local Modes Analysis) </a> </h2> |
---|
62 | |
---|
63 | <h2> <a href="$HTML/curves_and_maps.html"> Variabilité des précipitations, comparée à TRMM </a> </h2> |
---|
64 | |
---|
65 | <h2> <a href="$HTML/AXE2/PR_DAY/index.html"> Variabilité des précipitations, comparée à TRMM (alternative) </a> </h2> |
---|
66 | |
---|
67 | <h2> <a href="$HTML/AXE2/PR_YR/index.html"> distribution moyenne précipitations, comparée à TRMM et GPCP (océan/continent) </a> </h2> |
---|
68 | </body> |
---|
69 | </html> |
---|
70 | eod |
---|
71 | |
---|
72 | # A REFAIRE |
---|
73 | echo $compf | sed -e 's:/thredds/ipsl/:http\://thredds-su.ipsl.fr/thredds/fileServer/ipsl_thredds/:' |
---|