altos/test: Adjust CRC error rate after FEC fix
[fw/altos] / doc / map-loading.dot
1 digraph map_loading {
2         edge [arrowsize=0.5; style="setlinewidth(2)"]
3         node [style=filled; fontcolor=white; color=invis; shape=box; arrowsize=0.5; fontname="DejaVu Sans,sans-serif"; fontsize=12; height=0.2;];
4         edge [decorate=true; fontname="DejaVu Sans,sans-serif"; fontsize=8];
5         graph [fontname="DejaVu Sans,sans-serif"; fontsize=15; ]
6         rankdir="TB";
7         ranksep=0.5;
8         nodesep=0.5;
9         color=invis;
10         fillcolor="#c0c0c0";
11         fontcolor="white";
12
13         app -> apache [label="AltOS Map URI"]
14         apache -> app [label="Google Map tile"]
15
16         apache -> cgi_script [label="AltOS Map URI"]
17         cgi_script -> cache_manager [label="AltOS Tile Request"]
18
19         cgi_script -> apache [label="Google Map tile"]
20
21         cache_manager -> cgi_script [label="AltOS Tile Reply"]
22
23         cache_manager -> disk_files [label="AltOS tile files" dir="both"]
24         cache_manager -> google_maps [label="Google Map URI"]
25
26         google_maps -> cache_manager [label="Google Map tile"]
27
28         app [color="#885931" label="Application"]
29         apache [color="#d12127" label="Apache Web Server"]
30         cgi_script [color="#551a8b" label="AltOS Map CGI Script"]
31         cache_manager [color="#c75b1c" label="AltOS Map Cache Manager"]
32         disk_files [color="#4f81bd" label="File System"]
33         google_maps [color="#4cbb44" label="Google Maps"]
34 }
35