Detect and ID satellites

main
Jeff Moe 2022-08-14 13:17:01 -06:00
parent 79b6b45bbc
commit 169f81fea9
1 changed files with 22 additions and 5 deletions

27
SNOPO
View File

@ -111,20 +111,37 @@ with g.subgraph(name="cluster_platesolver") as a:
c.attr(label="Video\nPlate Solver")
a.attr(label="Plate Solver")
with g.subgraph(name="cluster_satdetect") as a:
a.attr(style="filled", color="lightblue", label="satdetect")
with a.subgraph(name="cluster_camera_satdetect") as b:
b.attr(color="tan")
b.node_attr["style"] = "filled"
b.edge("sattools/scripts/find.sh\nsource-extractor", "sattools/scripts/id.sh\naddwcs\nsatid\nDetect")
b.edge("stphot/UNKNOWN-find.py", "stphot/UNKNOWN-id.py\nDetect")
b.edge("asm/UNKNOWN-find", "asm/UNKNOWN-id\nDetect")
b.attr(label="Camera\nDetect Satellites")
with a.subgraph(name="cluster_video_satdetect") as c:
c.attr(color="tan")
c.node_attr["style"] = "filled"
c.edge("sattools/UNKNOWN-vid-find.sh", "sattools/UNKNOWN-vid-id.sh\nDetect")
c.edge("stvid/process.py", "stvid/process.py\nDetect")
c.attr(label="Video\nDetect Satellites")
a.attr(label="Detect Satellites")
with g.subgraph(name="cluster_satid") as a:
a.attr(style="filled", color="lightblue", label="satid")
with a.subgraph(name="cluster_camera_satid") as b:
b.attr(color="tan")
b.node_attr["style"] = "filled"
b.edge("sattools/scripts/find.sh\nsource-extractor", "sattools/scripts/id.sh\naddwcs\nsatid")
b.edge("stphot/UNKNOWN-find.py", "stphot/UNKNOWN-id.py")
b.edge("asm/UNKNOWN-find", "asm/UNKNOWN-id")
b.edge("sattools/scripts/id.sh\naddwcs\nsatid\nDetect", "sattools/scripts/id.sh\naddwcs\nsatid\nID")
b.edge("stphot/UNKNOWN-id.py\nDetect", "stphot/UNKNOWN-id.py\nID")
b.edge("asm/UNKNOWN-id\nDetect", "asm/UNKNOWN-id\nID")
b.attr(label="Camera\nID Satellite")
with a.subgraph(name="cluster_video_satid") as c:
c.attr(color="tan")
c.node_attr["style"] = "filled"
c.edge("sattools/UNKNOWN-vid-find.sh", "sattools/UNKNOWN-vid-id.sh")
c.edge("stvid/process.py", "stvid/process.py ID")
c.edge("sattools/UNKNOWN-vid-id.sh\nDetect", "sattools/UNKNOWN-vid-id.sh\nID")
c.edge("stvid/process.py\nDetect", "stvid/process.py\nID")
c.attr(label="Video\nID Satellite")
a.attr(label="Identify Satellites")