3

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?

Brian Tompsett - 汤莱恩
  • 5,753
  • 72
  • 57
  • 129
McDizzy
  • 189
  • 11

2 Answers2

1

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/

user9396820
  • 135
  • 8
  • Your answer could be improved with additional supporting information. Please [edit] to add further details, such as citations or documentation, so that others can confirm that your answer is correct. You can find more information on how to write good answers [in the help center](/help/how-to-answer). – Community Nov 30 '21 at 15:58
0

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).

jeremyh
  • 5,233
  • 3
  • 23
  • 19