I want to get the current weather conditions from the NOAA. I know they have a SOAP web service that can be used to get weather forecasts and XML files for current weather conditions for each of their weather stations. I could just use the XML file for the weather station nearest to where I want, but there doesn't seem to be an easy way to search for the proper xml file by zipcode. Is there a simple way to get current weather conditions by zipcode from the NOAA?
feedback
|
|
NOAA is not the only weather feed on the interwebs.... here is a website that has a partial list. NOAA operates from Lat/Lon not Zipcode. If you are set on using NOAA, you would have to use a diff webservice (such as GeoNames ) to get the lat/lon of your zip, then feed the result to the NOAA service. NOAA's current conditons are available via XML/RSS feeds, you just have to know the code for the weather station you want.... http://www.weather.gov/xml/current_obs/CodeForTheStationYouWant.xml I found this article that should help you out. | |||||||||||
feedback
|
|
I found a link to an rss feed that lists all of the stations by lat/lon. I should be able to use this to find the correct station: weather.gov/xml/current_obs/index.xml I can then use this to pick the right xml based on zipcode once I get the lat/log for the specified zipcode. | |||
|
feedback
|
|
The NOAA webservice now includes a LatLonListZipCode() method that you can use to get the latitude and longitude for a given zip code. Here is an F# 3.0 script demonstrating how to use this method to get a location and then get the forecast for that location:
| |||
|
feedback
|