car-> add car owner ability

This commit is contained in:
Nico Schottelius 2020-04-18 11:16:00 +02:00
parent 66cee3d031
commit ed4d569616
1 changed files with 16 additions and 2 deletions

View File

@ -1,6 +1,6 @@
digraph G {
node [ shape=box, fontcolor="#ffffff", color="#40a9e3", style="filled" ]
label="vendor neutral car backup by ungleich"
label="vendor neutral car backup by ungleich v3"
subgraph cluster_dcl {
label="Data Center Light";
@ -13,7 +13,7 @@ digraph G {
carmedia [ label="Regular car media system" ];
carmedia->microcomputer [ label="Stores user+car based data" ]
microcomputer -> customer_car_storage [ label="Backs up data regularly" ];
microcomputer -> customer_car_storage [ label="Backs up data regularly\nUsing IPv6 VPN" ];
}
@ -23,14 +23,17 @@ digraph G {
carmedia2 [ label="Regular car media system" ];
carmedia2->microcomputer2 [ label="Stores user+car based data" ]
microcomputer2 -> customer_car_storage [ label="Backs up data regularly\nUsing IPv6 VPN" ];
customer_car_storage -> microcomputer2 [ label="Restores data from original car" ];
}
subgraph cluster_car3 {
label="New car, brand 2";
microcomputer3 [ label="ungleich micro computer\n Maybe pcengines APU?" ];
carmedia3 [ label="Regular car media system" ];
carmedia3->microcomputer3 [ label="Stores user+car based data" ]
microcomputer3 -> customer_car_storage [ label="Backs up data regularly\nUsing IPv6 VPN" ];
customer_car_storage -> microcomputer3 [ label="Restores data from user\nIgnores car specific data from other car" ];
}
@ -38,6 +41,8 @@ digraph G {
subgraph cluster_questions {
node [ shape=oval ];
label="Questions"
rankdir=lr;
effort_microcomputer [ label="How much effort to design/create microcomputer?" ];
effort_sales [ label="How much effort to sell?" ]
@ -46,4 +51,13 @@ digraph G {
}
subgraph cluster_user_owner {
label="Car Owner";
mobilephone [ label="Mobile phone" ]
computer [ label="Computer" ];
laptop [ label="Notebook" ];
{mobilephone,computer,laptop}-> customer_car_storage [ label="Remotely access data" ]
}
}