Changes between Version 2 and Version 3 of VizAlign
- Timestamp:
- 07/20/06 14:42:53 (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
VizAlign
v2 v3 16 16 == Visualisation Systems == 17 17 18 === 1. TableTime===18 === 1. [wiki:VizAlign#tt TableTime] === 19 19 20 The TableTimevisualisation uses tables to render an alignment as a list of relations. Furthermore, there are two such tables to enable the user to compare two selected alignments from the set. The synchronise function sorts the second table according to the first one, allowing for an easy comparison of the relations included.20 The [wiki:VizAlign#tt TableTime] visualisation uses tables to render an alignment as a list of relations. Furthermore, there are two such tables to enable the user to compare two selected alignments from the set. The synchronise function sorts the second table according to the first one, allowing for an easy comparison of the relations included. 21 21 22 22 Among the features planned are an alignment diff and some easy statistical analysis tools. 23 23 24 24 The visualising main class is {{{de.dfki.km.phaselib.tools.vizAlign.tableTime.TableTimeVisualiser}}}. 25 [[Image(tabletime.gif, , TableTime Main Window)]] 25 26 26 27 === 2. DOT-Based === 27 28 28 DOT is a graph layouting package. The abstract visualisation module {{{de.dfki.km.phaselib.tools.vizAlign.dotGUI.GraphVizBasedVisualiser}}} provides a basic access to this DOT layouter, by generating an input (.dot) file from the alignment to be rendered. The resulting layout is then to be presented by an specification of this abstract module.29 [http://www.graphviz.org/ GraphViz] is a general graph layouting package, containing the DOT tool. The abstract visualisation module {{{de.dfki.km.phaselib.tools.vizAlign.dotGUI.GraphVizBasedVisualiser}}} provides a basic access to this DOT layouter, by generating an input (.dot) file from the alignment to be rendered. The resulting layout is then to be presented by an specification of this abstract module. Each such specification requires the [http://www.graphviz.org/ GraphViz] tools to be installed and to be found in the path. 29 30 30 TODO 31 The '''BatikDOTVisualiser''' uses the abstract module to layout the ontology and alignment graphs to scalable vector graphic (.svg) files. It then uses the [ 32 http://xmlgraphics.apache.org/batik apache batik package] to render these .svg files on the screen. The visualising main class is {{{de.dfki.km.phaselib.tools.vizAlign.dotGUI.BatikDOTVisualiser}}}. It thus requires the [ 33 http://xmlgraphics.apache.org/batik apache batik package]. The batic library provides an extensive user interface, have a look at their [http://xmlgraphics.apache.org/batik/svgviewer.html#zooming viewer manual] and ignore the menu based descriptions. 34 35 Unfortunately, this visualiser is not able to deal with larger data sets. Furthermore is the layout often quite unappropriate to show a set of relations between the ontology graphs, despite our effort to teach it better. We'd be grateful for any contribution. 36 37 [[Image(batikdot.gif, , TableTime Main Window)]] 31 38 32 39