1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319
|
.. title:: PyVista
.. raw:: html
<div class="banner">
<a href="./examples/index.html"><center><img src="_static/pyvista_logo.png" alt="pyvista" width="75%"/></a>
<h3>3D plotting and mesh analysis through a streamlined interface for the Visualization Toolkit (VTK)</h2>
<a href="./examples/index.html"><img src="_static/pyvista_banner_small.png" alt="pyvista" width="100%"/></a>
</div>
|
Overview
********
PyVista is:
* *Pythonic VTK*: a high-level API to the `Visualization Toolkit`_ (VTK)
* mesh data structures and filtering methods for spatial datasets
* 3D plotting made simple and built for large/complex data geometries
.. _Visualization Toolkit: https://vtk.org
PyVista is a helper library for the Visualization Toolkit (VTK) that
takes a different approach on interfacing with VTK through NumPy and
direct array access. This package provides a Pythonic,
well-documented interface exposing VTK's powerful visualization
backend to facilitate rapid prototyping, analysis, and visual
integration of spatially referenced datasets.
This module can be used for scientific plotting for presentations and
research papers as well as a supporting module for other mesh
dependent Python modules.
.. |tweet| image:: https://img.shields.io/twitter/url.svg?style=social&url=http%3A%2F%2Fshields.io
:target: https://twitter.com/intent/tweet?text=Check%20out%20this%20project%20for%203D%20visualization%20in%20Python&url=https://github.com/pyvista/pyvista&hashtags=3D,visualization,Python,vtk,mesh,plotting,PyVista
Share this project on X: |tweet|
.. |binder| image:: https://static.mybinder.org/badge_logo.svg
:target: https://mybinder.org/v2/gh/pyvista/pyvista-examples/master
:alt: Launch on Binder
Want to test-drive PyVista? Check out our live examples on MyBinder: |binder|
.. grid::
.. grid-item-card:: PyVista is a NumFOCUS affiliated project
:link: https://numfocus.org/sponsored-projects/affiliated-projects
:class-title: pyvista-card-title
.. image:: https://raw.githubusercontent.com/numfocus/templates/master/images/numfocus-logo.png
:target: https://numfocus.org/sponsored-projects/affiliated-projects
:alt: NumFOCUS affiliated projects
:height: 60px
.. toctree::
:hidden:
getting-started/index
user-guide/index
examples/index
api/index
extras/index
Brief Examples
**************
Here are some brief interactive examples that demonstrate how you
might want to use PyVista:
.. pyvista-plot::
:context:
:include-source: false
:force_static:
import pyvista
pyvista.set_jupyter_backend('static')
pyvista.global_theme.background = 'white'
pyvista.global_theme.window_size = [600, 400]
pyvista.global_theme.axes.show = False
pyvista.global_theme.smooth_shading = True
pyvista.global_theme.anti_aliasing = 'fxaa'
Maps and Geoscience
~~~~~~~~~~~~~~~~~~~
Download the surface elevation map of Mount St. Helens and plot it.
.. pyvista-plot::
:context:
from pyvista import examples
mesh = examples.download_st_helens()
warped = mesh.warp_by_scalar('Elevation')
surf = warped.extract_surface().triangulate()
surf = surf.decimate_pro(0.75) # reduce the density of the mesh by 75%
surf.plot(cmap='gist_earth')
Finite Element Analysis
~~~~~~~~~~~~~~~~~~~~~~~
Plot the 'X' component of elastic stress of a 3D notch specimen.
.. pyvista-plot::
:context:
from pyvista import examples
mesh = examples.download_notch_stress()
mesh.plot(scalars='Nodal Stress', component=0, cmap='turbo', cpos='xy')
Simple Point Cloud with NumPy
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Easily integrate with NumPy and create a variety of geometries and plot
them. You could use any geometry to create your glyphs, or even plot
the points directly.
.. pyvista-plot::
:context:
import numpy as np
import pyvista
rng = np.random.default_rng(seed=0)
point_cloud = rng.random((100, 3))
pdata = pyvista.PolyData(point_cloud)
pdata['orig_sphere'] = np.arange(100)
# create many spheres from the point cloud
sphere = pyvista.Sphere(radius=0.02, phi_resolution=10, theta_resolution=10)
pc = pdata.glyph(scale=False, geom=sphere, orient=False)
pc.plot(cmap='Reds')
Plot a Spline
~~~~~~~~~~~~~
Generate a spline from an array of NumPy points.
.. pyvista-plot::
:context:
import numpy as np
import pyvista
# Make the xyz points
theta = np.linspace(-10 * np.pi, 10 * np.pi, 100)
z = np.linspace(-2, 2, 100)
r = z**2 + 1
x = r * np.sin(theta)
y = r * np.cos(theta)
points = np.column_stack((x, y, z))
spline = pyvista.Spline(points, 500).tube(radius=0.1)
spline.plot(scalars='arc_length', show_scalar_bar=False)
Boolean Operations on Meshes
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Subtract a sphere from a cube mesh.
.. pyvista-plot::
:context:
import pyvista
import numpy as np
def make_cube():
x = np.linspace(-0.5, 0.5, 25)
grid = pyvista.StructuredGrid(*np.meshgrid(x, x, x))
surf = grid.extract_surface().triangulate()
surf.flip_normals()
return surf
# Create example PolyData meshes for boolean operations
sphere = pyvista.Sphere(radius=0.65, center=(0, 0, 0))
cube = make_cube()
# Perform a boolean difference
boolean = cube.boolean_difference(sphere)
boolean.plot(color='darkgrey', smooth_shading=True, split_sharp_edges=True)
Plot Volumetric Data
~~~~~~~~~~~~~~~~~~~~
Plot the :math:`3d_{xy}` orbital of a hydrogen atom.
.. note::
This example requires `sympy <https://www.sympy.org/>`_.
.. pyvista-plot::
:context:
:force_static:
from pyvista import examples
grid = examples.load_hydrogen_orbital(3, 2, -2)
grid.plot(volume=True, opacity=[1, 0, 1], cmap='magma')
Translating
***********
The recommended way for new contributors to translate PyVista's
documentation is to join the translation team on Transifex.
There is a `pyvista translation page`_ for pyvista (main) documentation.
#. Login to transifex_ service.
#. Go to `pyvista translation page`_.
#. Click ``Request language`` and fill form.
#. Wait acceptance by transifex pyvista translation maintainers.
#. (After acceptance) Translate on transifex.
#. We can host the translated document in `GitHub Pages`_ by creating `GitHub repository`_.
#. Translation is backed up in `pyvista-doc-translations`_.
Details can be found here: https://help.transifex.com/en/
.. _`pyvista translation page`: https://app.transifex.com/signin/?next=/tkoyama010/pyvista-doc/
.. _Transifex: https://app.transifex.com/signin/?next=/home/
.. _`GitHub Pages`: https://pyvista.github.io/pyvista-docs-dev-ja/index.html
.. _`GitHub repository`: https://github.com/pyvista/pyvista-docs-dev-ja
.. _`pyvista-doc-translations`: https://github.com/pyvista/pyvista-doc-translations
Status
******
.. |pypi| image:: https://img.shields.io/pypi/v/pyvista.svg?logo=python&logoColor=white
:target: https://pypi.org/project/pyvista/
.. |conda| image:: https://img.shields.io/conda/vn/conda-forge/pyvista.svg?logo=conda-forge&logoColor=white
:target: https://anaconda.org/conda-forge/pyvista
.. |GH-CI| image:: https://github.com/pyvista/pyvista/actions/workflows/testing-and-deployment.yml/badge.svg
:target: https://github.com/pyvista/pyvista/actions/workflows/testing-and-deployment.yml
.. |codecov| image:: https://codecov.io/gh/pyvista/pyvista/branch/main/graph/badge.svg
:target: https://app.codecov.io/gh/pyvista/pyvista
.. |codacy| image:: https://app.codacy.com/project/badge/Grade/779ac6aed37548839384acfc0c1aab44
:target: https://app.codacy.com/gh/pyvista/pyvista/dashboard
.. |contributors| image:: https://img.shields.io/github/contributors/pyvista/pyvista.svg?logo=github&logoColor=white
:target: https://github.com/pyvista/pyvista/graphs/contributors/
.. |stars| image:: https://img.shields.io/github/stars/pyvista/pyvista.svg?style=social&label=Stars
:target: https://github.com/pyvista/pyvista
:alt: GitHub
.. |zenodo| image:: https://zenodo.org/badge/DOI/10.5281/zenodo.8415866.svg
:target: https://zenodo.org/records/8415866
.. |joss| image:: https://joss.theoj.org/papers/78f2901bbdfbd2a6070ec41e8282d978/status.svg
:target: https://joss.theoj.org/papers/10.21105/joss.01450
.. |MIT| image:: https://img.shields.io/badge/License-MIT-yellow.svg
:target: https://opensource.org/license/mit/
.. |slack| image:: https://img.shields.io/badge/Slack-PyVista-green.svg?logo=slack
:target: https://communityinviter.com/apps/pyvista/pyvista
.. |PyPIact| image:: https://img.shields.io/pypi/dm/pyvista.svg?label=PyPI%20downloads
:target: https://pypi.org/project/pyvista/
.. |condaact| image:: https://img.shields.io/conda/dn/conda-forge/pyvista.svg?label=Conda%20downloads
:target: https://anaconda.org/conda-forge/pyvista
.. |discuss| image:: https://img.shields.io/badge/GitHub-Discussions-green?logo=github
:target: https://github.com/pyvista/pyvista/discussions
.. |python| image:: https://img.shields.io/badge/python-3.8+-blue.svg
:target: https://www.python.org/downloads/
+----------------------+----------------+-------------+
| Deployment | |pypi| | |conda| |
+----------------------+----------------+-------------+
| Build Status | |GH-CI| | |python| |
+----------------------+----------------+-------------+
| Metrics | |codacy| | |codecov| |
+----------------------+----------------+-------------+
| Activity | |PyPIact| | |condaact| |
+----------------------+----------------+-------------+
| GitHub | |contributors| | |stars| |
+----------------------+----------------+-------------+
| Citation | |joss| | |zenodo| |
+----------------------+----------------+-------------+
| License | |MIT| | |
+----------------------+----------------+-------------+
| Community | |slack| | |discuss| |
+----------------------+----------------+-------------+
Professional Support
********************
While PyVista is an Open Source project with a big community, you might be looking for professional support.
This section aims to list companies with VTK/PyVista expertise who can help you with your software project.
+---------------+-----------------------------------------+
| Company Name | Kitware Inc. |
+---------------+-----------------------------------------+
| Description | Kitware is dedicated to build solutions |
| | for our customers based on our |
| | well-established open source platforms. |
+---------------+-----------------------------------------+
| Expertise | CMake, VTK, PyVista, ParaView, Trame |
+---------------+-----------------------------------------+
| Contact | https://www.kitware.com/contact/ |
+---------------+-----------------------------------------+
Project Index
*************
* :ref:`genindex`
|