Waether Binding and Items

Hello Community,

I’m useing OpenHAB for a few weeks, so I’m quiet inexperienced.
I’m having some wired trouble with my weather binding and the weather providers.
First of all wind degree isn’t showing up:

item: String Windrichtung_Grad "Windrichtung Grad [%.0f °]" <wind> (Wetter,Wetter_per) {weather="locationId=home, type=wind, property=degree"}
Log: 2015-10-25 11:08:24 - Windrichtung_Grad state updated to 340
But the GUI shows: Windrichtung Grad - °

And I’m also searching for a weather provider, whichs provides UV Index and “precipitation - probability”. Do you know which Providers will provide this data in germany?
Using Yahoo and WorldWeatherOnline (which sould provide UV data):

2015-10-25 11:08:24.378 [DEBUG] [.w.i.p.AbstractWeatherProvider] - WORLDWEATHERONLINE[home2]: Weather[Temperature[current=11.0,min=<null>,max=<null>,feel=12.295597406771531,dewpoint=<null>],Atmosphere[humidity=94,visibility=6.0,pressure=1024.0,pressureTrend=up,ozone=<null>,uvIndex=<null>],Clouds[percent=0],Condition[text=Light Drizzle And Rain,lastUpdate=Sun Oct 25 11:08:24 CET 2015,observationTime=Sun Oct 25 11:08:00 CET 2015,id=296,icon=<null>,commonId=few-showers],Precipitation[rain=0.0,snow=0.0,probability=<null>],Wind[speed=11.0,direction=N,degree=360,gust=<null>,chill=<null>],Station[name=<null>,id=<null>,latitude=<null>,longitude=<null>],<null>] 2015-10-25 11:08:24.399 [DEBUG] [.w.i.p.AbstractWeatherProvider] - WORLDWEATHERONLINE[home2]: Forecast[day=0,Temperature[current=<null>,min=<null>,max=<null>,feel=<null>,dewpoint=6.0],Atmosphere[humidity=82,visibility=10.0,pressure=1027.0,pressureTrend=<null>,ozone=<null>,uvIndex=1],Clouds[percent=18],Condition[text=Clear,lastUpdate=Sun Oct 25 11:08:24 CET 2015,observationTime=Sun Oct 25 00:00:00 CEST 2015,id=113,icon=<null>,commonId=sunny],Precipitation[rain=0.0,snow=0.0,probability=<null>],Wind[speed=11.0,direction=ESE,degree=114,gust=<null>,chill=<null>],Station[name=<null>,id=<null>,latitude=<null>,longitude=<null>],<null>] 2015-10-25 11:08:24.413 [DEBUG] [.w.i.p.AbstractWeatherProvider] - YAHOO[home]: Weather[Temperature[current=10.0,min=<null>,max=<null>,feel=11.26306413427428,dewpoint=<null>],Atmosphere[humidity=100,visibility=3.11,pressure=1024.3,pressureTrend=<null>,ozone=<null>,uvIndex=<null>],Clouds[percent=<null>],Condition[text=Drizzle,lastUpdate=Sun Oct 25 11:08:24 CET 2015,observationTime=Sun Oct 25 10:00:00 CET 2015,id=9,icon=<null>,commonId=few-showers],Precipitation[rain=0.0,snow=0.0,probability=<null>],Wind[speed=6.44,direction=NNW,degree=340,gust=<null>,chill=10.0],Station[name=<null>,id=<null>,latitude=<null>,longitude=<null>],<null>] 2015-10-25 11:08:24.416 [DEBUG] [.w.i.p.AbstractWeatherProvider] - YAHOO[home]: Forecast[day=0,Temperature[current=<null>,min=9.0,max=13.0,feel=<null>,dewpoint=<null>],Atmosphere[humidity=<null>,visibility=<null>,pressure=<null>,pressureTrend=<null>,ozone=<null>,uvIndex=<null>],Clouds[percent=<null>],Condition[text=AM Clouds/PM Sun,lastUpdate=Sun Oct 25 11:08:24 CET 2015,observationTime=Sun Oct 25 00:00:00 CEST 2015,id=30,icon=<null>,commonId=partly-cloudy-day],Precipitation[rain=0.0,snow=0.0,probability=<null>],Wind[speed=<null>,direction=<null>,degree=<null>,gust=<null>,chill=<null>],Station[name=<null>,id=<null>,latitude=<null>,longitude=<null>],<null>]

Any advice to me?

Kind regards
Manuel

Hi Manuel,

You could try to use forecast.io. They provide the precipitation probability for the current day and the next 7 days. I do not use that item, but I see in the TRACE log that this is part of the feed

Precipitation[rain=0.0178,snow=0.0,probability=4]

For your other issue with the wind degree : I suspect the item should be a Number instead of a String. Or you using the wrong property and use Direction instead of degree. (Also here no personal experience with this, just a hint :slight_smile: )

Coert