You are browsing as a guest. Sign up (or log in) to start making projects!

Requiem

@Requiem

Joined June 6th, 2026

  • 1Devlogs
  • 1Projects
  • 1Ships
  • 0Votes
Requiem
Ship Changes requested

I built SolarEcho, an open-source Python DSP app that turns live NASA space weather data into ambient electronic audio. It polls NASA’s DONKI CME data, extracts values like speed, half-angle, latitude, and longitude, and maps them into synth parameters such as pitch, volume, tremolo, and stereo movement in real time.

The hardest part was getting the full real-time pipeline working end to end: NASA API ingestion, async data handling, DSP mapping, and live audio output. I also had to solve practical issues around NASA API rate limits, missing DONKI fields in some CME records, and correctly recording system audio for the live demo on Linux.

I’m proud that SolarEcho is not just a concept — it is a working prototype that uses real NASA data and turns it into a live sensory experience. I’m also proud that I debugged the full chain from API polling to audio synthesis and then figured out how to capture the actual output for a demo video instead of just showing code on screen.

To test SolarEcho, people need Python, the dependencies in requirements.txt, a free NASA API key from api.nasa.gov, and an audio setup that supports sounddevice. They should add their key as an environment variable, run python main.py, and note that NASA keys are rate-limited, with the default personal limit at 1,000 requests per hour and DEMO_KEY much lower, so slower polling is better for demos

  • 1 devlog
  • 2h
Try project → See source code →
Open comments for this post

2h 22m 6s logged

Devlog 01 — SolarEcho foundation built

Today I started building SolarEcho, a Python DSP project that turns live NASA space weather data into ambient electronic sound.

What I finished:

  • Set up NASA API access with my official api.nasa.gov key
  • Built the async ingestion pipeline for NASA DONKI CME data
  • Parsed CME values like speed, halfAngle, latitude, and longitude
  • Connected the NASA data pipeline to a real-time audio synthesizer
  • Fixed callback and field-name bugs in the Python code
  • Verified the full pipeline through terminal logs:
    NASA fetch -> queue bridge -> synth update -> audio callback

Current stack:

  • aiohttp
  • asyncio
  • numpy
  • sounddevice
  • NASA DONKI API

Result:
SolarEcho now successfully receives live CME telemetry and maps it into audio parameters in real time.

I Am Quite Interested On Improving It More Maybe Even Making It Live On Cloud But API Limits Are Troublesome

You Can See Code At GitHub ( Project Bio ) ( The Project Is Not Live Yet But You Can Try Hearing Audio From Mp4 Video Check Google Drive Link )

0
0
1

Followers

Loading…