Exemplo n.º 1
0
Arquivo: ff.py Projeto: bblay/iris
def load_cubes_32bit_ieee(filenames, callback):
    """
    Loads cubes from a list of 32bit ieee converted fieldsfiles filenames.

    .. seealso::

        :func:`load_cubes` for keyword details

    """
    return pp._load_cubes_variable_loader(filenames, callback, FF2PP, {"word_depth": 4})
Exemplo n.º 2
0
def load_cubes_32bit_ieee(filenames, callback):
    """
    Loads cubes from a list of 32bit ieee converted fieldsfiles filenames.

    .. seealso::

        :func:`load_cubes` for keyword details

    """
    return pp._load_cubes_variable_loader(filenames, callback, FF2PP,
                                          {'word_depth': 4})
Exemplo n.º 3
0
Arquivo: ff.py Projeto: omarjamil/iris
def load_cubes(filenames, callback):
    """
    Loads cubes from a list of fields files filenames.
    
    Args:
    
    * filenames - list of fields files filenames to load
    
    Kwargs:
    
    * callback - a function which can be passed on to :func:`iris.io.run_callback`
    
    .. note:: 
        The resultant cubes may not be in the order that they are in the file (order 
        is not preserved when there is a field with orography references).
         
    """
    return pp._load_cubes_variable_loader(filenames, callback, FF2PP)
Exemplo n.º 4
0
def load_cubes(filenames, callback):
    """
    Loads cubes from a list of fields files filenames.
    
    Args:
    
    * filenames - list of fields files filenames to load
    
    Kwargs:
    
    * callback - a function which can be passed on to :func:`iris.io.run_callback`
    
    .. note::

        The resultant cubes may not be in the order that they are in the file (order 
        is not preserved when there is a field with orography references).
         
    """
    return pp._load_cubes_variable_loader(filenames, callback, FF2PP)