View Single Post
Temporal's Avatar
Posts: 323 | Thanked: 189 times | Joined on Oct 2010 @ Brazil
#797
Hi, I'm here to say that maybe I may have fixed the weather widget (for all).

Of couse it will require some little changes and it may have some rough edges but here it is:

Code:
#!/bin/sh
#Arguments:
# 1 = Link to yahoo weather
# 2 = output dir
# 3 = Biggest weather code to consider

url=${1-"weather.yahooapis.com/forecastrss?w=455861&u=c"}
out=${2-"/tmp"}
big=${3-"47"}
let big="$big"+1

# ========sakya's translation========
# In order to work with QtLockscreen I need to, in the WORST case scenario:
# http://weather.yahoo.com/weather.yahooapis.com/forecastrss?w=455861&u=c?unit=c
# 1) Remove the 'http://weather.yahoo.com/'
# 2) Translate the appended '?unit=X' to '&u=X'
url=`echo "$url" | sed s/weather.yahoo.com\\\/// | sed 's/&u=[cf]//' | sed 's/?unit/\&u/'`
# the only problem is that now it requires the ?unit=c to recognize celcius, but for the qtlockscreen it is ok.

code="44d"
curr="0"
cond="Unknown"
high="0"
loww="0"

# Getting all the necessary info.
wget --user-agent="" -q -t 1 -T 10 -O "$out/ywtemp.xml" "$url" || { exit 1; }
# Now I have to find out the condition code in order to select the icon to download
code=`cat "$out/ywtemp.xml" | grep -o code=\".* -m 1 | sed s/code=\"// | sed s/\".*//`|| { exit 1; }

# I think that it is safe to translate odd codes to night and even codes to day. It is difficult to get each match on the site, there's nothing anywhere to look into. The weather developer API does not stabilish a correlation.
  if [ "$code" -lt "$big" ] 
  then
    # It is lower than the bigger known good weather code (47?), so, it isn't the unknown code 3200 or any other also unknown. Now the unknown icon are the 44d and 44n that are equal N/A:
    if [ ` expr $code % 2 ` -eq 0 ]
    then
      code="$code""d";
    else
      code="$code""n";
    fi
    curr=`cat "$out/ywtemp.xml" | grep -o temp=\".* -m 1 | sed s/temp=\"// | sed s/\".*//` || { exit 1; }
    cond=`cat "$out/ywtemp.xml" | grep -o text=\".* -m 1 | sed s/text=\"// | sed s/\".*//` || { exit 1; }
    high=`cat "$out/ywtemp.xml" | grep -o high=\".* -m 1 | sed s/high=\"// | sed s/\".*//` || { exit 1; }
    loww=`cat "$out/ywtemp.xml" | grep -o low=\".* -m 1  | sed s/low=\"//  | sed s/\".*//` || { exit 1; }
  else
    code="44d";
  fi

# Getting the icon...
wget --user-agent="" -q -t 1 -T 10 -O "$out/ywtemp.png" "l.yimg.com/os/mit/media/m/weather/images/icons/l/$code-100567.png" || { exit 1; }

echo "Current: $curr"
echo "Conditions: $cond"
echo "High: $high"
echo "Low: $loww"
echo "Image: $out/ywtemp.png"
So, how to make it work:

1)Open /opt/qtlockscreen/weatherwidget.sh with the editor of your choice;

2)Delete everything on this file and paste the code above;

3)Go to http://weather.yahoo.com and look for your city.

4)It should return something around the lines of:
weather.yahoo.com/doesnt-matter/doesnt/matter-455861/

5)Take the last numbers of that url and put them in the end of THIS (weather.yahooapis.com/forecastrss?w=) url, like THIS:
weather.yahooapis.com/forecastrss?w=455861

6)Go to your configuration file (of the lockscreen you use) with the weather widget and replace the link there with this new link.

7)I guess it is done.

------------------------
I just did it so it might have bugs, expand them here so I can fix/help. I may update the wiki shortly this week if I get time.

This problem was bugging me too much. Bye!
__________________
Love and Goodness are not a property. Are not a franchising. They are present in each one of us, and must be cultivated with KNOWLEDGE.

Last edited by Temporal; 2013-02-16 at 19:40. Reason: Fixed a bug with the last argument intended originally for debug purposes but might be useful. No need to redo anything in case you already did it with the old one.
 

The Following 3 Users Say Thank You to Temporal For This Useful Post: