Xfce Forum

Sub domains
 

You are not logged in.

#1 2017-05-11 16:10:53

wuwei
Member
From: Italy
Registered: 2017-01-29
Posts: 56

[SOLVED] xfce4-weather-plugin stops working (no data)

Hi, I have a problem with xfce4-weather-plugin version 0.8.6 installed on Linux Mint 18 Sarah 64bit.

Until few days ago worked well, but now it says "No Data".

I saw an error like mine mentioned here:

https://bugzilla.xfce.org/show_bug.cgi?id=13569

same plugin version and same date!

I've tried to remove old version (sudo apt-get purge xfce4-weather-plugin and sudo apt-get install xfce4-weather-plugin) and to compile from sources the latest version 0.8.9, but when I add the plugin to the panel I receive this error:

Eniv33H.png

How to resolve it?

Thanks.

Last edited by wuwei (2017-05-12 17:16:20)

Offline

#2 2017-05-11 16:36:15

ToZ
Administrator
From: Canada
Registered: 2011-06-02
Posts: 10,948

Re: [SOLVED] xfce4-weather-plugin stops working (no data)

Until few days ago worked well, but now it says "No Data".

The weather URLs have been deprecated by the weather provider. Version 0.8.9 has the updated URLs.

I've tried to remove old version (sudo apt-get purge xfce4-weather-plugin and sudo apt-get install xfce4-weather-plugin) and to compile from sources the latest version 0.8.9, but when I add the plugin to the panel

How did you try to compile it? What process did you use and what was/is the output of the configure and build commands?

Note: the proper way to fix this is to create a bug report with the Mint Distro and encourage them to add the updated version to their official repositories.


Please remember to mark your thread [SOLVED] to make it easier for others to find
--- How To Ask For Help | FAQ | Developer Wiki  |  Community | Contribute ---

Offline

#3 2017-05-11 18:24:22

wuwei
Member
From: Italy
Registered: 2017-01-29
Posts: 56

Re: [SOLVED] xfce4-weather-plugin stops working (no data)

I compiled version 0.8.9 with:

./configure --prefix=/usr
make
sudo make install

I will try to recompile it and install from source, so it will possible to send to you whole messages.
At this moment it's impossible for me to do this because in the same machine I'm installing a newer version of Debian Stretch..

Anyway, I'll also report it to official Mint Distro as you suggested..

Last edited by wuwei (2017-05-11 18:25:16)

Offline

#4 2017-05-11 18:46:19

wuwei
Member
From: Italy
Registered: 2017-01-29
Posts: 56

Re: [SOLVED] xfce4-weather-plugin stops working (no data)

So, I've recompiled from source, I enclose a log file that you can find in the link above:

https://drive.google.com/file/d/0Bxpnh3 … sp=sharing

Furthermore, at the end of sudo make install now it says:

libtool: warning: remember to run 'libtool --finish /usr/local/lib/xfce4/panel/plugins'
gtk-update-icon-cache: Cache file created successfully.

so, executing:
libtool --finish /usr/local/lib/xfce4/panel/plugins

says:
libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/usr/sbin:/home/giagio/Scripts:/sbin" ldconfig -n /usr/local/lib/xfce4/panel/plugins
----------------------------------------------------------------------
Libraries have been installed in:
   /usr/local/lib/xfce4/panel/plugins

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the '-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the 'LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the 'LD_RUN_PATH' environment variable
     during linking
   - use the '-Wl,-rpath -Wl,LIBDIR' linker flag
   - have your system administrator add LIBDIR to '/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------

I noticed these two things after configure:
checking for dlltool... no
checking for sysroot... no

Last edited by wuwei (2017-05-11 18:51:20)

Offline

#5 2017-05-11 20:00:17

ToZ
Administrator
From: Canada
Registered: 2011-06-02
Posts: 10,948

Re: [SOLVED] xfce4-weather-plugin stops working (no data)

A couple of items:

1. Your install script installs the library file to /usr/lib/xfce4/panel/plugins:

