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:
- Returns:
pyvista.DataSet,pyvista.Texture,orstrTexture, Dataset, or path to the file depending on the
loadandtextureparameters.
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()
See
load_mars()for another example using this dataset.