Newer
Older
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
#
# get ?h-analysis for instantaneous 3D fields (T, Q, U, V)
#
# GRIB PARAMETERS DATABASE: https://codes.ecmwf.int/grib/param-db/
# MARS/MIR INTERPOLATION: https://confluence.ecmwf.int/display/UDOC/MARS+interpolation+with+MIR
retrieve,
# INSTANT / MEAN
stream = oper,
#stream = moda,
# MODEL
expver = 0001,
# IFS
#class = od,
# ERAI
#class = ei,
# ERA5
class = ea,
# VARIABLES: T, Q, U, V
param = 130.128/133.128/131.128/132.128,
# VERTICAL GRID
# ERA5: https://confluence.ecmwf.int/display/UDOC/L91+model+level+definitions
# IFS/ERA5: https://confluence.ecmwf.int/display/UDOC/L137+model+level+definitions
# http://www.ecmwf.int/en/forecasts/documentation-and-suppor/correspondence-between-l91-and-l137-model-levels
levtype = ml,
#levelist = 1/to/60 , # L60 : -> 2006/02/01 00:00 + ERAI
#levelist = 44/to/60 , # L60 : level 44 correspond to ~3100 m
#levelist = 71/to/91 , # L91 : 2006/02/01 06:00 -> 2013/06/25 00:00
levelist = 107/to/137, # L137: 2013/06/25 06:00 -> ongoing + ERA5
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
# TIME
type = an,
date = date_req,
# monthly mean
#date = year0101/year0201/year0301/year0401/year0501/year0601/year0701/year0801/year0901/year1001/year1101/year1201,
# IFS & ERAI
#time = 00/to/18/by/6,
# ERA5
time = 00/to/23/by/1,
# SPECTRAL GRID
#truncation = NONE,
truncation = AUTO,
#resol = AV,
# ERAI (T255)
#intgrid = N128,
# ERA5 (T639)
#intgrid = N320,
intgrid = NONE,
# HORIZONTAL GRID
#grid = 0.125/0.125,
#grid = 0.25/0.25,
#grid = 0.75/0.75,
#grid = F640,
# ERAI (N128)
#grid = F128,
# ERA5 (N320)
grid = N320,
# INTERPOLATION METHOD ( linear (default) / bilinear / nearest_neighbour )
# https://confluence.ecmwf.int/display/UDOC/Interpolation%20of%20LSM%20and%20SST
# https://confluence.ecmwf.int/pages/viewpage.action?pageId=153389795
#interpolation = bilinear,
# AREA SELECTION (COMMENT ALL FOR GLOBAL)
# NEATL
#area = 65/-21/25/18,
# PAPA
#area = 50.25/215/50/215.25,
# CUBA
#area = 7.70/262.0/31.0/296.0,
# NANUK
#area = 35./0./90./360.,
target = "dir_out/inst3D_L107-137_ERA5_GLO_TL[truncation]_IG[intgrid]_G[grid]_ana01h_[date].grib"
#target = "dir_out/inst3D_L107-137_ERA5_NANUK_TL[truncation]_IG[intgrid]_G[grid]_ana01h_[date].grib"