-
Notifications
You must be signed in to change notification settings - Fork 46
Open
Description
Hi,
thanks a lot for this module. I really like it since I use the mobile app as well daily.
On rainy days the module does not show any precipitation graph. If I force the graph to be displayed with your new switch it loads endlessly.
How do you suggest to debug the issue?
Thanks
Wgb
This is my code in the config file.
{
module: "MMM-forecast-io",
classes: "small",
position: "bottom_left",
header: "Hamburg, DE",
config: {
apiKey: "??????????????????????????????", // removed
alwaysShowPrecipitationGraph: true,
latitude: 54.559676,
longitude: 9.168873
}
},
Activity
wbleek commentedon May 30, 2017
It works for Seattle, WA, but does not work for Girne, CY.
{ module: "MMM-forecast-io", classes: "small", position: "bottom_left", header: "Seattle, WA", config: { latitude: 47.606209, longitude: -122.332069 } }, { module: "MMM-forecast-io", classes: "small", position: "bottom_left", header: "Girne, CY", config: { latitude: 35.341671, longitude: 33.316669 } },
FluxOtto commentedon Jun 18, 2017
The issue is that not all locations are returned with the data block for 'Minutely'.
It is marked as 'optional' in the api,
This is also reflected on the web page, eg it will show graph on Seattle
https://darksky.net/forecast/47.6038,-122.3301 (at least when i looked as there is some rain in the next 50 min).
wbleek commentedon Jun 19, 2017
Thanks for your answer. I wasn't even aware of the fact that DarkSky distinguishes between minutely and hourly rain information. I am used to their mobile app and I am just looking for rain probability over the day - not in the upcoming minutes.
Would you mind if I add an implementation for the day overview and contribute that?
dmcinnes commentedon Jun 19, 2017
lavolp3 commentedon Aug 31, 2017
I have the same problem. As soon as I include prec graph, the module loads endlessly. I live in Germany.
How can I determine if minutely forecast is available in My region?
My code:
{ module: 'MMM-forecast-io', position: 'top_right', // This can be any of the regions. config: { apiKey: 'xxxxxxxxxxxxxxxxxxxxxxxxxxx', // Dark Sky API key. latitude: 51.45411, longitude: 6.62649, //maxDaysForecast: 5, //alwaysShowPrecipitationGraph: true } },