You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you for your very complete dashboard. I have managed to get most of the cards working except the very last one
I am using solcast for my PV forecasting and it seems that the entity meta.wh_period is missing on my installation. What is a weather period - can I not get it from solcast directly? or where is it generated?
Thank you for your very complete dashboard. I have managed to get most of the cards working except the very last one
I am using solcast for my PV forecasting and it seems that the entity meta.wh_period is missing on my installation. What is a weather period - can I not get it from solcast directly? or where is it generated?
My code:
entities:
- entity: sensor.sunsynk_12kw_ss_solar_power #12kW Single phase
name: Solar Power
line:
color: rgb(255, 155, 48)
shape: spline
width: 1
fill: tozeroy
fillcolor: rgba(255, 155, 48, 0.3)
yaxis: y3
show_value: false
showlegend: false
- entity: sensor.solcast_pv_forecast_forecast_today
line:
color: rgb(125, 125, 125)
shape: spline
fill: tozeroy
filters:
- fn: |
({meta}) => {
const entries = Object.entries(meta.wh_period);
const xs = entries.map(([start, ]) => new Date(start));
const ys = entries.map(([, value]) => value);
return { xs, ys };
}
yaxis: y1
showlegend: true
- entity: sensor.solcast_pv_forecast_forecast_tomorrow
line:
color: rgb(90,90,90)
shape: spline
fill: tozeroy
filters:
- fn: |
({meta}) => {
const entries = Object.entries(meta.wh_period);
const xs = entries.map(([start, ]) => new Date(start));
const ys = entries.map(([, value]) => value);
return { xs, ys };
}
yaxis: y1
- entity: sensor.solcast_pv_forecast_forecast_day_3
line:
color: rgb(50,50,50)
shape: spline
fill: tozeroy
filters:
- fn: |
({meta}) => {
const entries = Object.entries(meta.wh_period);
const xs = entries.map(([start, ]) => new Date(start));
const ys = entries.map(([, value]) => value);
return { xs, ys };
}
The text was updated successfully, but these errors were encountered: