Pregunta

Are there any python programs which will grab detailed data from NOAA, particularly the hourly data and the 7-day day/night forecasts?

I found python-weather-api, python-weather, and python-noaa. However they are either no longer supported or lack the data that I'd like.

If not, then I'll probably make one myself although I'd prefer not to reinvent the wheel!

¿Fue útil?

Solución

It looks like the National Digital Forecast Database (NDFD) Simple Object Access Protocol (SOAP) Web Service is what you're looking for. You can use SOAP to access NDFD XML objects and parse them with Python quite easily - no 3rd-party libraries needed. If you prefer RESTful services you can do that too.

They even have a great graphic on how SOAP requests work.

use SOAP for fun and profit

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top