Παράδειγμα: διάγραμμα με το Graphviz

Data flow diagram

digraph G {
        nodesep=.1;
        ranksep=.3;
        node [height=0.3,fontname="Helvetica",fontsize=10];
        edge [fontname="Helvetica",fontsize=10];

        prox [label = "Proximity calculation"];
        map [label = "Map generation"];
        web [label = "Web generation"];

        node [shape=octagonstyle=filledfillcolor=".64 .54 .99"];
        Camera;
        GPS;

        node [shape=boxstyle=filledfillcolor=".13 .9 1"];
        Camera -> web [label = "pictures"];
        GPS -> prox [label = "track log"];
        Gazetteer -> prox [label = "feature coordinates"];
        prox -> map [label="annotated track"];
        Topography -> map;
        Coastlines -> map;
        map -> web [label = "map diagrams"];
        web -> "Geoweb";
}