English 中文(简体)
Introduction to Java Graphics Libraries
原标题:

I just got into information-visualization and scientific-visualization and have been using Piccolo and a little with JFreeChart. I am trying to find a few new libraries that I can start using. I am looking specifically for libraries that involve multi-dimensional visualization and map overlaying (something like open-layers), but would be open to get exposure to any graphics libraries.

问题回答

You may want to look at Processing - a data visualisation environment and language written in Java.

You might also want to consider R, which as very extensive graphic capabilities and is used extensively in academic research and places like the NY Times. It would require you to learn a new syntax, but it is very hard to beat for scientific visualizations, and it can easily be called from Java using JRI.

Here are a few resources:

Also, while this isn t R specific, the gallery of data visualization is worth looking at.

If you want to stick with pure Java, look at Prefuse for graph visualization.

JMathTool may be interesting. It will allow you to do simple 3D graphs quickly, however it isn t designed to handle more complicated visualisations.

The combination that I think I will be using is JMathPlot (similar to matlab) for visualizing scientific data and using JOGL for visualizing informational data

QuickDraw, written by University of Calgary professors Schock and Stephenson, is a great simple tool for graphics visualisation. Free for personal and non-commercial use.

http://pages.cpsc.ucalgary.ca/QuickDraw/





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签