Kodi Community Forum
Broken Multi Weather - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Add-on Support (https://forum.kodi.tv/forumdisplay.php?fid=27)
+---- Forum: Weather Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=155)
+---- Thread: Broken Multi Weather (/showthread.php?tid=352028)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21


RE: Multi Weather - kurai - 2023-12-08

For me it's the WeatherBit module that's been misbehaving the last few days.
It seems to be returning unexpected/invalid data for ozone values.

Temporarily `fixed' by commenting out line #79 in /weather.multi/lib/providers/weatherbit.py
search::
            set_property('Daily.%i.Ozone'             % (count+1), str(int(round(item['ozone']))) + ' DU')
replace::
#            set_property('Daily.%i.Ozone'             % (count+1), str(int(round(item['ozone']))) + ' DU')



RE: Multi Weather - justin150 - 2023-12-12

Also works for UK users

Thank you


RE: Multi Weather - powerchip - 2023-12-29

Thanks for the fix, I just had to search a bit for the path as I'm on android tv.

The path for Android TV : /storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/weather.multi/lib/weather.py


RE: Multi Weather - Cris_ - 2024-01-12

Simple question:
How can i switch the location if i have added more then one?


RE: Multi Weather - ronie - 2024-01-12

it depends on which skin you're using...
in case it's the default skin Estuary:
focus the top bar and hit ok

Image

if you're using another skin, you can ask your question in their support forum.


RE: Multi Weather - therealjoeblow - 2024-01-19

Multi Weather is broken for me, it displays nothing.  v0.0.22 autoupdated itself from the repo:

Image

Image

I turned on logging in it's settings, but don't know where it writes the log, or does it do that in the main log?

Thx
TRJB


RE: Multi Weather - mentat - 2024-01-19

(2024-01-19, 04:36)therealjoeblow Wrote: I turned on logging in it's settings, but don't know where it writes the log, or does it do that in the main log?

Thx
TRJB


Have look at the bottom of ronie's 1st post in this thread for detailed information on posting debug log.


RE: Multi Weather not working in Canada? - mentat - 2024-01-19

Greetings,

I'm wondering if Multi Weather (Yahoo) issues are related to all Canadian users (or just me and @therealjoeblow)?

Here's my Weather Window...

Image

Here's my Debug Log...

https://paste.kodi.tv/ofelehayov.kodi

Thanks.


RE: Multi Weather - wags1 - 2024-01-19

No problems here in the US.


RE: Multi Weather - mentat - 2024-01-19

(2024-01-19, 19:49)wags1 Wrote: No problems here in the US.

I appreciate the feedback... I did try changing my Regional settings in Kodi from CA to US and to UK but the add-on still does not work (must be tied to my IP Address).


RE: Multi Weather - ronie - 2024-01-20

@therealjoeblow @mentat could you please try this version:
weather.multi-0.0.23.zip

in case it still fails, please post another debug log.
thx!


RE: Multi Weather - mentat - 2024-01-20

(2024-01-20, 01:33)ronie Wrote: @therealjoeblow @mentat could you please try this version:
weather.multi-0.0.23.zip

in case it still fails, please post another debug log.
thx!

Greetings ronie,

Removed version 0.0.22 (including settings folder) and installed 0.0.23 from attached zip file... still no weather.

Here's the new debug log...

xufodifatu.kodi (paste)

Thanks.


RE: Multi Weather - Fuchs2468 - 2024-01-20

Unfortunately, the version "weather.multi-0.0.23" is already out of date and no longer works for all countries (cookies).
Here is my change, then the addon works again.

old:
Code:
CURL = 'https://www.yahoo.com/?guccounter=2'
new:
Code:
CURL = 'https://www.yahoo.com/?guccounter=1'

Image


RE: Multi Weather - mentat - 2024-01-20

(2024-01-20, 05:30)Fuchs2468 Wrote: Unfortunately, the version "weather.multi-0.0.23" is already out of date and no longer works for all countries (cookies).
Here is my change, then the addon works again.

old:
Code:
CURL = 'https://www.yahoo.com/?guccounter=2'
new:
Code:
CURL = 'https://www.yahoo.com/?guccounter=1'

Neither of the options (above) work for me in Canada (CA), but this one does...

Code:
CURL = 'https://ca.yahoo.com/'

Thanks.


RE: Multi Weather - therealjoeblow - 2024-01-20

@mentat good one, thanks!  I changed that line to CURL = 'https://ca.yahoo.com/' in my v0.0.22 and it works again.

Hoping @rONniE can find a way to integrate multiple web addresses for Yahoo to make it work properly across regions.

Cheers
TRJB