Anyone know of all the possible weather conditions Google's API will put out? I've got to match up my icons to the forecast, and I can't find a list of conditions.

link|improve this question

feedback

5 Answers

up vote 4 down vote accepted

This was mentioned: http://www.blindmotion.com/?p=73 though it may not be complete, as it isn't something released by Google. It probably covers about 99% of cases though, barring random enhancements and releases to the weather api by Google staff.

link|improve this answer
feedback

I found this list which looks more complete than any other that I've seen

http://dennisdel.com/content/conditions.xml

<conditions>
 <type>PARTLY SUNNY</type>
 <type>SCATTERED THUNDERSTORMS</type>
 <type>SHOWERS</type>
 <type>SCATTERED SHOWERS</type>
 <type>RAIN AND SNOW</type>
 <type>OVERCAST</type>
 <type>LIGHT SNOW</type>
 <type>FREEZING DRIZZLE</type>
 <type>CHANCE OF RAIN</type>
 <type>SUNNY</type>
 <type>CLEAR</type>
 <type>MOSTLY SUNNY</type>
 <type>PARTLY CLOUDY</type>
 <type>MOSTLY CLOUDY</type>
 <type>CHANCE OF STORM</type>
 <type>RAIN</type>
 <type>CHANCE OF SNOW</type>
 <type>CLOUDY</type>
 <type>MIST</type>
 <type>STORM</type>
 <type>THUNDERSTORM</type>
 <type>CHANCE OF TSTORM</type>
 <type>SLEET</type>
 <type>SNOW</type>
 <type>ICY</type>
 <type>DUST</type>
 <type>FOG</type>
 <type>SMOKE</type>
 <type>HAZE</type>
 <type>FLURRIES</type>
 <type>LIGHT RAIN</type>
 <type>SNOW SHOWERS</type>
 <type>ICE/SNOW</type>
 <type>WINDY</type>
 <type>SCATTERED SNOW SHOWERS</type>
</conditions>

EDIT There is a new one here based on the original list:
https://gist.github.com/806934

It removes these from the list

<type>ICE/SNOW</type>
<type>WINDY</type>
<type>SCATTERED SNOW SHOWERS</type>

and adds:

<type>HAIL</type>

Probably wouldn't hurt to use all of them anyway

link|improve this answer
feedback

That link was broken for me. Here's a list I found on another forum:

"Clear 
Cloudy 
Fog
Haze 
Light Rain
Mostly Cloudy 
Overcast 
Partly Cloudy
Rain 
Rain Showers 
Showers
Thunderstorm 
Chance of Showers 
Chance of Snow 
Chance of Storm 
Mostly Sunny
Partly Sunny 
Scattered Showers 
Sunny"
link|improve this answer
1  
After I posted this list, I decided to use it. Weird that there's a "Chance of Snow" but never "Snow." A philosophical statement? Or maybe the list was compiled using cities that were in the middle of their summer. – Emile Sep 18 '10 at 19:20
feedback

Here's the best list I could find: http://www.blindmotion.com/?p=73

You may want to consider alternate APIs that are formally supported and documented. Yahoo!'s Weather RSS feed is a handy, easy-to-use API. I use the National Weather Service's API for one of my projects because I need to pull the forecast for a specific time frame in the future and it lets me do that in a reasonably straightforward way.

link|improve this answer
Thanks for the info. I gave Coder the check mark as he most closely answered the question, but I am definately looking into another api... mostly because google doesn't go beyond a 4 day forecast and my spiffy little weather carousel doesn't look very cool with just four panels. – Howard Zoopaloopa Oct 14 '09 at 3:18
I just noticed you gave the link too.. but coder was first.. gah, I hate having to decide on answers sometimes – Howard Zoopaloopa Oct 14 '09 at 3:19
feedback

Some more: Mist, Dust, Icy, Smoke, Sleet

link|improve this answer
feedback

protected by Community May 3 at 13:43

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.