download_crater_imagery#
- download_crater_imagery(load: bool = True) Texture | str[source]#
Download crater texture.
- Parameters:
- Returns:
- output
pyvista.Texture|str DataSet or filename depending on
load.
- output
Examples#
Download Python source code | Download Jupyter notebook
>>> from pyvista import examples
>>> import pyvista as pv
>>> cpos = pv.CameraPosition(
... position=(66.0, 73.0, -382.6),
... focal_point=(66.0, 73.0, 0.0),
... viewup=(-0.0, -1.0, 0.0),
... )
>>> texture = examples.download_crater_imagery()
>>> texture.plot(cpos=cpos)
See also
- Crater Imagery Dataset
See this dataset in the Dataset Gallery for more info.
- Topographic Map
Example using this dataset.