source: BOL/Multi_atlas/html_pcmdi.sh @ 4318

Last change on this file since 4318 was 4307, checked in by musat, 2 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.6 KB
Line 
1#!/bin/bash
2
3local=`pwd -P`
4login=`whoami`
5hostname=`hostname`
6if [ ${hostname:0:5} = cicla ] ; then
7DODSDIR=/thredds/ipsl
8dthredds=thredds-su.ipsl.fr/thredds/fileServer/ipsl_thredds
9HTML00=http://${dthredds}/$login
10machine=ciclad
11fi
12if [ ${hostname:0:5} = spiri ] ; then
13DODSDIR=/thredds/ipsl
14dthredds=thredds-su.ipsl.fr/thredds/fileServer/ipsl_thredds
15HTML00=http://${dthredds}/$login
16machine=spirit
17fi
18if [ ${hostname:0:5} = camel ] ; then
19DODSDIR=/thredds/ipsl
20fi
21if [ ${hostname:0:5} = irene ] ; then
22DODSDIR=
23fi
24if [ ${hostname:0:5} = jean- ] ; then
25DODSDIR=
26fi
27
28set -x
29comp=$1
30MULTIDIR=$DODSDIR/$login/lmdz/MultiSimu
31COMP_D=$MULTIDIR/$comp
32PCMDI_D=$COMP_D/PCMDI
33
34   # html pour les métriques
35   cat $COMP_D/entete.html doc_pcmdi.html >| $COMP_D/PCMDI.html
36   ref=`echo $listsimss | awk ' { print $1 } '`
37   echo "<h1> Metrics with respect to forced-by-SST AMIP multi model </h1>" >>  $COMP_D/PCMDI.html
38   cat $PCMDI_D/rms_xyt-CMIP5_AMIP-metrics.html >> $COMP_D/PCMDI.html
39   echo "<h1> Metrics with respect to coupled CMIP5 simulations (historical)</h1>" >>  $COMP_D/PCMDI.html
40   cat $PCMDI_D/rms_xyt-CMIP5_historical-metrics.html >> $COMP_D/PCMDI.html
41   echo "<h1> Metrics with respect to IPSLCM5A-LR (clim A verifier)  </h1>" >>  $COMP_D/PCMDI.html
42   cat $PCMDI_D/rms_xyt-AR4-metrics.html >> $COMP_D/PCMDI.html
43
44#bias_xy-AR4-metrics.html         bias_xy-CMIP5_historical-metrics.html  cor_xyt-CMIP5_AMIP-metrics.html        rms_xyt-AR4-metrics.html         rms_xyt-CMIP5_historical-metrics.html
45#bias_xy-CMIP5_AMIP-metrics.html  cor_xyt-AR4-metrics.html               cor_xyt-CMIP5_historical-metrics.html  rms_xyt-CMIP5_AMIP-metrics.html
46
Note: See TracBrowser for help on using the repository browser.