|
NAMEgraph-easy - render/convert graphs in/from various formats SYNOPSISConvert between graph formats and layout/render graphs: graph-easy [options] [inputfile [outputfile]]
echo "[ Bonn ] - car -> [ Berlin ]" | graph-easy
graph-easy --input=graph.dot --as_ascii
graph-easy --html --output=mygraph.html graph.txt
graph-easy graph.txt graph.svg
graph-easy graph.txt --as_dot | dot -Tpng -o graph.png
graph-easy graph.txt --png
graph-easy graph.vcg --dot
graph-easy graph.dot --gdl
graph-easy graph.dot --graphml
ARGUMENTSHere are the most important options, more are listed in the full documentation:
DESCRIPTION"graph-easy" reads a description of a graph (a connected network of nodes and edges, not a pie chart :-) and then converts this to the desired output format. By default, the input will be read from STDIN, and the output will go to STDOUT. The input is expected to be encoded in UTF-8, the output will also be UTF-8. It understands the following formats as input: Graph::Easy http://bloodgate.com/perl/graph/manual/
DOT http://www.graphviz.org/
VCG http://rw4.cs.uni-sb.de/~sander/html/gsvcg1.html
GDL http://www.aisee.com/
The formats are automatically detected, regardless of the input file name, but you can also explicitly declare your input to be in one specific format. The output can be a dump of the graph in one of the following formats: Graph::Easy http://bloodgate.com/perl/graph/manual/
DOT http://www.graphviz.org/
VCG http://rw4.cs.uni-sb.de/~sander/html/gsvcg1.html
GDL http://www.aisee.com/
GraphML http://graphml.graphdrawing.org/
In addition, "Graph::Easy" can also create layouts of graphs in one of the following output formats: HTML SVG ASCII BOXART Note that for SVG output, you need to install the module Graph::Easy::As_svg first. As a shortcut, you can also specify the output format as 'png', this will cause "graph-easy" to pipe the input in graphviz format to the "dot" program to create a PNG file in one step. The following two examples are equivalent: graph-easy graph.txt --dot | dot -Tpng -o graph.png
graph-easy graph.txt --png
OTHER ARGUMENTS"graph-easy" supports a few more arguments in addition to the ones from above:
EXAMPLESASCII output echo "[ Bonn ] -- car --> [ Berlin ], [ Ulm ]" | graph-easy
+--------+ car +-----+
| Bonn | -----> | Ulm |
+--------+ +-----+
|
| car
v
+--------+
| Berlin |
+--------+
Graphviz example output echo "[ Bonn ] -- car --> [ Berlin ], [ Ulm ]" | graph-easy --dot
digraph GRAPH_0 {
edge [ arrowhead=open ];
graph [ rankdir=LR ];
node [
fontsize=11,
fillcolor=white,
style=filled,
shape=box ];
Bonn -> Ulm [ label=car ]
Bonn -> Berlin [ label=car ]
}
VCG example output echo "[ Bonn ] -- car --> [ Berlin ], [ Ulm ]" | graph-easy --vcg
graph: {
title: "Untitled graph"
node: { title: "Berlin" }
node: { title: "Bonn" }
node: { title: "Ulm" }
edge: { label: "car" sourcename: "Bonn" targetname: "Ulm" }
edge: { label: "car" sourcename: "Bonn" targetname: "Berlin" }
}
GDL example outputGDL (Graph Description Language) is a superset of VCG, and thus the output will look almost the same as VCG: echo "[ Bonn ] -- car --> [ Berlin ], [ Ulm ]" | graph-easy --gdl
graph: {
title: "Untitled graph"
node: { title: "Berlin" }
node: { title: "Bonn" }
node: { title: "Ulm" }
edge: { label: "car" source: "Bonn" target: "Ulm" }
edge: { label: "car" source: "Bonn" target: "Berlin" }
}
GraphML example outputGraphML is XML: echo "[ Bonn ] -- car --> [ Berlin ], [ Ulm ]" | graph-easy --graphml
<?xml version="1.0" encoding="UTF-8"?>
<graphml xmlns="http://graphml.graphdrawing.org/xmlns"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns
http://graphml.graphdrawing.org/xmlns/1.0/graphml.xsd">
<!-- Created by Graph::Easy v0.58 at Mon Aug 20 00:01:25 2007 -->
<key id="d0" for="edge" attr.name="label" attr.type="string"/>
<graph id="G" edgedefault="directed">
<node id="Berlin">
</node>
<node id="Bonn">
</node>
<node id="Ulm">
</node>
<edge source="Bonn" target="Berlin">
<data key="d0">car</data>
</edge>
<edge source="Bonn" target="Ulm">
<data key="d0">car</data>
</edge>
</graph>
<graphml>
CAVEATSPlease note that it is impossible to convert 100% from one format to another format since every graph language out there has features that are unique to only this language. In addition, the conversion process always converts the input first into an Graph::Easy graph, and then to the desired output format. This means that only features and attributes that are actually valid in Graph::Easy are supported yet. Work in making Graph::Easy an universal format supporting as much as possible is still in progress. Attributes that are not yet supported natively by Graph::Easy are converted to custom attributes with a prefixed "x-format-", f.i. "x-dot-". Upon output to the same format, these are converted back, but conversion to a different format will lose these attributes. For a list of what problems still remain, please see the TODO file in the "Graph::Easy" distribution on CPAN: <http://search.cpan.org/~tels/Graph-Easy/> If you notice anything wrong, or miss attributes, please file a bug report on <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Graph-Easy> so we can fix it and include the missing things into Graph::Easy! LICENSEThis library is free software; you can redistribute it and/or modify it under the terms of the GPL. See the LICENSE file of Graph::Easy for a copy of the GPL. This product includes color specifications and designs developed by Cynthia Brewer (<http://colorbrewer.org/>). See the LICENSE file for the full license text that applies to these color schemes. AUTHORCopyright (C) 2004 - 2008 by Tels <http://bloodgate.com> SEE ALSOMore information can be found in the online manual of Graph::Easy: <http://bloodgate.com/perl/graph/manual/> See also: Graph::Easy, Graph::Easy::Manual
|