docs: fix remaining callsign references and stale documentation notes#51
Open
docs: fix remaining callsign references and stale documentation notes#51
Conversation
Add storedb/storedb.py and storedb/storedb.sh to ingest decoded WSPR spots into MongoDB via WSPRDaemon's WSPR_LOGGING_CMD hook. Improves on the previous local-only storedb.py by using .env for credentials, adding band/mode fields, and using upsert to prevent duplicates. Update README with MongoDB auth setup, WSPRDaemon integration setup, and manual test instructions. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Remove hardcoded W3USR/KD3ALD callsigns and paths throughout README. Replace with generic placeholders so any amateur station can follow the installation guide. Fix gunicorn command to use create_app() factory syntax. Update systemd service template with correct syntax and Restart=on-failure. Update storedb.sh to use dynamic path detection via BASH_SOURCE instead of hardcoded paths. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Remove incorrect instructions to download basemap and Leaflet files separately. All static data files (GeoJSON boundaries, Natural Earth basemap, Leaflet 1.9.4) are tracked in the repository and require no separate download steps. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
README.md: - Genericize architecture diagram (remove KD3ALD station reference) - Update JS file line counts (735/223) - Add storedb.sh to Data Flow description - Fix Prerequisites (remove stale WSPRDaemon db note) - Add storedb/ to project structure tree - Fix vendor/ comment (files are git-tracked, not downloaded separately) - Fix mongosh command (replace deprecated mongo) - Remove hardcoded dash.kd3ald.com URL - Update CLAUDE.md reference to root path OPERATOR_GUIDE.md: - Add template customization note at top - Replace all KD3ALD/FN21ni/dash.kd3ald.com with YOUR_CALLSIGN/YOUR_GRID placeholders CONTRIBUTING.md: - Fix git clone URL (hamsci/contesting-dashboard → HamSCI/frc_contesting) - Fix bug report template URL - Fix license statement (GPL v3, not TBD) - Update CLAUDE.md reference to root path CLAUDE.md: - Move from docs/CLAUDE.md to repo root Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- Replace KD3ALD/FN21ni with W3USR/FN21ej in API response examples (README.md /spots, /config, and database schema sections) - Replace KD3ALD with W3USR in CONTRIBUTING.md code style examples - Fix CONTRIBUTING.md docs/CLAUDE.md references → CLAUDE.md (file moved to root) - Fix closing signature: 73 de KD3ALD → 73 de HamSCI - Fix OPERATOR_GUIDE.md: KD3ALD → YOUR_CALLSIGN in limitations section - Fix OPERATOR_GUIDE.md troubleshooting: remove stale "internet needed for GeoJSON" (GeoJSON files are git-tracked, no download required) - Fix CLAUDE.md: update Session 6 vendor note to reflect files are now git-tracked - Fix CLAUDE.md: correct internal self-reference links (docs/CLAUDE.md → CLAUDE.md) - Fix CLAUDE.md: correct Key Documents relative paths from root location Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
KD3ALD/FN21nihardcoded references in user-facing docs to useW3USR(API examples) orYOUR_CALLSIGN(operator guide template)docs/CLAUDE.mdreferences throughout (file was moved to repo root)storedb/ingestion integration (storedb.py + storedb.sh)Test plan
grep -r KD3ALDfinds no remaining references in README.md, CONTRIBUTING.md, OPERATOR_GUIDE.mdstoredb/storedb.shis executable andstoredb/storedb.pyingests spots correctlygunicorn "app:create_app()"and binds to 0.0.0.0:5000🤖 Generated with Claude Code