Since I am writing my own weather station software having a comprehensive list of possible icons is very important to me.
Some of these icons may not be able to be calculated but having it in the list is important.
Some may seem odd such as Night Sun, but some parts of the world have day light even during the night.
If there are some missing ones please let me know.
public enum WeatherIcon
{
Unknown,
Sunrise,
Sunset,
DaySunny,
DayPartlySunny,
DayPartlyCloudy,
DayCloudy,
DayOvercast,
DayDrizzle,
DayFrost,
DayShowers,
DaySleet,
DaySleetAndShowers,
DaySnow,
DaySnowStopped,
DaySnowMelt,
DayRain,
DayHeavyRain,
DayWindyRain,
DayWindyHeavyRain,
DayStoppedRaining,
DayStorm,
DayLighting,
DayThunderShowers,
DayThunderStorm,
DayTornado,
DayHurricane,
DayWindy,
DayHumid,
DayFog,
DayMist,
DayHaze,
NightClear,
NightSunny,
NightPartlySunny,
NightPartlyCloudy,
NightCloudy,
NightOvercast,
NightDrizzle,
NightFrost,
NightShowers,
NightSleet,
NightSleetAndShowers,
NightSnow,
NightSnowStopped,
NightRain,
NightHeavyRain,
NightWindyRain,
NightWindyHeavyRain,
NightStoppedRaining,
NightStorm,
NightLighting,
NightThunderShowers,
NightThunderStorm,
NightTornado,
NightHurricane,
NightWindy,
NightHumid,
NightFog,
NightMist,
NightHaze
}
chris