GraphML
Erscheinungsbild
GraphML is an XML-based file format for graphs.
Introduction to GraphML
Here is what a simple undirected graph with 2 nodes and one edge between them looks like:
<?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">
Die zur Anzeige dieser Grafik verwendete Erweiterung wurde dauerhaft deaktiviert. Wir arbeiten aktuell daran, diese und weitere betroffene Grafiken auf ein neues Format umzustellen. (Mehr dazu)
</graphml>
Other Graph File Formats
- GXL, graph exchange format based on XML -- GXL
- Trivial Graph Format, simple text based format
- GML is another widely used graph exchange format. -- GML
See also
- XML
- Scalable Vector Graphics (SVG) is an XML-based graphics format.
External links
- http://graphml.graphdrawing.org/ homepage of GraphML
- http://graphml.graphdrawing.org/primer/graphml-primer.html An easy introduction to GraphML is the GraphML Primer.
- http://www.svgopen.org/2003/papers/ComparisonXML2SVGTransformationMechanisms/ Comparison between XML to SVG Transformation Mechanisms