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

from pyvista import examples
dataset = examples.download_honolulu()
dataset.plot(
    scalars=dataset.points[:, 2],
    show_scalar_bar=False,
    cmap='gist_earth',
    clim=[-50, 800],
)

# SEE ALSO:
#     Honolulu Dataset https://docs.pyvista.org/api/examples/dataset_gallery.html#honolulu-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

