[RELEASE] World Weather Online Addon

  Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
bcamp929 Offline
Junior Member
Posts: 3
Joined: Dec 2009
Reputation: 0
Post: #41
No FahrenheitConfused?
find quote
odoll Offline
Junior Member
Posts: 46
Joined: Nov 2008
Reputation: 0
Post: #42
Hitcher Wrote:You may need to Force Refresh XBMCs repository for it to show up.

there may have been smarter ways of achieving a Forced Refresh (but as the way to go there neither has been explained in more detailed here, nor could be simply found in the forum by a n00b like me Wink) I deleted XBMC and did a fresh install which did the trick - thx
find quote
kooolkat357 Offline
Junior Member
Posts: 11
Joined: Jul 2011
Reputation: 0
Post: #43
Question: Do you need the latest SVN to make this plugin work? If so, and I decide to install, will this interfere with my spotify build?
find quote
sams0n Offline
Junior Member
Posts: 44
Joined: Nov 2011
Reputation: 0
Location: san francisco, ca
Post: #44
bcamp929 Wrote:No FahrenheitConfused?

i also was wondering how to switch to degrees F, dont see an option to do that.
find quote
Hitcher Offline
Skilled Skinner
Posts: 9,925
Joined: Aug 2007
Reputation: 67
Location: Eastleigh, UK
Post: #45
bcamp929 Wrote:No FahrenheitConfused?

You need to change your Region in the Settings.

[Image: sig_zps3af3b48e.jpg]
find quote
Hitcher Offline
Skilled Skinner
Posts: 9,925
Joined: Aug 2007
Reputation: 67
Location: Eastleigh, UK
Post: #46
odoll Wrote:there may have been smarter ways of achieving a Forced Refresh (but as the way to go there neither has been explained in more detailed here, nor could be simply found in the forum by a n00b like me Wink) I deleted XBMC and did a fresh install which did the trick - thx
Context Menu > Force Refresh
kooolkat357 Wrote:Question: Do you need the latest SVN to make this plugin work? If so, and I decide to install, will this interfere with my spotify build?
Yes, and no idea.

[Image: sig_zps3af3b48e.jpg]
find quote
sams0n Offline
Junior Member
Posts: 44
Joined: Nov 2011
Reputation: 0
Location: san francisco, ca
Post: #47
Hitcher Wrote:You need to change your Region in the Settings.

where is that located?
find quote
sams0n Offline
Junior Member
Posts: 44
Joined: Nov 2011
Reputation: 0
Location: san francisco, ca
Post: #48
sams0n Wrote:where is that located?

nevermind, settings > appearence > international > region
find quote
amet Offline
I wave my private parts at your aunties!
Posts: 3,486
Joined: Jul 2009
Reputation: 18
Location: Novi Sad / Dubai
Post: #49
FrostBox Wrote:@amet
I have a tips for showing feels like and dew point without infos from site.


For FeelsLike two infos required ( temperature in degrees Celsius, wind speed in km/h )

PHP Code:
def getFeelsLikeT=10V=25 ):
    
""" The formula to calculate the equivalent temperature related to the wind chill is:
        T(REF) = 13.12 + 0.6215 * T - 11.37 * V**0.16 + 0.3965 * T * V**0.16
        Or:
        T(REF): is the equivalent temperature in degrees Celsius
        V: is the wind speed in km/h measured at 10m height
        T: is the temperature of the air in degrees Celsius
        source: http://zpag.tripod.com/Meteo/eolien.htm
    """
    
FeelsLike T
    
#Wind speeds of 4 mph or less, the wind chill temperature is the same as the actual air temperature.
    
if round( ( .0 ) / 1.609344 ) > 4:
        
FeelsLike = ( 13.12 + ( 0.6215 ) - ( 11.37 V**0.16 ) + ( 0.3965 V**0.16 ) )
    
#
    
return strroundFeelsLike ) )


# test FeelsLike and check table in site http://zpag.tripod.com/Meteo/eolien.htm
tCelsius = -10
for windspeed in range101 ):
    
FeelsLike getFeelsLiketCelsiuswindspeed )
    print 
FeelsLike
print "-"*100 
For DewPoint two infos required ( temperature in degrees Celsius, relative humidity )

PHP Code:
import math
def getDewPoint
Tc=0RH=93minRH=( 00.075 )[ ] ):
    
""" Dewpoint from relative humidity and temperature
        If you know the relative humidity and the air temperature,
        and want to calculate the dewpoint, the formulas are as follows.
    """
    
#First, if your air temperature is in degrees Fahrenheit, then you must convert it to degrees Celsius by using the Fahrenheit to Celsius formula.
    # Tc = 5.0 / 9.0 * ( Tf - 32.0 )
    #The next step is to obtain the saturation vapor pressure(Es) using this formula as before when air temperature is known.
    
Es 6.11 10.0**( 7.5 Tc / ( 237.7 Tc ) )
    
#The next step is to use the saturation vapor pressure and the relative humidity to compute the actual vapor pressure(E) of the air. This can be done with the following formula.
    #RH=relative humidity of air expressed as a percent. or except minimum(.075) humidity to abort error with math.log.
    
RH RH or minRH #0.075
    
= ( RH Es ) / 100
    
#Note: math.log( ) means to take the natural log of the variable in the parentheses
    #Now you are ready to use the following formula to obtain the dewpoint temperature.
    
try:
        
DewPoint = ( -430.22 237.7 math.log) ) / ( -math.log) + 19.08 )
    
except ValueError:
        
#math domain error, because RH = 0%
        #return "N/A"
        
DewPoint #minRH
    #Note: Due to the rounding of decimal places, your answer may be slightly different from the above answer, but it should be within two degrees.
    
return strintDewPoint ) )


# Check Dew Point Calculator with http://www.dpcalc.org/
tCelsius 10
for humidity in range101 ):
    
DewPoint getDewPointtCelsiushumidity )
    print 
DewPoint
print "-"*100 
More Weather Calculator http://www.gorhamschaffler.com/weather_calculator.htm

Cheers
frost

niceeeee Smile

adding now, Thx a lot!


Always read the XBMC_Online_Manual,Frequently_Asked_Questions and search the forum before posting.
For troubleshooting and bug reporting use -> Log_file.
find quote
Omegatron Offline
Senior Member
Posts: 268
Joined: Jan 2011
Reputation: 0
Location: The Netherlands
Post: #50
Awsome the weather shizzle is up and running again, i like Big Grin

but but....question. Im usings animated weather icons (Aeon MQ3 skin) the icons are animated but atm (local time here is 21.30 hours) is still see a sun icon instead of a moon like i had before, also weatherbackdrop based on actual weather conditions isnt working.

Is this still a bug or a skin related issue? Or am i being as noob and forgetting something.

thanks a lot!
(This post was last modified: 2011-11-16 22:31 by Omegatron.)
find quote
Post Reply