How do I get access to the noaa rest api of the gfs data

2.4k Views Asked by At

I am interested in getting the GFS forecast data for Europe which is available for free from the following website: https://www.ncdc.noaa.gov/data-access/model-data/model-datasets/global-forcast-system-gfs

According this site NOAA provides rest APIs for data access. I want to get access to the GFS 004 (0.5º) data (from here, but how do I know the dataset name (which is described as dataset parameter)?

Or is there another way to get access to the GFS data over API?

2

There are 2 best solutions below

1
user9396820 On

You can use other services that give you access to GFS data.

This one for example gives you access to GFS and more:

https://weacast.github.io/weacast-docs/

0
jeremyh On

The GFS data is now freely available on Amazon AWS S3 under NOAA's Open Data Dissemination Program: https://registry.opendata.aws/noaa-gfs-bdp-pds/

You can see all the publicly available datasets here: https://www.noaa.gov/nodd/datasets

You could write a simple API style query to pull the data down programmatically from AWS or use one of the libraries like boto3 (python).