pyvista.examples.planets.load_mars#
- load_mars(radius=1.0, lat_resolution=50, lon_resolution=100)[source]#
Load the planet Mars as a textured Sphere.
- Parameters:
- Returns:
pyvista.PolyData
Mars dataset.
Examples
>>> import pyvista as pv >>> from pyvista import examples >>> mesh = examples.planets.load_mars() >>> texture = examples.planets.download_mars_surface(texture=True) >>> pl = pv.Plotter() >>> image_path = examples.planets.download_stars_sky_background( ... load=False ... ) >>> pl.add_background_image(image_path) >>> _ = pl.add_mesh(mesh, texture=texture) >>> pl.show()