libtool: install: /usr/bin/install -c .libs/libweather.so /usr/lib/xfce4/panel/plugins/libweather.so

...but I believe that Mint/Ubuntu use special lib directories based on the architecture (64-bit = /usr/lib/x86_64-linux-gnu; 32-bit = /usr/lib/i386-linux-gnu). I would suggest using the following configure command to get the library in the correct location:

./configure --prefix=/usr --libdir=/usr/lib/$(uname -m)-linux-gnu --disable-debug

2. You can always run xfce4-panel in debug mode:

xfce4-panel -q
PANEL_DEBUG=1 xfce4-panel

...then add the plugin to see exactly what error messages are being generated.


Please remember to mark your thread [SOLVED] to make it easier for others to find
--- How To Ask For Help | FAQ | Developer Wiki  |  Community | Contribute ---

Offline

#6 2017-05-11 20:15:57

wuwei
Member
From: Italy
Registered: 2017-01-29
Posts: 56

Re: [SOLVED] xfce4-weather-plugin stops working (no data)

Ok, following your suggestions, it says:

weather:ERROR:weather-icon.c:132:get_icon: assertion failed: (theme != NULL)
xfce4-panel(external): weather-4: child exited with status 6
xfce4-panel-Message: Plugin weather-4 has been automatically restarted after crash.
xfce4-panel(external): weather-4: scheduled a respawn of the child
xfce4-panel(external): weather-4: child is unembedded
xfce4-panel(external): weather-4: child spawned; pid=12959, argc=8
xfce4-panel(external): weather-4: child is embedded; 6 properties in queue
**
weather:ERROR:weather-icon.c:132:get_icon: assertion failed: (theme != NULL)
xfce4-panel(external): weather-4: child exited with status 6
xfce4-panel(external): weather-4: child is unembedded

(xfce4-panel:12822): GLib-CRITICAL **: g_child_watch_add_full: assertion 'pid > 0' failed
xfce4-panel(external): weather-4: plugin unrealized; quiting child
xfce4-panel(application): saving /panels/panel-1: ids=true, providers=false

Offline

#7 2017-05-11 20:41:15

wuwei
Member
From: Italy
Registered: 2017-01-29
Posts: 56

Re: [SOLVED] xfce4-weather-plugin stops working (no data)

Another thing...

I've checked that both Linux Mint 18 Sarah and Linux Mint 18.1 have exactly the same version of xfce4-weather-plugin installed:

