From 81bc599417bae705b1b57b39ca5b795eaf5d0cb9 Mon Sep 17 00:00:00 2001 From: Jeff Moe Date: Sun, 14 Aug 2022 17:04:38 -0600 Subject: [PATCH] asm is known none --- SNOPO | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SNOPO b/SNOPO index 9e866f4..2c9ca8c 100755 --- a/SNOPO +++ b/SNOPO @@ -157,7 +157,7 @@ with g.subgraph(name="cluster_platesolver") as a: b.node_attr.update(style="filled", color="silver", shape="rect") b.node("n_sattools_cplate", label="sattools\nfind.sh\nsource-extractor") b.node("n_stphot_plate", label="stphot\nUNKNOWN") - b.node("n_asm_plate", label="asm\nUNKNOWN") + b.node("n_asm_plate", label="asm\nNONE") b.edge("n_sattools_cacquire", "n_sattools_cplate", color=good_color) b.edge("n_stphot_acquire", "n_stphot_plate", color=bad_color) b.edge("n_asm_acquire", "n_asm_plate", color=bad_color) @@ -179,7 +179,7 @@ with g.subgraph(name="cluster_satdetect") as a: b.node_attr.update(style="filled", color="olivedrab3", shape="rect") b.node("n_sattools_cdetect", label="sattools\nid.sh\naddwcs\nsatid") b.node("n_stphot_detect", label="stphot\nUNKNOWN") - b.node("n_asm_detect", label="asm\nUNKNOWN") + b.node("n_asm_detect", label="asm\nNONE") b.edge("n_sattools_cplate", "n_sattools_cdetect", color=good_color) b.edge("n_stphot_plate", "n_stphot_detect", color=bad_color) b.edge("n_asm_plate", "n_asm_detect", color=bad_color) @@ -201,7 +201,7 @@ with g.subgraph(name="cluster_satid") as a: b.node_attr.update(style="filled", color="darkseagreen3", shape="rect") b.node("n_sattools_cid", label="sattools\nid.sh\naddwcs\nsatid") b.node("n_stphot_id", label="stphot\nUNKNOWN") - b.node("n_asm_id", label="asm\nUNKNOWN") + b.node("n_asm_id", label="asm\nNONE") b.edge("n_sattools_cdetect", "n_sattools_cid", color=good_color) b.edge("n_stphot_detect", "n_stphot_id", color=bad_color) b.edge("n_asm_detect", "n_asm_id", color=bad_color)