download_urn

download_urn#

download_urn(load: bool = True) PolyData | str[source]#

Download scan of a burial urn.

Originally obtained from Laser Design.

Parameters:
loadbool, default: True

Load the dataset after downloading it when True. Set this to False and only the filename will be returned.

Returns:
outputpyvista.PolyData | str

DataSet or filename depending on load.

Examples#

Download Python source code | Download Jupyter notebook

>>> from pyvista import examples
>>> import pyvista as pv
>>> cpos = pv.CameraPosition(
...     position=(-712.3, 571.5, 860.1),
...     focal_point=(4.7, 270.5, -10.1),
...     viewup=(0.2, 1.0, -0.2),
... )
>>> dataset = examples.download_urn()
>>> dataset.plot(cpos=cpos)
../../../_images/pyvista-examples-downloads-download_urn-49862613535d6a1a_00_00.png

See Also#

Urn Dataset

See this dataset in the Dataset Gallery for more info.