Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
eclipse
GitHub Repository: eclipse/sumo
Path: blob/main/docs/graphviz/flow_routes.txt
169667 views
1
graph G {
2
node [shape=Mcircle fontname="Arial" fillcolor="yellow1" style="filled"]; USER;
3
node [shape=box fontname="Arial" fillcolor="indianred1" style="filled"]; OD2TRIPS;
4
node [shape=box fontname="Arial" fillcolor="lightskyblue" style="filled"]; "SUMO/GUISIM";
5
6
subgraph T0 {
7
rank=same
8
node [shape=box fontname="Arial" fillcolor="goldenrod" style="filled"]; DUAROUTER;
9
node [shape=box fontname="Arial" fillcolor="goldenrod1" style="filled"]; DFROUTER;
10
node [shape=box fontname="Arial" fillcolor="goldenrod2" style="filled"]; JTRROUTER;
11
}
12
13
subgraph T1 {
14
rank=same
15
node [shape=ellipse fontname="Arial" fillcolor="goldenrod" style="filled"]; trips;
16
node [shape=ellipse fontname="Arial" fillcolor="goldenrod" style="filled"]; flows;
17
node [shape=ellipse fontname="Arial" fillcolor="goldenrod" style="filled"]; cell_routes;
18
node [shape=ellipse fontname="Arial" fillcolor="goldenrod" style="filled"]; artemis_routes;
19
}
20
21
subgraph T2 {
22
rank=same
23
node [shape=ellipse fontname="Arial" fillcolor="goldenrod1" style="filled"]; routes;
24
node [shape=ellipse fontname="Arial" fillcolor="goldenrod2" style="filled"]; route_alternatives;
25
node [shape=octagon fontname="Arial" fillcolor="lightcyan" style="filled"]; "emitter definitions";
26
}
27
28
29
USER -- trips [arrowhead="normal" fontname="Arial" fontsize="10"];
30
USER -- flows [arrowhead="normal" fontname="Arial" fontsize="10"];
31
USER -- routes [arrowhead="normal" fontname="Arial" fontsize="10"];
32
33
OD2TRIPS -- trips [arrowhead="normal" label="--output" fontname="Arial" fontsize="10"];
34
35
trips -- DUAROUTER [arrowhead="normal" label="--trip-defs" fontname="Arial" fontsize="10"];
36
cell_routes -- DUAROUTER [arrowhead="normal" label="--cell-input" fontname="Arial" fontsize="10"];
37
artemis_routes -- DUAROUTER [arrowhead="normal" label="--artemis-input" fontname="Arial" fontsize="10"];
38
flows -- DUAROUTER [arrowhead="normal" label="--flow-definition" fontname="Arial" fontsize="10"];
39
flows -- JTRROUTER [arrowhead="normal" label="--flow-definition" fontname="Arial" fontsize="10"];
40
41
DUAROUTER -- routes [arrowhead="normal" label="--output" fontname="Arial" fontsize="10"];
42
DUAROUTER -- route_alternatives [arrowhead="normal" label="--output (+.alt)" fontname="Arial" fontsize="10"];
43
JTRROUTER -- routes [arrowhead="normal" label="--output" fontname="Arial" fontsize="10"];
44
DFROUTER -- "emitter definitions" [arrowhead="normal" label="--emitters-output" fontname="Arial" fontsize="10"];
45
46
routes -- "SUMO/GUISIM" [arrowhead="normal" label="--route-files" fontname="Arial" fontsize="10"];
47
"emitter definitions" -- "SUMO/GUISIM" [arrowhead="normal" label="--additional-files" fontname="Arial" fontsize="10"];
48
routes -- DUAROUTER [arrowhead="normal" label="--sumo-input" fontname="Arial" fontsize="10"];
49
50
route_alternatives -- DUAROUTER [arrowhead="normal" label="--alternatives" fontname="Arial" fontsize="10"];
51
}
52
53