Weather Underground

I’ve been looking at the Weather Underground API (http://wiki.wunderground.com/index.php/API_-_XML) which gives access to the observation stations and the data they are collecting. The API uses simple commands to query for a list of stations, for example: http://api.wunderground.com/auto/wui/geo/GeoLookupXML/index.xml?query=london,united+kingdom Using C# and .net, this is accomplished as follows: WebRequest request = WebRequest.Create(string.Format(GeoLookupXML, @”london,united+kingdom”)); HttpWebResponse response = (HttpWebResponse)request.GetResponse(); XmlDocument […]

Continue reading »
1 2 3