Ok so it seems the weather module is a mess or maybe I’m having issues idk haha. So here are the issues I’ve had…
I started out with openweathermap, and the forecast seemed to work except that the forecasted temps were way off compared to say weatherchannel, accuweather, and weathergov…
So since weathergov seemed to have the right forecast I tried that, but then feels like temp is off by about 14 degrees compared to actual feels like.
The bigger issue is that when I tried to get the forecast to show up it just says loading and nothing ever comes up… below I’m posting my whole code that I’m using for weathergov…
{
module: “weather”,
position: “top_right”,
header: “Current Weather”,
config: {
weatherProvider: “weathergov”,
apiBase: “https://api.weather.gov/points/”,
weatherEndpoint: “/forecast/hourly”,
lat: “XXX”,
lon: “XXX”,
type: “current”
}
},
{
module: “weather”,
position: “top_right”,
header: “Weather Forecast”,
config: {
weatherProvider: “weathergov”,
apiBase: “https://api.weather.gov/points/”,
weatherEndpoint: “/forecast”,
lat: “XXX”,
lon: “XXX”,
type: “forecast”,
maxNumberOfDays: “3”
}
Does something look wrong here for the forecast to not show up?
The one other question is how do I turn off the feels like option as I don’t want that if it’s going to be incorrect.
Look forward to any help as I have a serious headache!!!