download_crater_imagery#
- download_crater_imagery(load=True)[source]#
Download crater texture.
- Parameters
- loadbool,
optional
Load the dataset after downloading it when
True
. Set this toFalse
and only the filename will be returned.
- loadbool,
- Returns
pyvista.Texture
orstr
DataSet or filename depending on
load
.
Examples
>>> from pyvista import examples >>> cpos = [ ... [ 66., 73. , -382.6], ... [ 66., 73. , 0. ], ... [ -0., -1. , 0. ] ... ] >>> dataset = examples.download_crater_imagery() >>> dataset.plot(cpos=cpos)
See Topographic Map for an example using this dataset.