Installing, configuring, using

Installing (or using an installed version, at CNRM or IPSL)

  • If working on IPSL’s Ciclad, at CNRM or on MF’s Beaufix HPC machine, you do not need to install CliMAF; just do as indicated below (as e.g. in section Running CliMAF interactively), replacing <some_installation_dir> by :

    • /cnrm/est/COMMON/climaf/current at CNRM
    • ~senesi/climaf on Beaufix
    • ~ssenesi/climaf on Ciclad
  • Installing CliMAF, if necessary, is quick, through only a few commands, using CliMAF GitHub repository ; this will also copy some data allowing for testing the installation and for running a few examples

    • first check the listed Requirements and ackowledgements ;

    • execute:

      cd some_installation_dir
      git clone https://github.com/senesis/climaf climaf
      cd climaf
      export PYTHONPATH=$PYTHONPATH:$(pwd)
      cd testing
      ./test_install.sh
      

      and check the output of last command. Contact ‘climaf at meteo dot fr’ in case of problem at that stage

    • for getting the development version, you may rather execute:

      git clone -b dev https://github.com/senesis/climaf climaf
      

Configuring CliMAF

  • CliMAF do interpret some environment variables :
  • CLIMAF_CACHE : a directory used for storing intermediate results, and those final results which are not explicitly copied elsewhere; defaults to ~/tmp/climaf_cache.
  • CLIMAF_REMOTE_CACHE : a directory used for storing local copies of remote data; defaults to $CLIMAF_CACHE/remote_data.
  • CLIMAF_LOG_DIR : for setting the directory holdong climaf logs (defaults to current working directory
  • CLIMAF_LOG_LEVEL and CLIMAF_LOGFILE_LEVEL : for setting the verbosity level on stderr (resp. on file climaf.log); defaults to ‘error’ (resp. ‘info’). See clog() (resp. clog_file()) for details
  • CLIMAF_FIX_NEMO_TIME : if set to anything but ‘no’, this will automatic fix CNRM’s Nemo old data time_axis issues. This adresses the wrong time coordinate variable t_ave_01month and t_ave_00086400. This will add processing cost
  • CLIMAF_FIX_ALADIN_COORD : if set to anything but ‘no’, this will automatic fix Aladin outputs attribute ‘coordinates’ issues. This adresses the wrong variable attribute ‘coordinates’ with ‘lat lon’ to ‘latitude longitude’.
  • Configuration file : you may put in file ~/.climaf any python code using CliMAF functions; this will be executed at the end of climaf import; the code must use fully qualified names for Python functions (as in e.g. climaf.operators.cscript): it des not benefit from the intractive shortcuts defined in climaf.api (as described below in Running CliMAF interactively)

  • Environment :

    • If running on Beaufix, you must setup your environment by:

      $ module load python/2.7.5 nco ncview ncl
      
    • If running on Ciclad, you must setup your environment by:

      $ module load python
      $ module load ncl/6.3.0
      
    • On some systems, if CDO fails at allocating memory, you may have to put e.g. in your ~/.bash_profile:

      $ ulimit -s unlimited
      

      in csh:

      $ unlimit stacksize
      

Running CliMAF interactively

For running CliMAF as easily as possible under the Python prompt, without having to know details about CliMAF functions location, and just mimicking one of the Examples, please first make sur you have write permission in the current directory (used for some log files); then, you can either :

  • use binary climaf for launching Python while importing CliMAF :

    • set your PATH e.g. in your ~/.profile file:

      $ export PATH=$PATH:<some_installation_dir>/bin
      
    • and then launch CliMAF

      $ climaf
      
      >>>         #(this is the Python prompt)
      
    • you may of course also directly type

      $ <some_installation_dir>/bin/climaf
      
  • or import climaf.api.* in your python environment :

    • set your PYTHONPATH , e.g. in your ~/.profile file:

      $ export PYTHONPATH=$PYTHONPATH:<some_installation_dir>/
      
    • type

      $ python
      
      >>> from climaf.api import *
      >>> ...
      

    You may also use CDAT instead of Python. It is working at least for CDAT version using Python from 2.6.5.

Please see also : Examples

Using CliMAF as a back end in your scripts

Binary climaf described above (and located in <some_installation_dir>/bin) can be used with a string argument which is a series of valid CliMAF commands. It will then run silently in the background (up to the point where an error occurs) and may be used e.g. to get the filename for a result handled by CliMAF in its cache.

As an example, if your CliMAF startup file (see Configuring CliMAF) does import the necessary modules for defining function season.clim, you may write:

$ climaf "print cfile(season.clim('CNRM-CM','PRE6.2T127Cr2E','pr','JJAS','1980-1999'))"

or even:

$ file=$(climaf "print cfile(season.clim('CNRM-CM','PRE6.2T127Cr2E','pr','JJAS','1980-1999'))")

This can be handy for letting CliMAF handle your climatology files in its cache

Using CliMAF as a library

If you wish to have the same facilities (shortcuts) than in interactive sessions, then insert

>>> from climaf.api import *

in each module making use of CliMAF functions.

But you may prefer to make only explicit imports, and then use:

>>> import climaf

In that case:

  • you must use fully qualified python names for climaf functions, such as climaf.classes.ds(); you may have a look at module climaf.api to know in which module is each useful CliMAF function

  • please note that all CliMAF operators declared using e.g. cscript() must be prefixed with “climaf.operators” as e.g. in

    >>> avg=climaf.operators.time_average(ds)
    
  • the same applies for macros, mutatis mutandis

    >>> avg=climaf.macros.my_macro(ds)