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})
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})
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)