From 8471578433c6ff676427638bb124175a055d4e31 Mon Sep 17 00:00:00 2001 From: Jeff Moe Date: Sun, 14 Aug 2022 13:59:32 -0600 Subject: [PATCH] color blocks --- SNOPO | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/SNOPO b/SNOPO index 9d1baef..b2497b6 100755 --- a/SNOPO +++ b/SNOPO @@ -35,25 +35,28 @@ g = graphviz.Digraph( edge_attr="", ) g.attr(rankdir="LR") -g.attr(bgcolor='white:white', label='DRAFT SatNOGS Optical Process Overview DRAFT', fontcolor='black') +g.attr(bgcolor='seashell2:seashell', label='DRAFT SatNOGS Optical Process Overview DRAFT', fontcolor='black') with g.subgraph(name="cluster_hardware") as a: a.attr(style="filled", color="lightgrey") a.node_attr.update(style="filled", color="pink", shape="rectangle") with a.subgraph(name="cluster_video") as b: - b.attr(style="filled", color="lightgreen", label="Motion Video Cameras") + b.attr(style="filled", color="cornsilk", label="Motion Video Cameras") + b.node_attr.update(style="filled", color="darkkhaki", shape="tripleoctagon") b.edge("UVC", "Video") b.edge("OpenCV", "Video") b.edge("Raspberry Pi", "Video") b.edge("ZWO ASI", "Video") with a.subgraph(name="cluster_camera") as c: - c.attr(style="filled", color="lightgreen", label="Still Cameras") + c.attr(style="filled", color="lightskyblue", label="Still Cameras", fontcolor="black") + c.node_attr.update(style="filled", color="midnightblue", shape="doubleoctagon", fontcolor="white") c.edge("gphoto2", "Camera") c.edge("Canon DSLR", "Camera") c.edge("Nikon DSLR", "Camera") c.edge("INDI", "Camera") with a.subgraph(name="cluster_allsky") as d: - d.attr(style="filled", color="lightgreen", label="Allsky Cameras") + d.attr(style="filled", color="slateblue", label="Allsky Cameras", fontcolor="white") + d.node_attr.update(style="filled", color="peru", shape="octagon", fontcolor="black") d.edge("ZWO ASI Allsky", "Allsky") d.edge("Starlight Xpress Oculus", "Allsky") d.edge("INDI Allsky", "Allsky")