Package: xfce4-weather-plugin
Priority: optional
Section: universe/x11
Installed-Size: 4571
Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
Original-Maintainer: Debian Xfce Maintainers <pkg-xfce-devel@lists.alioth.debian.org>
Architecture: amd64
Version: 0.8.6-1
Depends: libc6 (>= 2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk2.0-0 (>= 2.20.0), libpango-1.0-0 (>= 1.14.0), libsoup2.4-1 (>= 2.32.2), libxfce4ui-1-0 (>= 4.8.0), libxfce4util7 (>= 4.9.0), libxml2 (>= 2.7.4), xfce4-panel (>= 4.11), xfce4-panel (<< 4.13)
Filename: pool/universe/x/xfce4-weather-plugin/xfce4-weather-plugin_0.8.6-1_amd64.deb
Size: 2315518
MD5sum: 65e8c1116cce95c27b47d27b57d65dd4
SHA1: 997470f5b831a621e2a83d358a9d933c328dee7d
SHA256: edd6dd3d125317c21dac8bbe434b87c08bdcfc093ed9094771dba7675585b89c
Description-en: weather information plugin for the Xfce4 panel
The weather plugin displays information about the current weather according
your timezone and settings. It allows one to search weather location code in
the same plugin and displays weather status in little icons.
.
Features include:
  - Temperature, atmospheric pressure and state.
  - Wind speed, gust, and direction.
  - Humidity, Visibility, Dew-point, UV Index.
Description-md5: 75261edfb17dac04dbe7f9212ab0574b
Homepage: http://goodies.xfce.org/
Bugs: https://bugs.launchpad.net/ubuntu/+filebug
Origin: Ubuntu
Supported: 3y
Task: xubuntu-desktop, ubuntustudio-desktop

in Linux Mint 18.1 works like a charm, but in Mint 18 gives no data...

Last edited by wuwei (2017-05-11 20:42:18)

Offline

#8 2017-05-12 02:17:54

ToZ
Administrator
From: Canada
Registered: 2011-06-02
Posts: 10,948

Re: [SOLVED] xfce4-weather-plugin stops working (no data)

in Linux Mint 18.1 works like a charm, but in Mint 18 gives no data...

That is strange. I used the following instructions to successfully build and run the latest version of xfce4-weather-plugin on Mint 18.0.

sudo apt-get remove xfce4-weather-plugin
sudo apt-get install build-essential
sudo apt-get build-dep xfce4-weather-plugin

wget https://git.xfce.org/panel-plugins/xfce4-weather-plugin/snapshot/xfce4-weather-plugin-0.8.9.tar.bz2
(uncompress the file)

./configure --prefix=/usr --libdir=/usr/lib/$(uname -m)-linux-gnu --disable-debug
make
sudo make install

Please remember to mark your thread [SOLVED] to make it easier for others to find
--- How To Ask For Help | FAQ | Developer Wiki  |  Community | Contribute ---

Offline

#9 2017-05-12 16:15:33

wuwei
Member
From: Italy
Registered: 2017-01-29
Posts: 56

Re: [SOLVED] xfce4-weather-plugin stops working (no data)

Unfortunately no luck! Followed your instructions but same error...I give up!!!!!! :-)

Offline

#10 2017-05-12 17:14:47

wuwei
Member
From: Italy
Registered: 2017-01-29
Posts: 56

Re: [SOLVED] xfce4-weather-plugin stops working (no data)

After trying and trying and trying...TA-DAAAA!!!

Using your latest instructions, plugin now works like a charm! :-)

hf6ErRf.png

2pLbRfv.png

Many many many thanks!!!

Offline

#11 2017-05-13 15:35:14

MountainDewManiac
Member
From: Where Mr. Bankruptcy is Prez
Registered: 2013-03-24
Posts: 1,115

Re: [SOLVED] xfce4-weather-plugin stops working (no data)

ToZ wrote:

That is strange.

Want more strange? I am currently using an older installation of Mint, 17.3 I believe. xfce-weather-plugin 0.8.3-2 - and it is working fine. I remember installing another weather app the last time this one was having issues, or maybe even the time before that. I tried the other app I installed but went back to xfce's version to check something, expecting to see no data. Imagine my surprise when I had data in it. It has been working ever since.

Apparently, at least one other weather application is using the same something or other that this one does, but updates it more often. Or something.

