pyvista.DataSet.array_names#

property DataSet.array_names: List[str][source]#

Return a list of array names for the dataset.

This makes sure to put the active scalars’ name first in the list.

Returns:
List[str]

List of array names for the dataset.

Examples

Return the array names for a mesh.

>>> import pyvista as pv
>>> mesh = pv.Sphere()
>>> mesh.point_data['my_array'] = range(mesh.n_points)
>>> mesh.array_names
['my_array', 'Normals']