• Stars
    star
    109
  • Rank 307,946 (Top 7 %)
  • Language
    Python
  • License
    MIT License
  • Created over 3 years ago
  • Updated 3 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Bringing vtk.js into Dash and Python

Dash VTK

Dash VTK lets you integrate the vtk.js visualization pipeline directly into your Dash app. It is powered by react-vtk-js.

Getting started

Quickstart (Python)

First, install the library through pip:

pip install dash-vtk

Then, create a file called app.py and add the following example:

import dash
import dash_vtk
import dash_html_components as html

app = dash.Dash(__name__)

app.layout = html.Div(
    style={"width": "100%", "height": "calc(100vh - 16px)"},
    children=dash_vtk.View([
        dash_vtk.GeometryRepresentation([
            dash_vtk.Algorithm(
                vtkClass="vtkConeSource",
                state={"resolution": 64, "capping": False},
            )
        ]),
    ]),
)

if __name__ == "__main__":
    app.run_server(debug=True)

Now, simply run the app:

python app.py

For a more detailed example, see usage.py.

Quickstart (R)

First, install the package from GitHub (the package is not yet available via CRAN):

remotes::install_github("plotly/dash-vtk")

then, create your component and add it to your layout:

library(dash)
library(dashVtk)
library(dashHtmlComponents)

app <- Dash$new()

