Earlier quoted context omitted.
I did not anticipate having a screensaver project on my bingo card on this day in 2026 but it is now so! I am guessing that most people would want to see the Sun videos for a screen saver, maybe a random wavelength on each screensaver instance? I will make an opensource repo to it that works on desktop-anything with a little GUI for user settings/preferences. EDIT: Or did you all mean basically replicating the site a…
I meant the whole page with the four sections, but maybe also enable any specific part as well would be cool.
Show HN: Live Sun and Moon Dashboard with NASA Footage
51–60 of 73 posts
Re: Show HN: Live Sun and Moon Dashboard with NASA Footage
#52Re: Show HN: Live Sun and Moon Dashboard with NASA Footage
#53Re: Show HN: Live Sun and Moon Dashboard with NASA Footage
#54This is so sick! as a science nerd, i love this so much!!!
Apple: https://apps.apple.com/us/app/lumara-sun-moon-live-viewer/id... Android: https://play.google.com/store/apps/details?id=com.beeswaxpat...
:D
Re: Show HN: Live Sun and Moon Dashboard with NASA Footage
#55Looks very neat. You may want to optimize the content serving a bit, since it's currently hotlinking multiple large (30MB) videos at 2K resolution from https://svs.gsfc.nasa.gov .
Yes, you're right about optimization, this what I'll do: - Switch default to 1024p instead of 2048p so file drops from ~30 MB → ~8 MB (4× smaller) - Proxy through existing Cloudflare Worker with edge cache - Add a /video/* route that fetches NASA URL once, caches at the edge - After 1st request per region, every subsequent visitor gets it from Cloudflare PoP = NASA bandwidth: ~50 hits/day instead of ~10,000! NASA loa…
Re: Show HN: Live Sun and Moon Dashboard with NASA Footage
#56Earlier quoted context omitted.
Yes, you're right about optimization, this what I'll do: - Switch default to 1024p instead of 2048p so file drops from ~30 MB → ~8 MB (4× smaller) - Proxy through existing Cloudflare Worker with edge cache - Add a /video/* route that fetches NASA URL once, caches at the edge - After 1st request per region, every subsequent visitor gets it from Cloudflare PoP = NASA bandwidth: ~50 hits/day instead of ~10,000! NASA loa…
This looks suspicisly like LLM answer
Re: Show HN: Live Sun and Moon Dashboard with NASA Footage
#57Beautiful app! AppStore is working now! The solar imagery and overall UI are really clean; easy to use. It would be nice to see CME tracking added. Also, Stefan Burns would be a great person to share this with - his audience loves space weather content.
Thank you for the feedback and I'll look for Stefan Burns!
Re: Show HN: Live Sun and Moon Dashboard with NASA Footage
#58This is beautiful. Sorry about the potentially noob question: is there an API you plug into for the live moon phase? I'm building an app that could do with this live feed if it's easily available.
Re: Show HN: Live Sun and Moon Dashboard with NASA Footage
#59This is beautiful. Sorry about the potentially noob question: is there an API you plug into for the live moon phase? I'm building an app that could do with this live feed if it's easily available.
If all you need is the phase it is easily calculated; there are several examples in Google
Re: Show HN: Live Sun and Moon Dashboard with NASA Footage
#60Earlier quoted context omitted.
I'll add that "raw" is after a bit of postprocessing to make it pretty. When the SDO webserver went down a few months ago I rebuilt the L1 data processing pipeline from JSOC so we could still do outreach and there's a surprising amount of opinion that goes into the mapping of data to visualization for each wavelength. My composite movies came out looking more like an acid trip than solar data.
Touché — when the person who rebuilt the pipeline says it's not raw, it's not raw :) Is optical-flow interpolation a step too far for outreach, or fair game? Tempted to motion-interpolate (ffmpeg's minterpolate) the daily MP4s up to 60fps for Lumara— looks gorgeous but the in-between frames are extrapolated. You're totally right about "raw", I suppose I meant more straight from NASA APIs.
That said, if you felt like processing it yourself, the L1 files are available every 12-24 seconds, and preprocessed images are available ~1 per minute. The synoptic version you're using is about 1 frame every 3 minutes at 20 fps so you could just triple the framerate without needing any interpolation, or string together the images yourself.