-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathget_era5.py
executable file
·113 lines (97 loc) · 3.17 KB
/
get_era5.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
#!/usr/bin/env python
#====================== DOCSTRING ============================
"""
Download ERA5 ECMWF 2D forcing fields for NEMO bulk formulation
You need to have an account on CDS,
https://cds.climate.copernicus.eu/cdsapp#!/dataset/reanalysis-era5-single-levels?tab=form
You will nee to install the python package and add your security key
https://cds.climate.copernicus.eu/api-how-to
--------------------------------------------------------------
"""
__author__ = "Nicolas Bruneau"
__copyright__ = "Copyright 2017, National Oceanography Centre (NOC)"
__version__ = "1.0.1"
__maintainer__ = "Nicolas Bruneau"
__email__ = "[email protected]"
__status__ = "Development"
__date__ = "2019-02"
#====================== LOAD MODULES =========================
import os
import numpy as np
import cdsapi
import config
#===================== USER PARAMETERS =======================
YEAR_0 = config.y0 # Initial year
YEAR_1 = config.y1 # Final year
VAR_INST = config.var_list # Variables to process
out_path = config.raw_path # Path for saving data
LSM = False # Get LSM
#======================= CORE CODE ===========================
## Initiate connection to server
server = cdsapi.Client()
# LOOP OVER YEARS
for iY in range( YEAR_0, YEAR_1+1 ) :
## LOOP OVER SURFACE INSTANTANEOUS VARIABLES
for nV, kV in enumerate(VAR_INST.keys()) :
directory = "{0}/ERA5/SURFACE_FORCING/{1}".format(out_path,kV)
if not os.path.exists( directory ): os.makedirs( directory )
fname = "{0}/{2}_{1}.nc".format( directory, kV, iY )
fname2 = "{0}/{2}_{1}.nsddsdsc".format( directory, kV, iY )
if not os.path.exists( fname2 ) :
server.retrieve(
'reanalysis-era5-single-levels',
{
'product_type':'reanalysis',
'format':'netcdf',
'variable':[
kV,
],
'year':'{0}'.format( iY ),
'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','01:00','02:00',
'03:00','04:00','05:00',
'06:00','07:00','08:00',
'09:00','10:00','11:00',
'12:00','13:00','14:00',
'15:00','16:00','17:00',
'18:00','19:00','20:00',
'21:00','22:00','23:00'
]
},
'{0}'.format( fname ) )
if LSM:
# get land-sea mask
server.retrieve(
'reanalysis-era5-single-levels',
{
'product_type': 'reanalysis',
'format': 'netcdf',
'variable': 'land_sea_mask',
'time': '00:00',
'day': '01',
'month': '01',
'year': '2004',
},
outpath + 'ERA5_LSM_20040101.nc')
# future option
# to add lat-lon extent
# 'area':['75', '-15', '30', '42.5'],