mclimit1.dot 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /*
  2. dot -oconcept2.png -Tpng concept2.dot
  3. */
  4. digraph concept{
  5. label="master concept";
  6. rankdir=LR;
  7. size="10,11";
  8. ranksep=0.25;
  9. nodesep=0.18;
  10. graph [compound=true,
  11. mclimit=4,
  12. remincross=true,
  13. nodesep = 0.1,
  14. size="12,12"
  15. ];
  16. node [shape=none];
  17. DigLib;
  18. DigLib -> FedSearch;
  19. LRT -> FedSearch;
  20. node [shape=box];
  21. LinkedData;
  22. DigLib -> MD;
  23. LRT -> MD;
  24. LRT -> Content;
  25. DigLib -> Content;
  26. Ontologies[peripheries=2] ;
  27. Vocabulary;
  28. node [shape=ellipse];
  29. SemanticSearch -> LinkedData[label="uses"];
  30. SemanticMapping -> LinkedData [label="produces"];
  31. OntoMapping;
  32. MD -> CatalogSearch;
  33. Content -> ContentSearch;
  34. FedSearch -> ContentSearch;
  35. //Ontology -> NavigateGraph;
  36. //Ontology -> OntoSearch;
  37. Ontologies -> SemanticMapping;
  38. subgraph cluster_clarin {
  39. label="CLARIN";
  40. MDService;
  41. FCS;
  42. MDService -> CDMDC;
  43. FCS -> CDMDC;
  44. DataCatRegistry -> ComponentRegistry -> MDService;
  45. DataCatRegistry -> Vocabulary -> RelationRegistry;
  46. RelationRegistry -> SemanticMapping;
  47. MDService -> SemanticMapping;
  48. }
  49. CatalogSearch -> MDService[style=dashed,arrowhead=none];
  50. ContentSearch -> FCS[style=dashed,arrowhead=none];
  51. OntoMapping -> SemanticMapping [style=dashed,arrowhead=none];
  52. /* user */
  53. node [shape=circle];
  54. SemanticSearch -> Researcher [arrowhead=none, arrowtail=none, style=dotted];
  55. FCS -> Researcher [arrowhead=none, arrowtail=none, style=dotted];
  56. CDMDC -> Researcher [arrowhead=none, arrowtail=none, style=dotted];
  57. SemanticMapping -> Modeler [arrowhead=none, arrowtail=none, style=dotted];
  58. RelationRegistry -> Modeler [arrowhead=none, arrowtail=none, style=dotted];
  59. ComponentRegistry -> Modeler [arrowhead=none, arrowtail=none, style=dotted];
  60. }