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?

link|improve this question

59% accept rate
What part of this page confused you? nws.noaa.gov/xml It helps to ask specific questions focused on specific things you didn't understand. Are you having trouble with translating a zip code to latitude and longitude? – S.Lott Mar 23 '10 at 18:02
No. I want to get the current weather conditions for a given location (zipcode, lat/lon, etc) from the NOAA. From what I can tell the web service provides only forecasts. They do have current forecasts provided in xml files, but without using their website, there is no easy way to get the right feed for the right location. – Brian Mar 23 '10 at 18:11
Are you asking for the product they call "Current Observations"? weather.gov/xml/current_obs – S.Lott Mar 23 '10 at 18:27
Yes, I am aware of this as I stated before, but how would you suggest finding the proper xml file for a specific location without using their website? I need to do this from my own application. – Brian Mar 23 '10 at 18:37
"finding the proper xml file for a specific location without using their website"? I don't understand this. Are you trying to avoid using weather.gov/xml/current_obs/seek.php?state=va&Find=Find to lookup the station identifier? Why? Just look it up. – S.Lott Mar 23 '10 at 18:58
feedback

3 Answers

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.

link|improve this answer
Thank you for the response. I would like to use NOAA if possible. Needing to use lat/lon or zipcode is not relevant. The point is to be able to get the current weather conditions based on a specified location, whether it be lat/lon or zipcode. Feeding in the lat/lon into the SOAP web service still only gets the forcast, not the current conditions. – Brian Mar 23 '10 at 18:06
they do have XML and RSS feeds of the current conditions. you could grab those, here is thier link: nws.noaa.gov/xml/current_obs but you already know that – Muad'Dib Mar 23 '10 at 18:20
Yes, I am aware of this as I stated before, but how would you suggest finding the proper xml file for a specific location without using their website? I need to do this from my own application. – Brian Mar 23 '10 at 18:36
1  
ok 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 – Brian Mar 23 '10 at 18:40
feedback
up vote 0 down vote accepted

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.

link|improve this answer
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:

#r "System.ServiceModel.dll"
#r "System.Runtime.Serialization.dll"
#r "System.Configuration.dll"
#r "System.Xml.Linq.dll"
//Download this library in the example code on this blog post
//http://eclectrics.com/software/2009/08/consuming-ndfd-web-services-from-a-c-client/
//This library decodes web service responses encoded as ISO-8859-1
#r @"..\Libs\StmEncoderLibrary.dll"
#r "FSharp.Data.TypeProviders.dll"

open System
open System.ServiceModel
open System.ServiceModel.Channels
open Microsoft.FSharp.Linq
open Microsoft.FSharp.Data.TypeProviders
open StmEncoderLibrary
open System.IO
open System.Diagnostics
open System.Linq
open System.Xml.Linq

type NationalDigitalForecastDatabase = WsdlService<"http://graphical.weather.gov/xml/DWMLgen/wsdl/ndfdXML.wsdl">

//Connect to the National Digital Forecast Database
let Client =

    let encoderBindingExtension = new StmEncoderBindingElementExtensionElement(Encoding = "ISO-8859-1", MessageVersion = MessageVersion.Soap11)
    let encoderBinding = new StmEncoderBindingElement()
    encoderBindingExtension.ApplyConfiguration(encoderBinding)

    let bindingElements : BindingElement array = [|encoderBinding; new HttpTransportBindingElement()|]
    let binding = new CustomBinding(bindingElements)

    let client = NationalDigitalForecastDatabase.GetndfdXMLPort()
    client.DataContext.Endpoint.Binding <- binding
    client

//Function to display the response XML in the system's XML editor
let ShowResponse(response) =

    let path = Path.Combine(Path.GetTempPath(), "Response.xml")
    File.WriteAllText(path, response)

    Process.Start(path)

//Function to get the latitude and longitude for a zip code
let GetLocationForZipCode(zipCode) =
    let response = Client.LatLonListZipCode(zipCode)
    let document = XDocument.Parse(response)
    let latLonList = document.Root.Elements().First().Value
    let segments = latLonList.Split([|','|])
    let latitude = Decimal.Parse(segments.[0])
    let longitude = Decimal.Parse(segments.[1])
    latitude, longitude

//get the zip code for Billings Montana
let latitude, longitude = GetLocationForZipCode("59102")

//Get the weather forecast for Billings
let unit = NationalDigitalForecastDatabase.ServiceTypes.unitType.m
let weatherParameters = new NationalDigitalForecastDatabase.ServiceTypes.weatherParametersType(iceaccum = true, cumw64 = true, conhazo = true)
let startDate = DateTime.Now
let endDate = DateTime.Now.AddDays(2.0)
let productType = NationalDigitalForecastDatabase.ServiceTypes.productType.glance
let response = Client.NDFDgen(latitude, longitude, productType, startDate, endDate, unit, weatherParameters)

//Show the response XML
ShowResponse response
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.