Weather binding - Forecast - Displaying day name

Hi

I’m trying to set up a forecast using Weather binding and Weather Underground. I see in the documentation provided by WUnderground that weekday name for the forecast is an available property but in the doc for the Weather-binding I cannot see that the property is available. Does anyone display weekday in their forecast and can tell me how to do it?

{
  "response": {
  "version": "0.1",
  "termsofService": "http://www.wunderground.com/weather/api/d/terms.html",
  "features": {
  "forecast10day": 1
  }
  },
  "forecast": {
  "txt_forecast": {
  "date": "8:00 AM PDT",
  "forecastday": [{
  "period": 0,
  "icon": "partlycloudy",
  "icon_url": "http://icons-ak.wxug.com/i/c/k/partlycloudy.gif",
  "title": "Tuesday",
  "fcttext": "Overcast in the morning, then clear. High of 75F. Winds from the SSW at 5 to 20 mph.",
  "fcttext_metric": "Overcast in the morning, then clear. High of 24C. Windy. Winds from the SSW at 5 to 30 km/h.",
  "pop": "0"

I’m after the “title” showing Tuesday.

//morten

take a look at this:

it uses ObservationTime (0, 1, 2…) and then itemValue('ObservationTime1') | date:'EEEE'

Well… That was spot on… Strange I missed that trying to google my way to the answer… Thanks a lot :slight_smile:

1 Like