Add an active Weather Radar Map

Just added this (windy.com) to my HADashboard. Looks awesome.

tried windy.com and rainview.com. Set the map up just so then click to get the embed iframe. Then paste that to a file and extract the url only. Then use the webpage card and paste the url. Both look fine and are interactive. windy.com has many more options than just radar.

rainview.com is not a valid site.
rainviewer.com is the actual site.

Here is my current selection of ‘radar’ views.
I put air quality on this page since it looks like it belongs.
From left to right: Active Radar, Precipitation, Air Quality

https://embed.windy.com/embed2.html?lat=47.492&lon=-122.528&detailLat=47.536&detailLon=-122.278&width=650&height=450&zoom=7&level=surface&overlay=radar&product=radar&menu=&message=true&marker=&calendar=now&pressure=&type=map&location=coordinates&detail=&metricWind=mph&metricTemp=%C2%B0F&radarRange=-1

https://embed.windy.com/embed2.html?lat=47.492&lon=-122.528&detailLat=47.536&detailLon=-122.278&width=650&height=450&zoom=7&level=surface&overlay=ptype&product=ecmwf&menu=&message=true&marker=&calendar=now&pressure=&type=map&location=coordinates&detail=&metricWind=mph&metricTemp=%C2%B0F&radarRange=-1

https://gispub.epa.gov/airnow/?xmin=-14401959.121379772&ymin=5554831.71954033&xmax=-12914800.29906338&ymax=6496535.9080137005&clayer=ozonepm&mlayer=2.5
1 Like

I was unaware of the RainViewer.com website and actually like it. It actually merges the two Windy.com embeds that I use and shows all in one.

1 Like

can you update to current from the past

Current to future (about a week)

I mean when you put the link in it goes from 7 am to 9 then I would have to put a new link in right?

No, the page automatically updates. Link stays the same. The only thing you need to change in the link is your desired location and your desired zoom level.

Can you explain a bit more how you got the URL? I tried the share URL but it doesn’t display in HA. Does it look like this?

https://www.windy.com/-Weather-radar-radar?radar,XX.xxx,-x.xxx,xx

You have to use the embed.windy.com link to embed into iframe. Look 6 posts up from here. On the windy website they have a embed widget that helps sort all this out.

1 Like

Thanks, couldn’t find the embed link but got it now!

Hey this was great. IU used it as the basis for an animation of the national Australian synoptic chart, the MSLP. I also wanted a longer delay on the last (latest) image so I used some nastly head/tail stuff to do that. There’s probably a cleaner way to do this but it works.

These are only updated three times a day so probably don’t smash the FTP server too often when scheduling it.

#!/bin/bash

#Config Variables
ID="IDY00030"
iqty=5
img_out="/var/www/html/"

#Change to the images directory
cd $img_out

#get the most recent images quietly
curl --silent --list-only ftp.bom.gov.au/anon/gen/fwo/ |grep -e 'IDY00030.*\.png' |tail -n 6 |xargs -i wget -q 'ftp://ftp.bom.gov.au/anon/gen/fwo/{}'

#Processes the images
convert -delay 75 -loop 0 `ls $ID.*.png | head -n 5` -delay 1000 `ls $ID.*.png | tail -n 1` -interpolative-resize 80% mslrp_$ID.gif


#Clean up temp files
rm $ID*

That was a few years back when I was playing around with the script. There may be some better images now but I am glad you found it useful.

is there a way to add https://www.rainviewer.com/ map to Home Assistant. It would be extremely useful or any similar good radar map with possibility for alert.

Yes, you can add rainviewer. Look a couple posts up and see that I have it there. When I get back home (if I remember) I can post the embed.

thanks now i figured it out

Is there an option to get an app notification before rain starts at a specific location through Windy.com or RainViewer?

2 Likes