Last change
on this file since 4314 was
4307,
checked in by musat, 3 years ago
|
Fusion entre la version commune (compte fabric) et la version perso
du multi-atlas incluant
- la fiabilisation de la realisation des cartes
- la correction des coupes (latitude,altitude) pour les biais
- l'ajout d'une option pour des multi-atlas par rapport a une simulation de reference
- l'ajout d'options pour un multi-atlas regional
- la mise a jour des thredds (repertoire & html) pour ciclad
IonelaMusat?
|
-
Property svn:executable set to
*
|
File size:
1.0 KB
|
Rev | Line | |
---|
[3684] | 1 | #!/bin/bash |
---|
| 2 | |
---|
| 3 | local=`pwd -P` |
---|
| 4 | login=`whoami` |
---|
| 5 | hostname=`hostname` |
---|
| 6 | if [ ${hostname:0:5} = cicla ] ; then |
---|
[3882] | 7 | DODSDIR=/thredds/ipsl |
---|
[4307] | 8 | dthredds=thredds-su.ipsl.fr/thredds/fileServer/ipsl_thredds |
---|
| 9 | HTML00=http://${dthredds}/$login |
---|
[3684] | 10 | machine=ciclad |
---|
| 11 | fi |
---|
[4307] | 12 | if [ ${hostname:0:5} = spiri ] ; then |
---|
| 13 | DODSDIR=/thredds/ipsl |
---|
| 14 | dthredds=thredds-su.ipsl.fr/thredds/fileServer/ipsl_thredds |
---|
| 15 | HTML00=http://${dthredds}/$login |
---|
| 16 | machine=spirit |
---|
| 17 | fi |
---|
[3684] | 18 | if [ ${hostname:0:5} = camel ] ; then |
---|
[3882] | 19 | DODSDIR=/thredds/ipsl |
---|
[3684] | 20 | fi |
---|
| 21 | if [ ${hostname:0:5} = irene ] ; then |
---|
| 22 | DODSDIR= |
---|
| 23 | fi |
---|
| 24 | if [ ${hostname:0:5} = jean- ] ; then |
---|
| 25 | DODSDIR= |
---|
| 26 | fi |
---|
| 27 | |
---|
| 28 | |
---|
| 29 | echo '<h1 ALIGN=CENTER> Liste des séries de simulations préparatoires à CMIP6, LMDZ-Orchidee</h1> ' |
---|
| 30 | echo "<table>" |
---|
| 31 | echo "<H1>" |
---|
| 32 | |
---|
| 33 | |
---|
| 34 | i=1 |
---|
[4307] | 35 | for f in $DODSDIR/${login}/lmdz/MultiSimu/*/entete.html ; do |
---|
[3882] | 36 | sim=`echo $f | cut -d/ -f7` |
---|
[3684] | 37 | # A REFAIRE |
---|
[4307] | 38 | echo "<TD ALIGN=LEFT><A HREF=`echo $f | sed -e 's:/thredds/ipsl/:http\://thredds-su.ipsl.fr/thredds/fileServer/ipsl_thredds/:'`> $sim </A> </TD>" |
---|
[3684] | 39 | |
---|
| 40 | if [ $i = 8 ] ; then |
---|
| 41 | echo "<TR>" |
---|
| 42 | i=0 |
---|
| 43 | fi |
---|
| 44 | i=$(( $i + 1 )) |
---|
| 45 | |
---|
| 46 | done |
---|
| 47 | echo "</table>" |
---|
| 48 | echo "</H1>" |
---|
| 49 | |
---|
Note: See
TracBrowser
for help on using the repository browser.