Files
settled-reach/tooling/atlas-names
T
jpmschweitzerandClaude Opus 4.6 8a3c5af842 data(atlas): update systems.db + add atlas tooling scripts
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>
2026-03-25 22:18:09 +01:00

16 lines
437 B
Bash
Executable File

#!/bin/bash
# List all existing proper names in the atlas DB (for collision avoidance)
cd "$(dirname "$0")/.."
{
tooling/atlas list-bodies 2>/dev/null | python3 -c "
import sys,json
for b in json.load(sys.stdin):
if b.get('proper_name'): print(b['proper_name'])
"
tooling/atlas list-stations 2>/dev/null | python3 -c "
import sys,json
for s in json.load(sys.stdin):
if s.get('proper_name'): print(s['proper_name'])
"
} | sort -u