如何通过GRADS获取NOAA数据?

发布于 2024-11-25 16:42:16 字数 387 浏览 1 评论 0原文

我正在尝试从 noaa 获取一些 DAP 数据,但不知道如何将变量传递给它。我看了又看,还没有找到如何用我的浏览器浏览它。数据位于 http://nomads.ncep.noaa。 gov:9090/dods/ruc/ruc20110725/ruc_f17.info(可能会变成这篇文章发表后一段时间就过时了。)

我想使用变量 timelatitudelongitude 访问 ugrd10m 变量。有什么想法需要什么网址才能做到这一点吗?

I'm trying to get some DAP data from noaa, but can't figure out how to pass variables to it. I've looked and looked and haven't found how to just poke around at it with my browser. The data is located at http://nomads.ncep.noaa.gov:9090/dods/ruc/ruc20110725/ruc_f17.info (which may become outdated some time after this post sits around.)

I want to access the ugrd10m variable with the variables time, latitude, and longitude. Any ideas what url is needed to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

你如我软肋 2024-12-02 16:42:16

根据 他们的文档,听起来你想指出你的浏览器访问如下 URL:

http://nomads.ncep.noaa.gov:9090/dods/ruc/ruc20110914/ruc_f17.ascii?ugrd10m[0:1][0:1][0:1]

这将返回 ugrd10m 值的表格前两个时间/纬度/经度点:

ugrd10m, [2][2][2]
[0][0], 9.999E20, 9.999E20
[0][1], 9.999E20, 9.999E20

[1][0], 9.999E20, 9.999E20
[1][1], 9.999E20, 9.999E20


time, [2]
734395.0, 734395.0416666666
lat, [2]
16.281, 16.46570909091
lon, [2]
-139.856603, -139.66417731424

时间/纬度/经度点的数量在 ugrd10m 的详细描述下给出数据集信息地址:

http://nomads.ncep.noaa.gov :9090/dods/ruc/ruc20110914/ruc_f17.info

时间:64 位实数数组 [时间 = 0..18]

表示有 19 个不同的时间值,索引为 0 到 18。在这种情况下,可以通过设置所有时间来检索完整的数据集最大值的范围:

http://nomads.ncep.noaa.gov:9090/dods/ruc/ruc20110914/ruc_f17.ascii?ugrd10m[0:18][0:226][0:427]

According to their documentation, it sounds like you want to point your browser at a URL like:

http://nomads.ncep.noaa.gov:9090/dods/ruc/ruc20110914/ruc_f17.ascii?ugrd10m[0:1][0:1][0:1]

That will return a table of the ugrd10m values for the first two time/lat/lon points:

ugrd10m, [2][2][2]
[0][0], 9.999E20, 9.999E20
[0][1], 9.999E20, 9.999E20

[1][0], 9.999E20, 9.999E20
[1][1], 9.999E20, 9.999E20


time, [2]
734395.0, 734395.0416666666
lat, [2]
16.281, 16.46570909091
lon, [2]
-139.856603, -139.66417731424

The number of time/lat/lon points is given under the long description of ugrd10m at the dataset info address:

http://nomads.ncep.noaa.gov:9090/dods/ruc/ruc20110914/ruc_f17.info

time: Array of 64 bit Reals [time = 0..18]

means that there are 19 different time values, at indexes 0 to 18. In this case, the complete dataset can be retrieved by setting all the ranges to the max values:

http://nomads.ncep.noaa.gov:9090/dods/ruc/ruc20110914/ruc_f17.ascii?ugrd10m[0:18][0:226][0:427]

秋意浓 2024-12-02 16:42:16

根据此参考,您可以通过以下 URL 访问数据:

http://nomads.ncep.noaa.gov:9090/dods/ruc/ruc20110914/ruc_00z.asc?ugrd10m&time=19&time=227&time=428

但是,我无法确认数据的有效性。

According to this reference, you can access data with this URL:

http://nomads.ncep.noaa.gov:9090/dods/ruc/ruc20110914/ruc_00z.asc?ugrd10m&time=19&time=227&time=428

However, I can't confirm the data's validity.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文