Weather Tile - Open Weather - Current and Forecast

Yes! That sounds like the summary of it!

And if anyone is a developer and wants to take a stab at using the /forecast endpoint and aggregating the data into a daily format, I would welcome it! That would probably make things easier for everyone else!

1 Like

This is great !..since Sharptools migration, Weather DTH is not working anymore :confounded:, but now Open Weather Custom Tile is doing great…

Also, based on HTML code I did a simple tile for my mobile dashboard…(test and fail method)
IMG_4724.

But I would like to go forward…but my very poor skills in HTML make me not the right person, I understand code logic, but I do not get HTML logic and commands at all…so anyone can helps me and play with these designs?..I can invite to him/her any beers as you ask !! :grin: :beers: or guide me with some tips about how to try them at least…

3x2

2x3

1x1
image

Is there a way to pull weather alerts / statements via OpenWeather? e.g. - “Tornado Warning”, “Snow Flurries”, “Severe Thunderstorm Watch”, etc

In theory, this custom tile could be edited to display any data from Open Weather. If you decide to take a stab at it, feel free to share your changes here so other community members can benefit from it.

Alternatively, some community members have been doing this with the HTTP Action in SharpTools rules so they can grab specific things from Open Weather and store them in variables either for display on their dashboards or for use within rules:

2 Likes

I’d like to adjust the openweather custom tile in the first post but am having some trouble with the html code. Would anyone be willing to provide some guidance?

I want the Right image to look like the left image.
image

I can get the entire value to move but cannot seem to isolate moving the icon left and down

I’ve just pushed an update to better support the new and old Open Weather API keys.

This introduces a new ‘API Preference’ option which allows you to choose from:

image

  • 2-5multi - the new default as it’s the most compatible with old and new API keys
  • 2-5onecall - if you have an old OpenWeather API key, this gets you 2 more days of forecast
  • 3-0onecall - if you’ve explicitly subscribed to the ‘One Call by Call’ subscription plan in Open Weather, this gets you 2 more days of forecast

You can use the steps here to update to the latest code to get the new API Preference option.

There’s also a significant difference in the current day’s High/Low value between multi and onecall API preferences. For the onecall API, it’s the low and high for the day… whereas with the multi it’s the regional high/low for that point in time. I’m tempted to drop the H/L value from the current day when not using the ‘OneCall’ endpoint as I think the indicator could be confusing – thoughts?

If today’s high/low value is significant to you, feel free to sign up for the OneCall subscription and use that it includes a ‘daily’ forecast value which is otherwise unavailable on the free tier.


OneCall API top, Multi API bottom

Another minor difference is the forecast icons - since the multi API Preference aggregates data from the ‘every 3 hour’ forecast, it picks the icon that occurs most often in the 3 hour forecasts for that day. I’m open to suggestions for alternative logic if someone has a better idea. :slight_smile:

3 Likes

As a OneCall 3.0 user, thank you! This is a terrific update. It’s much more complete, as well as more accurate.

5 posts were merged into an existing topic: Rules to query the Open Weather API

6 posts were merged into an existing topic: Rules to query the Open Weather API

Set this up the other day and its working great. I have it on a 2x2 tile and have realized that the future days forecast is too small on my tablet and would prefer to just see the current temp in large font, the day’s forecasted high/low, rain % and wind speed on a 2x2 tile so that the current temp could be seen from 4’ to 6’ away on my 7" tablet and the other details visible as walking out the door to know if we need to grab a coat for the day or an umbrella. Simlar sizing to the 2x2 date/time tile. Would also prefer it to follow my dashboard theme for a cohesive design. Does anyone have the code for this already? I tried looking at the code for this tile and immediately knew it was gonna be an excessive number of manhours for me fumbling through trying to modify it.

This is great. Works well.

Just out of curiosity, do we know what the “2” in a mustard color box next to “Feels Like” Means?

It’s air quality index.

1 Like

Yes, it’s AQI. And the Air Quality Index only shows up if you check the box for it in the tile’s settings, so you can uncheck it if you don’t want to see.it.

1 Like

Doh! Thanks. Had that turned on. Now that I know what it is, I will keepit.

1 Like

How often does the Weather Tile update? The current temperature is often not current. If I go to another dashboard and come back, it updates.

Every 3 hours by default.

You could modify the number set at the very top of your Custom Tile code if you wanted a faster refresh. Just keep in mind that a faster refresh could put you over your API limits.

image

Doing a quick “back of the napkin” math, even with the lower 1000 free API calls for the 3.0 version of the Open Weather API, if you had it set to every 10 minutes, that would be 144 calls per displayed tile in a day

(24 × 60) ÷ 10 = 144

So if you had a single weather tile on 5 different displays, that would be 720 API calls to the One Weather API each day.

Of course, that assumes you aren’t using the API key elsewhere (like in a Hubitat driver) that would be increasing the API call, but you get the idea.

Edit: And if you enable AQI in the tile settings, that requires a separate API call, so it would double the number of API calls.

Thank you for the quick reply.

I only have the weather on my main display so I decided to try 5 minute updates. Which should work out to 288 calls (24*60/5) with no air quality display. So, at line 12, REFRESH_INTERVAL =5*60*1000; //5 minute in ms

I’ll let you know if I have any issues.

Thanks again.

Don’t know what happened with the formatting. That should be 288 calls (24x60/5) and refresh of 5x60x1000.

1 Like

I edited the post for you to fix the formatting. Wrapping text in single asterisks turns it into italics.

If you want to format text as raw/code, you can highlight it and then tap the </> button on the editor toolbar to format it accordingly.

I see you were responding via email, you you can also do it by wrapping your formatted string in backticks:

`your * formula * or code`

Becomes :point_down:

your * formula * or code

Okay, thanks for all that.
In a previous post you stated I’m tempted to drop the H/L value from the current day when not using the ‘OneCall’ endpoint as I think the indicator could be confusing – thoughts?
Don’t think you had any responses to that, however, I agree it is confusing. Is there a way to drop that?