Merged
Conversation
Implement real-time fetching of solar-terrestrial indices from NOAA Space Weather Prediction Center APIs instead of using hardcoded defaults. Changes: - Update fetch_solar_conditions() to fetch live data from NOAA SWPC JSON APIs - SFI: https://services.swpc.noaa.gov/json/f107_cm_flux.json - SSN: https://services.swpc.noaa.gov/json/solar-cycle/observed-solar-cycle-indices.json - Kp: https://services.swpc.noaa.gov/json/planetary_k_index_1m.json - A-index: https://services.swpc.noaa.gov/json/predicted_fredericksburg_a_index.json - Each index is fetched independently with graceful fallback to defaults - Add 'source' field to track whether data is live or default - Update Dashboard/README.md with live fetching information - Update wiki/Dashboard-Guide.md with data sources and troubleshooting - Update wiki/FAQ.md to reflect auto-fetching behavior Benefits: - More accurate predictions using current space weather conditions - No manual parameter updates needed - Graceful degradation if APIs are unavailable - Better visibility into data sources
skyelaird
pushed a commit
that referenced
this pull request
Nov 15, 2025
This commit updates project documentation to reflect recent enhancements: Changes: - Update NEXT_STEPS.md: Current branch, date (2025-11-15), and status - Document space weather features: PRs #78 and #79 (NOAA SWPC + multi-source fallback) - Update README.md: Enhanced dashboard feature description for live space weather data - Add MULTI_SOURCE_DATA.md to key resources Documentation maintenance: - Following DOCUMENTATION_CHECKLIST.md workflow - Ensuring docs stay current to avoid context loss - All documentation now reflects current state as of 2025-11-15
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.
Implement real-time fetching of solar-terrestrial indices from NOAA Space Weather Prediction Center APIs instead of using hardcoded defaults.
Changes:
Benefits: