Climate Data Store (CDS) 접속 및 로그인
원하는 product 찾기 → “Download” → 옵션 선택
(예시 1) https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels?tab=overview
(예시 2) https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels-monthly-means?tab=overview
맨 밑에 “Submit Form” 활성화되면 클릭. 에러 날 수 있는데 계속 리트라이하면 되더라.
데이터 용량 따라 다를 수도 있겠는데, montly 2012년-2023년 동중국해 범위 u, v 자료가 proceeding 되는데 1분 안 걸린 것 같음. 아래 화면에서 “Status”가 complete 뜰 때가지 기다리면 됨.
Climate Data Store Toolbox for MATLAB
아래 링크는 ERA5 hourly data on single levels from 1940 to present 에 대한 것임.
[ERA5 hourly data on single levels from 1940 to present](<https://cds.climate.copernicus.eu/datasets/reanalysis-era5-single-levels?tab=download>)
New link.
[Copernicus Climate Data Store | Copernicus Climate Data Store](<https://cds.climate.copernicus.eu/cdsapp#!/dataset/reanalysis-era5-single-levels?tab=form>)
Old link. 폐쇄됨.
맨 밑에 “show Toolbox request” 클릭 + 코드 복사하기
상단에 Toolbox 클릭
Toolbox Editor 클릭
your workspace에 새로운 항목 만들기
코드 붙여넣고 Run 클릭하기
import cdstoolbox as ct
@ct.application(title='Download data')
@ct.output.download()
def download_application():
data = ct.catalogue.retrieve(
'reanalysis-era5-single-levels',
{
'product_type': 'reanalysis',
'variable': [
'10m_u_component_of_wind',
],
'year': '2023',
'month': '12',
'day': '30',
'time': [
'00:00', '23:00',
],
'area': [
35, 122, 34,
123,
],
}
)
return data