app$layout(htmlDiv(
    style = list("width" = "100%", "height" = "calc(100vh - 16px)"),
    children = vtkView(list(
        vtkGeometryRepresentation(
            vtkAlgorithm(
                vtkClass = "vtkConeSource",
                state = list("resolution" = 64, "capping" = FALSE),
            )
        )
    )
)

app$run_server()

Quickstart (Julia)

First, install the package -- until it's published via the Registrator, you may install the current version via GitHub URL instead:

using Pkg
Pkg.add(PackageSpec(url="https://github.com/plotly/dash-vtk.git"))

then, create your component and add it to your layout:

using Dash, DashVtk, DashHtmlComponents

app = dash();

app.layout = html_div(style = (width = "100%", height = "calc(100vh - 16px)",)) do
    vtk_view(
        vtk_geometryrepresentation(
            vtk_algorithm(
                vtkClass = "vtkConeSource",
                state = (resolution = 64, capping = false)
            )
        )
    )
end;

run_server(app)

Contributing

See docs/CONTRIBUTING.md to learn about:

  • Setting up the environment
  • Coding Style
  • Code quality & design
  • Tests
  • Publishing

Running the demos

First clone the project (replace <name> with the desired demo):

git clone https://github.com/plotly/dash-vtk.git
cd dash-vtk/demos/<name>/

Create a venv and install the requirements:

python -m venv venv
source venv/bin/activate  # for Windows, use venv\Scripts\activate.bat
pip install -e ../../  # IMPORTANT! If you skip you will get the pip version of dash-vtk
pip install -r requirements.txt

Run the demo:

python app.py

Python environments

Depending on your Python environment, you may run into deployment issue related to the vtk version that get pulled in.

Ideally we want a version of vtk equal or newer than 9. When using such version of VTK, dash-vtk won't even try to load the rendering module of VTK and if OpenGL is not available on your system everything will still be fine.

On the other hand, if you are running python-3.6 and/or pip-18 or less and you don't upgrade your pip version, you will only be able to use vtk<=8.1.2. With vtk 8, there is no way to prevent the loading of the GL library which means that you will have to install libGL on your system, or you will run into errors like this:

  File ".../python/lib/python3.6/site-packages/vtkmodules/all.py", line 29, in <module>
    from .vtkRenderingOpenGL2 import *
ImportError: libGL.so.1: cannot open shared object file: No such file or directory
[2021-02-08 18:36:15 +0000] [10] [INFO] Worker exiting (pid: 10)

or this:

  File ".../python3.7/site-packages/vtk/__init__.py", line 12, in <module>
    from .vtkOpenGLKit import *
  File ".../python3.7/site-packages/vtk/vtkOpenGLKit.py", line 9, in <module>
    from vtkOpenGLKitPython import *
ModuleNotFoundError: No module named 'vtkOpenGLKitPython'

Heroku and Dash Enterprise handle it is slightly different because you will have to install libgl1-mesa-glx via some apt files. In the case of Heroku, you will have to use a buildpack and add libgl1-mesa-glx to a Aptfile located in the root of your project. In the case of Dash Enterprise, you do not need to change the buildpack (it is handled automatically) but you will need to add libgl1-mesa-glx to a apt-packages file instead of Aptfile; see this app as an example.

References

You can find the complete API reference in docs/REFERENCES.md for each of the following components:

Demos

Usage for dash_vtk.Algorithm

Point Cloud with PyVista

Terrain deformation using PyVista and dash-vtk

Volume Rendering

A demo of the volume-rendering app

VTK for data processing and dash-vtk for rendering

A demo of the usage-vtk-cfd app

Synthetic Volume Rendering

A demo of the synthetic-volume-rendering app

More Repositories

1

dash

Data Apps & Dashboards for Python. No JavaScript Required.
Python
19,422
star
2

plotly.js

Open-source JavaScript charting library behind Plotly and Dash
JavaScript
16,534
star
3

plotly.py

The interactive graphing library for Python ✨ This project now includes Plotly Express!
Python
15,279
star
4

falcon

Free, open-source SQL client for Windows and Mac 🦅
JavaScript
5,134
star
5

dash-sample-apps

Open-source demos hosted on Dash Gallery
Jupyter Notebook
3,047
star
6

plotly.R

An interactive graphing library for R
R
2,488
star
7

dash-recipes

A collection of scripts and examples created while answering questions from the greater Dash community
Python
989
star
8

react-plotly.js

A plotly.js React component from Plotly 📈
JavaScript
922
star
9

react-pivottable

React-based drag'n'drop pivot table with Plotly.js charts
JavaScript
907
star
10

jupyter-dash

Develop Dash apps in the Jupyter Notebook and JupyterLab
Python
906
star
11

plotly_express

Plotly Express - Simple syntax for complex charts. Now integrated into plotly.py!
Python
685
star
12

Plotly.NET

interactive graphing library for .NET programming languages 📈
F#
584
star
13

datasets

Datasets used in Plotly examples and documentation
HTML
582
star
14

dash-cytoscape

Interactive network visualization in Python and Dash, powered by Cytoscape.js
Python
567
star
15

dash-bio

Open-source bioinformatics components for Dash
Python
501
star
16

Dash.jl

Dash for Julia - A Julia interface to the Dash ecosystem for creating analytic web applications in Julia. No JavaScript required.
Julia
481
star
17

react-chart-editor

Customizable React-based editor panel for Plotly charts
JavaScript
460
star
18

react-cytoscapejs

React component for Cytoscape.js network visualisations
JavaScript
448
star
19

spectacle-editor

Drag and drop Spectacle editor.
JavaScript
442
star
20

dash-table

OBSOLETE: now part of https://github.com/plotly/dash
Python
421
star
21

documentation

Issue tracker for Plotly's open-source documentation.
419
star
22

dashR

Create data science and AI web apps in R
JavaScript
381
star
23

dash-docs

📖 ISSUE TRACKER ONLY for The Official Dash Userguide & Documentation https://dash.plotly.com/
Python
371
star
24

jupyterlab-dash

An Extension for the Interactive development of Dash apps in JupyterLab
Python
360
star
25

plotly_matlab

Plotly Graphing Library for MATLAB®
MATLAB
350
star
26

Kaleido

Fast static image export for web-based visualization libraries with zero dependencies
PostScript
333
star
27

orca

Command line application for generating static images of interactive plotly charts
JavaScript
284
star
28

dash-core-components

OBSOLETE: now part of https://github.com/plotly/dash
Python
271
star
29

IPython-plotly

A collection of data science IPython notebooks with Plotly graphs
HTML
266
star
30

dash-component-boilerplate

Get started creating your own Dash components here.
Python
260
star
31

angular-plotly.js

TypeScript
226
star
32

jupyterlab-chart-editor

JupyterLab extension for Plotly's react-chart-editor
TypeScript
213
star
33

arduino-api

Arduino library for real-time logging and streaming data to online plotly graphs
Python
209
star
34

dash-pivottable

react-pivottable in Dash
Python
189
star
35

dash-oil-and-gas-demo

Dash Demo App - New York Oil and Gas
Python
182
star
36

dash-detr

A User Interface for DETR built with Dash. 100% Python.
Python
179
star
37

dashboards

Superseded by Dash!
179
star
38

plotlyjs-flask-example

A simple plotly.js example served with flask
Python
179
star
39

dash-table-experiments

NO LONGER SUPPORTED - use https://github.com/plotly/dash-table instead
JavaScript
175
star
40

plotly-nodejs

node.js wrapper for Plotly's Chart Studio Streaming and REST APIs
JavaScript
166
star
41

colorlover

Color scales in Python for humans
Python
156
star
42

dash-html-components

OBSOLETE - now part of https://github.com/plotly/dash
Python
154
star
43

dash-svm

Interactive SVM Explorer, using Dash and scikit-learn
Python
153
star
44

Streaming-Demos

Demos of Plotly's Real-time Streaming API
Jupyter Notebook
149
star
45

dash-ag-grid

Dash AG Grid is a high-performance and highly customizable component that wraps AG Grid, designed for creating rich datagrids.
Python
139
star
46

dash-labs

Work-in-progress technical previews of potential future Dash features.
Python
139
star
47

dash-daq

Control components for Dash
JavaScript
137
star
48

dash-technical-charting

Powerful technical charting app/interface in pure Python
Python
133
star
49

dash-stock-tickers-demo-app

Dash Demo App - Stock Tickers
CSS
131
star
50

dash-salesforce-crm

118
star
51

python-user-guide

MOVED!
115
star
52

dashboards.ly

Superseded by Dash!
HTML
108
star
53

dash-renderer

OBSOLETE has been merged into dash
JavaScript
97
star
54

Plotly.jl

A Julia interface to the plot.ly plotting library and cloud services
Julia
93
star
55

raspberrypi

Realtime Streaming with the Raspberry Pi and Plot.ly Python Library
Python
91
star
56

dash-image-processing

Dash Demo App - Image Processing App
Python
82
star
57

dash-canvas

An interactive image editing component for Dash
Python
82
star
58

dash-volatility-surface

Volatility surface explorer in pure Python
Python
79
star
59

dash-deck

Bringing deck.gl and pydeck into Dash
JavaScript
75
star
60

dash-world-cell-towers

A Dash app for exploring the world cell tower dataset provided by OpenCellid
Python
72
star
61

dash-auth

Basic Auth and Plotly Authentication for Dash Apps
Python
72
star
62

dash-player

Dash Component wrapping React-Player
Python
72
star
63

Dash.NET

F# interface to Dash- the most downloaded framework for building ML & data science web apps
F#
67
star
64

dash-alternative-viz

Dash components & demos to create Altair, Matplotlib, Highcharts , and Bokeh graphs within Dash apps.
JavaScript
67
star
65

dash-heroku-template

Fool-proof template for deploying Dash apps on Heroku
Python
64
star
66

simple-example-chart-apps

Some very simple apps to demonstrate the chart types on the Plotly website.
CSS
54
star
67

postMessage-API

Bind custom interactivity to embedded Plotly graphs
HTML
52
star
68

graphing-library-docs

Plotly's graphing libraries documentation.
Jupyter Notebook
51
star
69

rasterly

Rapidly generate raster images from large datasets in R with Plotly.js
R
48
star
70

dash-opioid-epidemic-demo

US county data for poision-induced deaths, years 1999-2015
HTML
48
star
71

dash-redis-celery-periodic-updates

Demo apps now maintained in https://github.com/plotly/dash-enterprise-docs
Python
48
star
72

dash-dangerously-set-inner-html

Dash component to dangerously set inner raw HTML
Python
45
star
73

dash-px

Simple Dash app using Plotly Express
Python
43
star
74

dash-network

A tutorial & demo on how to port the D3 force-layout network diagram to Dash
JavaScript
43
star
75

dash-sunburst

Dash / React + D3 tutorial: Sunburst diagrams
Python
43
star
76

academy

CSS
42
star
77

public-health

⚕ Tutorials for public health crossfilter dashboards
42
star
78

ruby-api

A Ruby wrapper to the plot.ly REST API.
Ruby
41
star
79

react-colorscales

A React UI component for picking and modifying colorscales
JavaScript
37
star
80

dash-yield-curve

Remake of the NYTimes yield curve demo
CSS
37
star
81

dash-app-stylesheets

Hosting Dash app stylesheets
CSS
36
star
82

plotly.github.io

Help pages for Chart Studio
CSS
35
star
83

plotly-notebook-js

A package for using plotly in Tonicdev and Jupyter notebooks.
JavaScript
34
star
84

canvas-portal

Gallery of examples for dash-canvas
CSS
34
star
85

dash-brain-surface-viewer

Dash app for viewing brain surfaces saved as MNI files. Data from https://github.com/aces/brainbrowser
Python
33
star
86

dash-dbx-sql

Simple Dash app demonstrating connection to Databricks via the Python SQL connector
Python
33
star
87

dash-components-archetype

Deprecated. A Builder archetype for Dash component suites. See the new version here: https://github.com/plotly/dash-component-boilerplate
JavaScript
32
star
88

R-User-Guide

The Official User-Guide to Plotly's R API and ggplotly
31
star
89

plotly.js-crossfilter.js

A simple example showing Plotly.js and Crossfilter.js working together.
JavaScript
31
star
90

plotly-webpack

Example repo for bundling plotly.js with webpack and browserify
JavaScript
30
star
91

spotfire

Create D3.js visualizations in spotfire with Plotly
29
star
92

dash-alternative-viz-demo

Components for using Dash with Matplotlib, Seaborn, Bokeh, Holoviews, and Altair.
Python
28
star
93

dashdub

Convert speech to text with Dash & Python
Jupyter Notebook
28
star
94

plotcon-2017-plotlyjs-workshop

Syllabus and materials for plotly.js workshop at PLOTCON 2017
28
star
95

workshop

Plotly API Hardware Use Cases
Arduino
27
star
96

react-ipython-notebook

React component for nbconvert.js
JavaScript
27
star
97

excel-plugin

Plotly Excel Plugin
C#
26
star
98

dash-datashader

A demo app for visualizing hundreds of millions of data points interactively with Dash and Datashader.
Python
25
star
99

dash-regression

Interactive Linear Regression Explorer, using Dash + scikit-learn
Python
25
star
100

react-plotly.js-demo-app

Demo app for the Plotly.js React component
CSS
24
star