Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
eclipse
GitHub Repository: eclipse/sumo
Path: blob/main/docs/graphviz/flow_network.txt
169667 views
1
digraph complete {
2
graph [rankdir = "TB"];
3
4
5
node [shape=box fontname="Arial" fillcolor="olivedrab3" style="filled"]; NETCONVERT;
6
node [shape=box fontname="Arial" fillcolor="olivedrab" style="filled"]; NETGEN;
7
8
subgraph cluster_0 {
9
graph [rankdir = "LR"];
10
style=filled;
11
color=lightgrey;
12
label = "(Additional)\nuser descriptions"
13
shape = ellipse
14
15
node [shape=record fontname="Arial" fillcolor="olivedrab3" style="filled" label="{<f0> XML edges files | XML nodes files | XML connections files}"]; "XML Descriptions";
16
17
}
18
19
20
subgraph cluster_2 {
21
graph [rankdir = "LR"];
22
style=filled;
23
color=lightgrey;
24
label = "Foreign formats"
25
shape = ellipse
26
27
node [shape=record fontname="Arial" fillcolor="olivedrab3" style="filled" label="{<f0> VISUM network | Vissim network | Cell network | ArcView/ArcGIS database | Tiger map | ARTEMIS network | Elmar map}"]; "Foreign formats";
28
29
}
30
31
graph [rankdir = "TB"];
32
33
34
"XML Descriptions" -> NETCONVERT [arrowhead="normal" label="<...>" fontname="Arial" fontsize="10"];
35
"Foreign formats" -> NETCONVERT [arrowhead="normal" label="<...>" fontname="Arial" fontsize="10"];
36
37
38
node [shape=ellipse fontname="Arial" fillcolor="olivedrab2" style="filled"]; network;
39
40
NETCONVERT -> network [arrowhead="normal" label="--output" fontname="Arial" fontsize="10"];
41
NETGEN -> network [arrowhead="normal" label="--output" fontname="Arial" fontsize="10"];
42
43
44
node [shape=box fontname="Arial" fillcolor="lightskyblue" style="filled"]; "SUMO/GUISIM";
45
network -> "SUMO/GUISIM" [arrowhead="normal" label="--net-file" fontname="Arial" fontsize="10"];
46
47
}
48
49