Weather Web Service
-
Does anybody know of a working Weather Web Service that I can use in my WPF app? I've tried numerous ones but none seem to be available when I try to add a reference to it.
-
Does anybody know of a working Weather Web Service that I can use in my WPF app? I've tried numerous ones but none seem to be available when I try to add a reference to it.
Here are a couple that i've found. http://www.nws.noaa.gov/forecasts/xml/[^] http://weather.weatherbug.com/desktop-weather/api.html[^]
Don't be overcome by evil, but overcome evil with good
-
Here are a couple that i've found. http://www.nws.noaa.gov/forecasts/xml/[^] http://weather.weatherbug.com/desktop-weather/api.html[^]
Don't be overcome by evil, but overcome evil with good
Thanks I'll try them out. I've been trying the GlobalWeather service from WebServiceX, and I get it working to display the following in a textbox: <?xml version="1.0" encoding="utf-16"?><CurrentWeather> <Location>Port Elizabeth, Port E Apt, South Africa (FAPE) 33-59S 025-36E 0M</Location> <Time>Nov 13, 2009 - 09:00 AM EST / 2009.11.13 1400 UTC</Time> <SkyConditions> mostly cloudy</SkyConditions> <Temperature> 68 F (20 C)</Temperature> <DewPoint> 55 F (13 C)</DewPoint> <RelativeHumidity> 64%</RelativeHumidity> <Pressure> 29.91 in. Hg (1013 hPa)</Pressure> <Status>Success</Status></CurrentWeather> Does all web services return information in this way or not? I'm quite new to them. If yes, how can I show this data in a more understandable format e.g. in textboxes?