systems.db: 43 North Reach body catalogs (hops 4-12) tooling: atlas-verify, atlas-names, atlas-systems-done, atlas-helpers.sh Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
8 lines
240 B
Bash
Executable File
8 lines
240 B
Bash
Executable File
#!/bin/bash
|
|
# List systems that already have bodies in the atlas DB
|
|
cd "$(dirname "$0")/.."
|
|
tooling/atlas list-bodies 2>/dev/null | python3 -c "
|
|
import sys,json
|
|
for s in sorted(set(b['system_id'] for b in json.load(sys.stdin))): print(s)
|
|
"
|