Looking in Synaptic Package Manager just now, I see aweather and gnome-weather. I do not recall which I installed when xfce-weather-plugin had no data; it is possible that I installed both at that time. I may have had to add a PPA (Mint's main editions are based and built upon Ubuntu) in order to install one or both of these other weather apps.

I have not been aware of any interruptions in the weather data since doing so. This is not a complaint, for obvious reasons - merely an observation.

Regards,
MDM


Mountain Dew Maniac

How to Ask for Help <=== Click on this link

Offline

#12 2017-05-13 17:19:13

ToZ
Administrator
From: Canada
Registered: 2011-06-02
Posts: 10,948

Re: [SOLVED] xfce4-weather-plugin stops working (no data)

@MDM, can you post back the results of:

cat ~/.xsession-errors | grep -i weather

I'm curious to see what its connecting to.


Please remember to mark your thread [SOLVED] to make it easier for others to find
--- How To Ask For Help | FAQ | Developer Wiki  |  Community | Contribute ---

Offline

#13 2017-05-15 17:34:15

alcornoqui
Member
Registered: 2014-07-28
Posts: 831

Re: [SOLVED] xfce4-weather-plugin stops working (no data)

I've had good luck in Xubuntu 16.04 installing the updated Zesty .deb package directly from Ubuntu:

http://packages.ubuntu.com/zesty/xfce4-weather-plugin

Works like a charm, I wonder why it isn't being updated dowstream, though.

Offline

#14 2017-05-17 07:53:17

MountainDewManiac
Member
From: Where Mr. Bankruptcy is Prez
Registered: 2013-03-24
Posts: 1,115

Re: [SOLVED] xfce4-weather-plugin stops working (no data)

ToZ wrote:

@MDM, can you post back the results of:

cat ~/.xsession-errors | grep -i weather

I'm curious to see what its connecting to.

Hello,

Please mentally insert virtual embarrassed pause here, to match the one that just occurred. I was under the impression that things were functioning okay here because I see weather information on one of my panels. It displays the current conditions icon graphic and (scrolling) six pieces of data, temperature, "feels like temperature," relative humidity, dew point, the direction the wind is coming from, and the wind speed. Because of all that, and because I see data when I hover my mouse over that area, I stupidly assumed that everything (in matters pertaining to this subject) was fine.

I finally took the step of right-clicking on the panel applet. I only see forecast information for "Today" - which seems to be within the realm of reasonable expectations (it doesn't suggest that I'll be experiencing conditions under which I'll see snow, or standing water boil, lol); the other six days are blank.  I will insert the requested information, but I suppose that it will more or less match what others have been experiencing. On the second - "Details" - tab, I see that my last weather data download took place on the ninth of this month.

My apologies for speaking (typing) before thinking. Or was that instead of thinking?

My_Name@My_Computer ~ $ cat ~/.xsession-errors | grep -i weather
(x-session-manager:1870): xfce4-session-WARNING **: Unable to launch "/opt/extras.ubuntu.com/my-weather-indicator/bin/my-weather-indicator" (specified by autostart/my-weather-indicator-autostart.desktop): Failed to execute child process "/opt/extras.ubuntu.com/my-weather-indicator/bin/my-weather-indicator" (No such file or directory)
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-16
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-17
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-17
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-17
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-17
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-17
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-17
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-17
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-17
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-17
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-17
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-17
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-17
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-17
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-17
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-17
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-17
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-17
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-17
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/locationforecastlts/1.2/?lat="My_Latitude";lon="My_Longitude";msl=198
(wrapper-1.0:2388): weather-WARNING **: Download of weather data failed with HTTP Status Code 404, Reason phrase: Not Found
weather-Message: getting http://api.yr.no/weatherapi/sunrise/1.0/?lat="My_Latitude";lon="My_Longitude";date=2017-05-17
(wrapper-1.0:2388): weather-WARNING **: Download of astronomical data failed with HTTP Status Code 404, Reason phrase: Not Found
My_Name@My_Computer ~ $ 

In my defense, I had originally installed an alternative weather app during one of the periods of time when everyone - including myself - experienced a no data issue and, if I recall correctly, I wasn't seeing a limited set of weather data (as I am now), I was seeing no data. The app that I installed allowed the user to choose a source - out of four - to retrieve weather data from. I soon decided to switch back to xfce4-weather-plugin and have no weather data until the issue cleared up and, when I did, this app was immediately back to functioning fine. Therefore, this time I assumed that things were okay without actually checking the details.

I still wonder why this app started functioning (in the past) when I installed/used a different app. Was it the simple fact that I installed it, possibly adding a weather-related PPA in the process? My switching through all four choices for a data source? I think I had to sign up for at least one of those sources and receive some kind of API key. I am almost certain that this app began functioning again after switching back to it, even though there were still being posts generated here about others' ongoing issues.

I wish this app was set up to give the user a choice of multiple sources for weather data. Either as a visible choice or as a behind the scenes fallback (attempt primary source, if that fails, try the secondaries instead).

Regards,
MDM


Mountain Dew Maniac

How to Ask for Help <=== Click on this link

Offline

Board footer

Powered by FluxBB