Using the weather feature


#21

Ok, first thing that needs to be stated. Weather underground is very unreliable when it comes to certain reporting, in my opinion. The information is being supplied from airports, and private users. If a particular station does not repor info fast enough, or enough info your results will vary. That is from what I have found at least.

Now, precipi is imperial or inches, precepm is metric or mm I believe.

There is also a precip, not sure if that is suppose to be the qpf or not.

I guess, since current conditions qpf from today seems to be a little more accurate, I would set up a piston to grab a snapshot at 11:59pm and have it save that to a variable named {yesterdayRain}.

**** Shameful plug here **** I wrote a custom device handler that allows you to monitor up to 3 locations, besides your home hub location. You can get the info by zip, lat/long, state/city. And sometimes airport Cor, or actual weather station code will work pws;{code}
It also lets you gather just about all the different data via webcore drop down for the physical device attributes. I always hated trying to remember all the different syntax to get what I wanted. So now it’s point and click for me

Let me know if you want link to device handler it’s on github. I basically adapted weather station tile device handler and added locations and exposed more of the weather condition data to the device handler


#22

yes of course.
yes I would like to try it with your device handler.
do you have a manual or something else?


#23

Here is the github location.

Found this on weather underground. You could add the info from this into the zip code preferences for each location you are setting up


#24

I just wanted to give you all an update…
I pulled up my Fuel Streams, and it appears the two data sources are getting a bit closer to agreeing with each other. (written every 10 minutes for the past 7 days)

Blue (built-in code) $weather.hourly.hourly_forecast.sky[0]
Red (Accu-Weather plugin) Cloud Cover

The analysis hasn’t changed much, but the two percentages (and trends) are more in agreement than before. (although there are still short periods of time where there was +35% difference between the two)

*PROS (BLUE) WUNDERGROUND:*   |  *PROS (RED) ACCUWEATHER:*
 Updates more frequently      |   No False reads
――――――――――――――――――――――――――――――|―――――――――――――――――――――――――――――
*CONS (BLUE) WUNDERGROUND:*   |  *CONS (RED) ACCUWEATHER:*
 A few false data reads at 0  |   Less frequent updates
                              |   More 'blocky' data

I admit, I like the rate of updates and the level of accuracy from the Wunderground (built-in) query, but I like the reliability of the AccuWeather plugin…

I am currently pulling both data points as conditions in my early sunset piston, but am contemplating only using one of them.

*sighs*
Decisions, decisions…

I wonder if averaging the two into a new number will give me better accuracy for cloud coverage…


#25

I have the exact same intension for lights automation:


#26

@Gopack2 Thanks for creating and sharing the device handler! I just installed and boy am I impressed!:+1:


#27

I like your structure @pauly, but wouldn’t it be more efficient to only pull data from $weather.hourly.hourly_forecast[0].icon ONCE instead of potentially 38 times?

Maybe something like this (based on your code)

This limits the external web request to only happening once per piston run. Notice this piston grabs the current data at the very beginning, and then all other references in that piston simply refer to the variable. This should keep duplicate requests from hammering their server. (which will hopefully encourage IBM to keep this information free to us)

In all likelihood, if we abuse it too much, they will start charging a fee to access the weather API.
(There is already talk about it happening)


#28

I wasn’t, if you take a closer look I’m actually assigning to that string $forcastText, then just doing comparison in below


#29

Maybe my eyes are failing me, but I only see ONE reference to $forcastText in your entire piston. Yes, you write to it, but none of your code refers back to it like my example above.

It is pistons like this that will practically guarantee that IBM starts charging money for the weather data.


#31

OK I remember for the reason of doing this now, I tested with this and very often I don’t get the value in the forecast, that’s why I waited one minute and start checking again, it you test yourself you will only find the variable to be null.

Thanks for pointing out and me I’ll set the variable again to see if it gets the value


#32

Your observation is correct.

I pull weather data fairly often, and for me, it returns a zero or null about 1% of the time.

Here is a sample of 504 data pulls. (every 20 minutes)
Notice the 3 failures on the far left came back 0.

If you are ok with a 1% failure rate (that’s about 4 times a year on daily pistons) then I would just roll with it, and point your code to the variable instead of the long link. Your piston structure is well written, so even on a bad data pull, it will default to -35 minutes, as seen in line 47.


Food for thought:
On a repeating piston, one work around that I do is to capture the new data in a different variable than the previous data. The piston then checks to see if the new data is within an acceptable range. If it is, it continues on with the code. If the new data is null or outside the range, then the piston will re-use the old data once. (I am sure there is a modified version of this that could work for you as well)

This works quite well, since it is VERY rare to have two failures in a row. (if enough time has passed)


#33

Well, your observations may be true for constant calls daily, but I updated my piston to assign weather value to the variable twice, still it has no value…

Here’s the variable value:


#34

Your line 28 & 30 should be using an expression, not an argument.

temp


Also, the variable will NOT update when you press the Test button.
It only updates it when the time matches.


#35

Let me try, also it was running and did not update, I didn’t test.