NoaaIsdWeather

Kim Chen 21 Reputation points
2021-07-21T08:14:21.373+00:00

Hi team,

We tried to get actual weather data via NoaaIsdWeather.
It works before.
But not returned data after 2021-05-22 now.
Could you help to check and advise.
Thanks very much.116620-noaaisdweather.png

This is a package in preview.

from azureml.opendatasets import NoaaIsdWeather

from datetime import datetime
from dateutil.relativedelta import relativedelta
import pandas as pd

end_date = datetime.today() - relativedelta(days=1)
start_date = datetime.today() - relativedelta(days=61)
print(start_date,end_date)

Get historical weather data in the past month.

isd = NoaaIsdWeather(start_date, end_date)

Read into Pandas data frame.

isd_df = isd.to_pandas_dataframe()
print(isd_df)

Azure Open Datasets
Azure Open Datasets
An Azure service that provides curated open data for machine learning workflows.
24 questions
{count} votes

Accepted answer
  1. YutongTie-MSFT 46,996 Reputation points
    2021-08-02T01:28:12.33+00:00

    Hi @Kim Chen ,

    I’ve enabled one-time Free Technical Support for you. To create the support request, please do the following:

    • Go to the Health Advisory section within the Azure Portal: https://aka.ms/healthadvisories
    • Select the Issue Name "You have been enabled for one-time Free Technical Support"
    • Details will populate below in the Summary Tab within the reading pane and you can click on the link "Create a Support Request" to the right of the message

    Let me know what your support request number is so that I can keep track of your case. If you run into any issues, feel free to let me know.

    Regards,
    Yutong


0 additional answers

Sort by: Most helpful