1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
# Example from: http://www.islandseeds.org/wiki/Biofuel
# http://www.islandseeds.org/wiki/Biofuel
graph { flow: east; }
node { shape: ellipse; }
[ solar energy ] { fill: yellow; }
[ water] { fill: cyan; }
[ soil ] { fill: burlywood; }
-> [ vegetation ]
-> [ processing ]
-> [ biofuel ]
-> [ combustion ]
-> [ useful work ] { fill: lightgray; }
[ combustion ] -> [ carbon dioxide ]
[ combustion ] -> [ pollution ]
[ processing ] ..> [ compost ] ..> [ soil ]
[ processing ] ..> [ carbon dioxide ]
[ processing ] ..> [ pollution ]
[ water ] -> [ vegetation ]
[ solar energy ] -> [ vegetation ]
|