0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

災害関連死につながるフロー図

Posted at

の図が見にくかったので、DOT言語に変換しました。Graphvizをインストールしてdot -Tsvg -ooutput.svg 災害関連死につながるフロー図.dot を実行するとSVGのファイルができるので、適当に画像に変換してください。PNGのファイルも直接生成できますが、文字が欠けててしまうようです。

hoge.png

災害関連死につながるフロー図.dot
digraph {
    graph [size="13,10!", rankdir = TB, fontname = "MS Gothic", label = "災害関連死につながるフロー図\n\n\n", labelloc="t", fontsize=80];
    node [fontname = "MS Gothic", color=black, fontsize=28, style=filled, fillcolor=lightgray];
    edge [fontname = "MS Gothic"];

    1 [label="避難環境の\n標準化が\nされていない"];
    2 [label="劣悪な\nトイレ環境"];
    3 [label="劣悪な\n避難生活"];
    4 [label="偏った食事"];
    5 [label="食料不足"];
    6 [label="水不足"];
    7 [label="口腔ケア不足"];
    8 [label="衛生環境悪化"];
    9 [label="し尿処理能力\nの低下"];
    10 [label="自宅が被災"];
    11 [label="薬の不足"];
    12 [label="車中泊"];
    13 [label="余震"];
    14 [label="地震への恐怖"];
    15 [label="ガス・電気\nの停止"];
    16 [label="熱中症"];
    17 [label="空調停止"];
    18 [label="医療機関の\n機能停止"];
    19 [label="介護サービス\nの停止"];
    20 [label="物資輸送の\n停止"];
    21 [label="治療・介護用\n食品の不足"];
    22 [label="寒さ"];
    23 [label="津波で濡れる"];
    24 [label="着替えがない"];
    25 [label="低体温症"];
    26 [label="ストレス"];
    27 [label="治療困難"];
    28 [label="口腔内細菌\n増加"];
    29 [label="排泄回数減少"];
    30 [label="長時間\n同じ体勢"];
    31 [label="雑魚寝"];
    32 [label="非専門家\nによる介護"];
    33 [label="体力\n免疫力低下"];
    34 [label="食欲低下"];
    35 [label="栄養不足\n偏り"];
    36 [label="嘔吐・下痢"];
    37 [label="水分摂取\nを控える"];
    38 [label="便秘"];
    39 [label="身体活動性\n低下"];
    40 [label="血栓ができる"];
    41 [label="粉じん"];
    42 [label="睡眠不足"];
    43 [label="既往症の悪化"];
    44 [label="高血圧"];
    45 [label="意欲低下"];
    46 [label="交感神経\nの異常"];
    47 [label="血液が\n固まりやすい"];
    48 [label="脱水症状"];
    49 [label="うつ"];
    50 [label="せき"];
    51 [label="津波で\n海水を飲む"];
    { 
        node [fontcolor=black, fillcolor=pink, style=filled, fontsize=30, color=red];
        52 [label="誤えん性肺炎"];
        53 [label="エコノミークラス\n症候群"];
        54 [label="循環器疾患"];
        55 [label="えん下能力\n低下"];
        56 [label="自殺"];
        57 [label="感染症"];
        58 [label="呼吸器疾患"];
     }

    1->2; 1->3; 1->4; 1->5;
    6->7; 6->2; 6->8;
    9->2;
    10->11; 10->12; 10->3;
    13->14; 13->12;
    15->16; 15->17; 15->18; 15->19; 15->4;
    20->3; 20->21; 20->22;
    17->22;
    23->24;
    24->22; 24->25;
    14->26;
    11->27;
    7->28;
    2->29;
    12->16; 12->29; 12->30; 12->22;
    3->2; 3->31; 3->26;
    18->27;
    19->32;
    4->33; 4->34; 4->35;
    5->35;
    21->35;
    8->36;
    29->37; 29->38;
    30->39; 30->40;
    31->30; 31->39; 31->26; 31->41; 31->42;
    27->33; 27->43;
    32->42; 32->43; 32->38;
    35->39; 35->38; 35->44; 35->45; 35->33;
    22->33; 22->25; 22->46; 22->47; 22->42;
    36->48;
    37->48;
    39->26; 39->33; 39->40; 39->38;
    26->49; 26->42; 26->46;
    41->50; 41->58;
    28->52;
    38->53; 38->54;
    48->28; 48->38; 48->40; 48->47;
    55->52;
    40->53;
    45->49; 45->39;
    49->56;
    33->55; 33->57; 33->54; 33->44; 33->58; 33->25; 33->34;
    42->44; 42->33;
    46->44; 46->54;
    44->54;
    47->54;
    43->58; 43->54;
    25->58; 25->54;
    51->58;
}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?