netCDF managing functions
List of available functions to manage netCDD files. Most of them follow a similar structure:

        $ python nc_var.py -o [operation] -f [file(or files)] -S [values] -v [variables]
      
In most of the cases [values] is a string which contains a list of values separated by a character [sep], becomming the value as:

      [values]=[val1][sep][val2][sep][...[valN]]
One can obtain all the list of operations and their instructions by demanding to the script:

        $ python nc_var.py -o list_operations
      
For almost all operations, one can obtain all the help of a specific operation by:

        $ python nc_var.py -o [operation] -S h
      
One should be able to obtain an example of execution by

        $ cat nc_var.py | grep [operation] | grep 'e.g.'
      
The netcdf-managing script has two steps:
  1. nc_var.py: Main script which mainly gets the values
  2. nc_var_tools.py: Script which perform the operations and its used by nc_var.py
  3. generic_tools.py: Script which contains generic operations and it is used by both scripts
In order to use some of the functions, is necessary to compile previously the related Fortran subroutines and link them to python. It is already prepared for different computers via specific Makefile.[machine].[compiler]
Available functions: