title |
Returns the generic title for the weather being displayed. |
Conditions for Austin, TX at 2:50 pm CST |
temp |
Returns current temperature for selected location without unit. |
75 |
alt.temp |
If unit is set to f (fahrenheit), this will return the current temp in c (celsius) or or vice versa. |
24 |
code |
Returns the current condition code. View a list condition codes. |
32 |
todayCode |
Returns the condition code for the day vs current. View a list condition codes. |
30 |
units.temp |
Returns the unit in which temp is displayed, f for Fahrenheit or c for Celsius. This can be changed when calling simpleWeather. |
f |
units.distance |
Returns the unit in which distance is displayed, mi for miles or km for kilometers. |
mi |
units.pressure |
Returns the units of barometric pressure, in for pounds per square inch or mb for millibars. |
in |
units.speed |
Returns the unit in which speed is displayed, mph for miles per hour or kph for kilometers per hour. |
mph |
alt.unit |
Returns the opposite from units.temp (if Fahrenheit, this will return the temp in Celsuis). |
c |
currently |
Returns a textual description of the current condition. |
Partly Cloudy |
high |
Returns the forecasted high temp for the day. |
82 |
alt.high |
Returns the opposite from high (if Fahrenheit, this will return the temp in Celsuis). |
28 |
low |
Returns the forecasted low temp for the day. |
47 |
alt.low |
Returns the opposite from low (if Fahrenheit, this will return the temp in Celsuis). |
8 |
text |
Returns a textual description of the condition for the day vs current. Formally `forecast`. |
Sunny |
wind.chill |
Returns the current wind chill in degrees. |
71 |
wind.direction |
Returns the current wind direction. |
NW |
wind.speed |
Returns the current wind speed. Use with units.speed to display mph or kph. |
13 |
humidity |
Returns current humidity in precent. |
63 |
heatindex |
Returns the current heatindex. |
71 |
pressure |
|
29.85 |
rising |
Returns the state of the barometric pressure; steady (0), rising (1), or falling (2). |
0 |
visibility |
Returns current visibility in distance. Use with units.distance for mi or km. |
10 |
sunrise |
Returns the time of sunrise for today. |
7:26am |
sunset |
Returns the time of sunset for today. |
5:47pm |
thumbnail |
Returns the thumbnail image url for the current condition code. |
View Image |
image |
Returns the full size image url for the current condition code. |
View Image |
tomorrow.X |
Removed as of v3.0 in favor of `forecast`; to get data for tomorrow it would now be `weather.forecast[1]` |
78 |
forecast[X].high |
Returns the forecasted high temp for X day out. (X = 0-4; 0 is today) |
78 |
forecast[X].alt.high |
Returns the opposite from forecast.X.high (if Fahrenheit, this will return the temp in Celsuis). (X = 0-4; 0 is today) |
25 |
forecast[X].low |
Returns the forecasted low temp for X day out. (X = 0-4; 0 is today) |
41 |
forecast[X].alt.low |
Returns the opposite from forecast.X.low (if Fahrenheit, this will return the temp in Celsuis). (X = 0-4; 0 is today) |
5 |
forecast[X].text |
Returns a textual description of the condition for X day. Formally `forecast`. (X = 0-4; 0 is today) |
Thunderstorms |
forecast[X].code |
Returns the condition code for X day. View a list condition codes. (X = 0-4; 0 is today) |
4 |
forecast[X].date |
Returns the date for X day. (X = 0-4; 0 is today) |
12 Jan 2013 |
forecast[X].day |
Returns the day for X day. (X = 0-4; 0 is today) |
Sat |
forecast[X].image |
Returns the full size image url for X day's condition code. (X = 0-4; 0 is today) |
View Image |
forecast[X].thumbnail |
Returns the thumbnail image url for X day's condition code. (X = 0-4; 0 is today) |
View Image |
city |
Returns the city name. |
Austin |
country |
Returns the country name. |
US |
region |
Returns the state, territory, or region. |
TX |
updated |
Returns when the weather feed was last updated. |
Fri, 11 Jan 2013 3:50 pm CST |
link |
Returns a url to the full forecast on Yahoo! Weather. |
View Forecast |