From 04131bd9206737b3bfaeceb07f91c82e95effbf7 Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Sun, 11 Mar 2007 23:34:39 +0000 Subject: [PATCH] add just regular old Cloudy to the list of Weather conditions --- lib/WebGUI/Asset/Wobject/WeatherData.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/WebGUI/Asset/Wobject/WeatherData.pm b/lib/WebGUI/Asset/Wobject/WeatherData.pm index baa26360a..ba78c6e69 100644 --- a/lib/WebGUI/Asset/Wobject/WeatherData.pm +++ b/lib/WebGUI/Asset/Wobject/WeatherData.pm @@ -89,7 +89,7 @@ largely from http://www.weather.gov/data/current_obs/weather.php my %weatherConditionsIconHash = ( (map{$_ => 'unknown'} ('', 'N/A', 'NULL')), - (map{$_ => 'bkn'} ('Mostly Cloudy','Mostly Cloudy with Haze','Mostly Cloudy and Breezy')), + (map{$_ => 'bkn'} ('Cloudy','Mostly Cloudy','Mostly Cloudy with Haze','Mostly Cloudy and Breezy')), (map{$_ => 'skc'} ('Fair','Clear','Fair with Haze','Clear with Haze','Fair and Breezy','Clear and Breezy')), (map{$_ => 'few'} ('A Few Clouds','A Few Clouds with Haze','A Few Clouds and Breezy')), (map{$_ => 'sct'} ('Partly Cloudy','Party Cloudy with Haze','Partly Cloudy and Breezy')),