5
\ begingroup美元

我一直在通过Web API提取ERA5数据。现在我正在转向CDS API。在web API中,我使用下面的代码来下载特定纬度/时间的时间序列数据。在CDS API中,我找不到与“ct.geo.extract_point()”等效的。有等价物吗?如果没有,有没有办法区域关键字可以调整来服务的目的吗?

import cdstoolbox as ct @ct.application(title='Data') @ct.output.download() def retrieve_sample_data(): """应用程序主要步骤:-从CDS目录检索变量-生成下载它的链接。""" data = ct.catalog。检索( 'reanalysis-era5-single-levels', { 'variable': 'peak_wave_period', 'product_type': 'reanalysis', 'year': '1991', 'month': [ '01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12' ], 'day': [ '01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30', '31' ], 'time': ['00:00', '03:00', '06:00', '09:00', '12:00', '15:00', '18:00', '21:00' ], } ) data_se = ct.geo.extract_point(data, lon=80.5, lat=12) return data_se' ' '
\ endgroup美元
1
  • \ begingroup美元 欢迎来到地球科学!我会用区域关键字,正如你上面建议的。然而,我不是CDI API的专家。对于不熟悉的用法的读者区域在召唤中检索请参阅本页的例子1:confluence.ecmwf.int /显示/ CKB /… \ endgroup美元
    - - - - - -daniel.heydebreck
    2019年12月13日14:15

0

你的答案

点击“张贴您的答案”,即表示您同意我们的服务条款隐私政策而且饼干的政策

浏览带标签的其他问题问自己的问题