load_planet#
- load_planet( ) PolyData[source]#
Load a planet or celestial body as a sphere with texture coordinates.
All planets are geometrically identical spheres. Textures are loaded and applied separately; see the
download_*_surfacefunctions.Added in version 0.49.
- Parameters:
- Returns:
pyvista.PolyDataSphere mesh with texture coordinates.
Examples#
>>> import pyvista as pv
>>> from pyvista import examples
>>> mesh = examples.planets.load_planet()
>>> texture = examples.load_globe_texture()
>>> image_path = examples.planets.download_stars_sky_background(load=False)
>>> mesh.plot(texture=texture, background=image_path)
See also
- Planet Dataset
See this dataset in the Dataset Gallery for more info.
- 3D Earth and Celestial Bodies
Example plot of the solar system.