Graph test

From EUDP
Revision as of 13:28, 18 February 2010 by Klaus (Talk)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

<graphviz caption='EUDP overview' alt='phylogenetic tree' format='svg+png'> digraph G {

graph [ fontname = "Helvetica-Oblique",
        fontsize = 12,
  1. label = "\n\n\n\nEUDP Roadmap",
        size ="12,12"];
  1. ranksep=equally;
{
  rankdir=LR;
  node [shape=plaintext];
  edge [style=invis];
  "PreProject phase"->"Launch phase"->"Realisation phase"->"PostProject phase"->"Common Activities";
  /* 
  Ancestors 
  "PreProject"; "Launch"; "Realisation"; "PostProject"; "Common Activities";
 */

}

subgraph cluster_PreProject {
  rankdir=LR;
  color=palegreen;
  style=filled;
  node [style=filled,color=white];
  PreAnalysis->PreContracting;
  rank=same; "PreProject phase";
  1. label="PreProject";
}
PreAnalysis [URL="Pre_Analysis"];
PreContracting [URL="Pre_Contracting"];
  1. PreProject->PreAnalysis;
subgraph cluster_Launch {
  color=darkkhaki;
  style=filled;
  node [style=filled,color=white];
  rank=same; "Launch phase";
  "General Analysis"->"General Architecture Design"->"Technical Platform"->Contracting;
  1. label="Launch Phase";
}
PreContracting->"General Analysis";
subgraph cluster_Realisation {
  color=darkseagreen;
  style=filled;
  node [style=filled,color=white];
  rank=same; "Realisation phase";
  "Strategy & Planning"->"Analysis"->"Design"->"Implementation"->"Verification"->"Deployment";
  1. label="Realisation";
}
subgraph cluster_PostProject {
  color=paleturquoise;
  style=filled;
  node [style=filled,color=white];
  rank=same; "PostProject phase";
  "Product Accept"->"Product Evaluation"->"Project Evaluation";
  1. label="PostProejct";
}
  1. PostProject->"Product Accept";
subgraph cluster_CommonActivities {
  rank=same; "Common Activities";
  color=tan;
  style=filled;
  node [style=filled,color=white];
  "Hardware Development"->"Human Processes"->"Review Techniques"->"Verification - common"->"Risk Management";
  1. label="Common Activities";
}
Contracting->"Strategy & Planning";
Deployment->"Strategy & Planning";
Deployment->"Product Accept";


"Hardware Development"->"General Architecture Design";
"Hardware Development"->"Analysis";
"Hardware Development"->Design;
"Human Processes"->PreAnalysis;
"Human Processes"->"General Analysis";
"Review Techniques"->Analysis;
"Review Techniques"->Design;
"Review Techniques"->Implementation;
"Verification - common"->"Strategy & Planning";
"Risk Management"->"Strategy & Planning";
"Risk Management"->"General Architecture Design";
start [shape=diamond];
start->"PreAnalysis";
end [shape=diamond];
"Project Evaluation"->end;

/*

subgraph cluster_Roadmap{
  color=yellow;
  style=filled;
  node [style=filled,color=white];
  PreProject->Launch->Realisation->PostProject;
  label="EUDP Roadmap";
}
PreProject [URL="PreProject"];
Launch [URL="The_Launch_Phase"];
Realisation [URL="Realisation_Phase"];
PostProject [URL="Post_Project_Phase"];
  • /

</graphviz>