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>
16 lines
437 B
Bash
Executable File
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
|