visualization

C# Class/Object visualisation software

In Visual Studio 2005 and prior you could export your code to Visio and view the relationships between the objects and what methods, properties and fields it had. This was great as it allowed you to tweak the appearance to improve the look. In VS 2008 that option is gone, replaced (supposedly) with the class diagram system. It is functi...

Scientific Visualization with OpenGL and QT

I am trying to write an OpenGL visualization program for some scientific data using qt. I would like to be able to use my existing program unchanged and simply be able to call the glwidget and tell it to update the data at the end of each time step. However in order to run a qt program it appears you have to use QApplication and then qt...

How can I visualize XML in Flex /Flash?

Hello, I'm making a Flex application to visualize the contents of an XML file in a tree, radial diagram, etc... I looked all over the internet and I can't find any useful tutorials or source code on how to do this. Most existing components on the web have licensing issues with them, so I prefer to write some sort of XML visualization al...

How can I visualise a "broken" hierarchical dataset?

I have a reasonably large datatable structured something like this: StaffNo Grade Direct Boss2 Boss3 Boss4 Boss5 Boss6 ------- ----- ----- ----- ----- ----- ----- ----- 10001 1 10002 10002 10057 10094 10043 10099 10002 2 10057 NULL 10057 100...

Broken std::map visualiser in VS2005

I'm using the Intel compiler and visual studio and I can't seem to debug values that are in maps. I get a quick preview which shows the size of the map but the elements only show up as "(error)", I'll illustrate with a quick example, i've generated a map with a single entry myMapVariable[6]=1; if I mouse over I get this "myMapVariable ...

Visualise OO PHP code

Hello, Does something exist that I can point to my PHP project and it can look at all the files (or just the ones that I specify) and generate a diagram based on the objects and function calls? It would be a good way to verify that my design is actually being implimented :) Background: I'm trying to build a PHP website using OO princip...

Where can I find good open source code flow visualization software?

I am working on an academic research regarding some very long functions in the Linux kernel (link, link). For that research, I would like to use some code flow visualization tool, that would be able to plot a graph in which each vertex is a decision point and each edge is a piece of code which runs in a consequent way. Do you know of a...

Is it possible to render direct3d graphics over tcp/ip or another network protocol?

Hi, I have 3 machines which I would like to setup as a cluster for distributed rendering of 3d graphics, more specific Direct3d. I can do this with Opengl using Wiregl (http://graphics.stanford.edu/software/wiregl/) or better yet Chromium. Does a solution exist for doing the same with Direct3d? Thanks in advance ...

Visualizing a Business Object's history

My current project has business objects that change over time. The objects can have future changes as well as past changes. One of my tasks is to create viewers and editors for these objects that let the user see its state at any point in the past or future. The changes are fairly simple: one or more property values changed/will change o...

How to visualize workflow from Eclipse?

Is there an Eclipse IDE plugin that can generate workflow of Java code? ...

Application to generate Java class hierarchy diagram

Looking for a tool that: Produces a visually appealing, orthogonally structured graph hierarchy Outputs high-quality PNG images (300dpi+) Visually differentiates classes, abstract classes, interfaces, and enumerated types (preferably by colour) Interactive user interface Allows pruning of packages and/or individual classes from the dia...

What is the best way to display a grid of a large number of items in Silverlight?

I am currently working on a Silverlight2-based attendance register. I want to create a visualisation of attendance over time for students and classes, but am struggling to come up with a good way of doing it. The sort of thing I'm imagining is a grid with students on the vertical axis and date along the horizontal, with a symbol at the i...

Quantitative analysis of media and associated web information visualization

Has anyone had a look at the Media Cloud project ( www.mediacloud.org/ ) ? The code is here : http://www.mediacloud.org/code/ . I'm interested in this kind of visualization from web data. Some potential applications are given in the site's wikis. I'm interested in doing something like this( from a desktop app) : search the term "machin...

render complex org chart similar javascript/flash/java graphic library

i am looking for javascript/flash/java graphic lib. that able to render nicely a very complex relationship where one node is relate to another node etc. for example a--> b---> c b--> d,e,f any recommandation library? ...

PHP call graph utility?

I'm looking for a utility similar to gprof that will generate a call graph for PHP code. I'd prefer something that can produce graphical output, or at least text output that can be interpreted by GraphViz or similar, but I'll settle for plain text output. Does anyone know of any tool that can do this? ...

Is there a way to call the debugger's visualizer in code?

Is there a way to call up visual studio's object visualization tools in my own code? say I want to be able to click something and inspect it like the debugger would if I hovered over it in code or added it to the watch? ...

Preferable Tag Cloud Visualization Formats

Out of curiosity, I would love to know what tag clouds formats best serve the purpose of discovery of more and more (relevant)content? I am aware of 3 formats, but don't know which one is the best. 1) delicious one - color shading 2) The standard one with font size variations - 3) The one on this site - numbers showing importance/us...

Side-by-side plots with ggplot2 in R

I would like to place two plots side by side using the ggplot2 package (ie. do the equivalent of par(mfrow=c(1,2))). For example, I would like to have the following two plots show side-by-side with the same scale. x <- rnorm(100) eps <- rnorm(100,0,.2) qplot(x,3*x+eps) qplot(x,2*x+eps) Do I need to put them in the same data.frame lik...

Getting Data into LLNL VisIt via Python

Without using VisIt's python library visit-writer.py, how can I import my data into VisIt? I'm aware of many alternative file formats but I can't find a simple library that takes my arrays of data and just writes it as a file. Specifically, my data consists of adaptive mesh boxes (really, voxels) and so I figure is best represented by an...

Plot latitude/longitude values from CSV file on Google Maps (or similar platform)

I've been provided with a table of data which includes columns for latitude and longitude. The data is US only. What I've like to do is to feed this data to Google Maps or a similar tool like Live Maps and have the data points plotted. Does anyone have a code sample or know of a library that makes this task simple? I can read the values...