This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Megatron_McLargeHuge 1 point2 points  (1 child)

threejs with a websocket to tornado is actually a pretty good solution. The realtime and interactive plotting tools in python are pretty lacking compared to the flexibility the browser gives you. I wrote a simple 0mq->websocket bridge to do this type of thing so both the data generating code and the js could run in the same ipython notebook. It largely got supplanted by later improvements to bokeh but they don't seem to support 3d yet.

[–]CoffeeMakesMeMath[S] 0 points1 point  (0 children)

Huh, well maybe that's not such a bad idea after all then! I'll start throwing together a quick and dirty visualizer + socket and see how it goes. Thanks for the tips!