pyvista.MultiBlock.get_data_range

pyvista.MultiBlock.get_data_range#

MultiBlock.get_data_range(
name: str | None,
allow_missing: bool = False,
preference: Literal[FieldAssociation.POINT, 'point', FieldAssociation.CELL, 'cell', FieldAssociation.NONE, 'field'] = 'cell',
) tuple[float, float][source]#

Get the min/max of an array given its name across all blocks.

Parameters:
namestr, optional

The name of the array to get the range. If None, the active scalars are used.

allow_missingbool, default: False

Allow a block to be missing the named array.

preferencestr, default: “cell”

When scalars is specified, this is the preferred array type to search for in the dataset. Must be either 'point', 'cell', or 'field'.

Added in version 0.45.

Returns:
tuple

(min, max) of the named array.