# Examples from pyvista.examples.planets.download_stars_sky_background
# ====================================================================

# 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 ALSO:
#     Stars Sky Background Dataset https://docs.pyvista.org/api/examples/dataset_gallery.html#stars-sky-background-dataset
#     See this dataset in the Dataset Gallery for more info.
#     load_planet() https://docs.pyvista.org/api/examples/_autosummary/pyvista.examples.planets.load_planet.html#pyvista.examples.planets.load_planet
#     Load a planet as a sphere with texture coordinates.
#     Milkyway Sky Background Dataset https://docs.pyvista.org/api/examples/dataset_gallery.html#milkyway-sky-background-dataset
#     Sky texture of the Milky Way galaxy.
#     3D Earth and Celestial Bodies https://docs.pyvista.org/examples/99-advanced/planets.html#planets-example
#     Example plot of the solar system.

# ----------------------------------------------------------------------
# Generated by sphinx-examples-as-code https://github.com/pyvista/sphinx-examples-as-code

