# Examples from pyvista.examples.downloads.download_mount_damavand
# ================================================================

# Download the Damavand dataset and plot it after warping it by its altitude.
from pyvista import examples
dataset = examples.download_mount_damavand()
dataset = dataset.cell_data_to_point_data()
dataset = dataset.warp_by_scalar('z', factor=2)
dataset.plot(cmap='gist_earth', show_scalar_bar=False)

# SEE ALSO:
#     Mount Damavand Dataset https://docs.pyvista.org/api/examples/dataset_gallery.html#mount-damavand-dataset
#     See this dataset in the Dataset Gallery for more info.

# ----------------------------------------------------------------------
# Generated by sphinx-examples-as-code https://github.com/pyvista/sphinx-examples-as-code

