-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathIODA2NCConfig_default
139 lines (113 loc) · 3.25 KB
/
IODA2NCConfig_default
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
////////////////////////////////////////////////////////////////////////////////
//
// IODA2NC configuration file.
//
// For additional information, please see the MET User's Guide.
//
////////////////////////////////////////////////////////////////////////////////
//
// IODA message type
//
message_type = [];
//
// Mapping of message type group name to comma-separated list of values
// Derive PRMSL only for SURFACE message types
//
message_type_group_map = [];
//
// Mapping of input IODA message types to output message types
//
message_type_map = [];
//
// IODA station ID
//
station_id = [];
////////////////////////////////////////////////////////////////////////////////
//
// Observation time window
//
obs_window = {
beg = -5400;
end = 5400;
}
////////////////////////////////////////////////////////////////////////////////
//
// Observation retention regions
//
mask = {
grid = "";
poly = "";
}
////////////////////////////////////////////////////////////////////////////////
//
// Observing location elevation
//
elevation_range = {
beg = -1000;
end = 100000;
}
////////////////////////////////////////////////////////////////////////////////
//
// Vertical levels to retain
//
level_range = {
beg = 1;
end = 255;
}
///////////////////////////////////////////////////////////////////////////////
//
// IODA variable names to retain or derive.
// Use obs_bufr_map to rename variables in the output.
// If empty or 'all', process all available variables.
//
obs_var = [];
////////////////////////////////////////////////////////////////////////////////
//
// Mapping of input IODA variable names to output variables names.
// The default IODA map, obs_var_map, is appended to this map.
//
obs_name_map = [];
//
// Default mapping for Metadata.
//
metadata_map = [
{ key = "message_type"; val = "msg_type,station_ob"; },
{ key = "station_id"; val = "station_id,report_identifier"; },
{ key = "pressure"; val = "air_pressure,pressure"; },
{ key = "height"; val = "height,height_above_mean_sea_level"; },
{ key = "datetime"; val = "datetime,dateTime"; },
{ key = "elevation"; val = "elevation,station_elevation"; }
];
//
// Default mapping for obs to qc.
//
obs_to_qc_map = [
{ key = "wind_from_direction"; val = "eastward_wind,northward_wind"; },
{ key = "wind_speed"; val = "eastward_wind,northward_wind"; }
];
missing_thresh = [ <=-1e9, >=1e9, ==-9999 ];
////////////////////////////////////////////////////////////////////////////////
quality_mark_thresh = 0;
////////////////////////////////////////////////////////////////////////////////
//
// Time periods for the summarization
// obs_var (string array) is added and works like grib_code (int array)
// when use_var_id is enabled and variable names are saved.
//
time_summary = {
flag = FALSE;
raw_data = FALSE;
beg = "000000";
end = "235959";
step = 300;
width = 600;
grib_code = [];
obs_var = [ "TMP", "WDIR", "RH" ];
type = [ "min", "max", "range", "mean", "stdev", "median", "p80", "sum" ];
vld_freq = 0;
vld_thresh = 0.0;
}
////////////////////////////////////////////////////////////////////////////////
tmp_dir = "/tmp";
version = "V11.1.0";
////////////////////////////////////////////////////////////////////////////////