pyvista.examples.planets.download_stars_sky_background#

download_stars_sky_background(texture=False, load=True)[source]#

Download the night sky stars texture.

Textures obtained from tamaskis/planet3D-MATLAB.

Parameters:
texturebool, default: False

Set to True when loading the surface as a texture.

loadbool, default: True

Load the dataset. When False, return the path to the file.

Returns:
pyvista.DataSet, pyvista.Texture, or str

Texture, Dataset, or path to the file depending on the load and texture parameters.

Examples

Load the night sky image as a background image.

>>> from pyvista import examples
>>> import pyvista as pv
>>> pl = pv.Plotter()
>>> image_path = examples.planets.download_stars_sky_background(
...     load=False
... )
>>> pl.add_background_image(image_path)
>>> pl.show()
../../../_images/pyvista-examples-planets-download_stars_sky_background-1_00_00.png

See load_mars() for another example using this dataset.