-
Notifications
You must be signed in to change notification settings - Fork 3
/
vpts-csv-table-schema.json
265 lines (265 loc) · 7 KB
/
vpts-csv-table-schema.json
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
{
"title": "Fields",
"fields": [
{
"name": "radar",
"description": "Radar identifier.",
"type": "string",
"example": "KBGM",
"constraints": {
"required": true
}
},
{
"name": "datetime",
"description": "Nominal date and time of the measurement, as an ISO 8601 formatted string in UTC.",
"type": "datetime",
"format": "%Y-%m-%dT%H:%M:%SZ",
"example": "2016-09-01T00:02:00Z",
"constraints": {
"required": true
}
},
{
"name": "height",
"nameAlternatives": ["HGHT", "bin_lower"],
"description": "Lower bound of the altitude bin in m above sea level.",
"type": "integer",
"example": "600",
"constraints": {
"required": true,
"minimum": -200,
"maximum": 25000
}
},
{
"name": "u",
"description": "Ground speed component west to east in m/s.",
"type": "number",
"example": "4.14",
"constraints": {
"minimum": -100,
"maximum": 100
}
},
{
"name": "v",
"description": "Ground speed component south to north in m/s.",
"type": "number",
"example": "3.84",
"constraints": {
"minimum": -100,
"maximum": 100
}
},
{
"name": "w",
"description": "Vertical speed in m/s.",
"type": "number",
"example": "12.17"
},
{
"name": "ff",
"nameAlternatives": "speed",
"description": "Horizontal ground speed in m/s.",
"type": "number",
"example": "5.65",
"constraints": {
"minimum": 0,
"maximum": 100
}
},
{
"name": "dd",
"nameAlternatives": "direction",
"description": "Ground speed direction in degrees clockwise from north.",
"type": "number",
"example": "47.2",
"constraints": {
"minimum": 0,
"maximum": 360
}
},
{
"name": "sd_vvp",
"nameAlternatives": "rmse",
"description": "VVP radial velocity standard deviation in m/s.",
"type": "number",
"example": "2.8",
"constraints": {
"minimum": 0,
"maximum": 100
}
},
{
"name": "gap",
"description": "Angular data gap detected.",
"type": "boolean",
"example": "FALSE"
},
{
"name": "eta",
"nameAlternatives": "linear_eta",
"description": "Animal reflectivity in cm^2/km^3.",
"example": "46.9",
"type": "number",
"constraints": {
"minimum": 0,
"maximum": "Inf"
}
},
{
"name": "dens",
"description": "Animal density in animals/km^3.",
"type": "number",
"example": "4.263636363636364",
"constraints": {
"minimum": 0,
"maximum": "Inf"
}
},
{
"name": "dbz",
"description": "Animal reflectivity factor in dBZ.",
"type": "number",
"example": "3.36",
"constraints": {
"minimum": "-Inf",
"maximum": 100
}
},
{
"name": "dbz_all",
"nameAlternatives": "DBZH",
"description": "Total reflectivity factor (bio + meteo scattering) in dBZ.",
"type": "number",
"example": "0.5",
"constraints": {
"minimum": "-Inf",
"maximum": 100
}
},
{
"name": "n",
"description": "Number of data points used for the ground speed estimates (quantities `u`, `v`, `w`, `ff`, `dd`).",
"type": "integer",
"example": "9006",
"constraints": {
"minimum": 0
}
},
{
"name": "n_dbz",
"description": "Number of data points used for reflectivity-based estimates (quantities `dbz`, `eta`, `dens`).",
"type": "integer",
"example": "13442",
"constraints": {
"minimum": 0
}
},
{
"name": "n_all",
"description": "Number of data points used for the radial velocity standard deviation estimate (quantity `sd_vvp`).",
"type": "integer",
"example": "65947",
"constraints": {
"minimum": 0
}
},
{
"name": "n_dbz_all",
"nameAlternatives": "nbins",
"description": "Number of data points used for the total reflectivity estimate (quantity `dbz_all`).",
"type": "integer",
"example": "104455",
"constraints": {
"minimum": 0
}
},
{
"name": "rcs",
"description": "Radar cross section per bird in cm^2.",
"type": "number",
"example": "11",
"constraints": {
"minimum": 1e-15,
"maximum": "Inf"
}
},
{
"name": "sd_vvp_threshold",
"description": "Lower threshold in radial velocity standard deviation (profile quantity `sd_vvp`) in m/s. Biological signals with `sd_vvp < sd_vvp_threshold` are set to zero. Defaults to 2 m/s for C-band radars and 1 m/s for S-band radars if not specified.",
"type": "number",
"example": "2",
"constraints": {
"minimum": 0,
"maximum": 100
}
},
{
"name": "vcp",
"nameAlternatives": "scan_strategy",
"description": "Volume coverage pattern, unitless. Documented on [Wikipedia](https://en.wikipedia.org/wiki/NEXRAD#Scan_strategies) for NEXRAD.",
"type": "integer",
"example": ""
},
{
"name": "radar_latitude",
"description": "Latitude of the radar location in decimal degrees, using the WGS84 datum. Constant for all records from the same `radar`.",
"type": "number",
"example": "42.19972",
"constraints": {
"required": true,
"minimum": -90,
"maximum": 90
}
},
{
"name": "radar_longitude",
"description": "Longitude of the radar location in decimal degrees, using the WGS84 datum. Constant for all records from the same `radar`.",
"type": "number",
"example": "-75.98472",
"constraints": {
"required": true,
"minimum": -180,
"maximum": 180
}
},
{
"name": "radar_height",
"description": "Height of the center of the radar antenna in m above sea level. Constant for all records from the same `radar`.",
"type": "integer",
"example": "519",
"constraints": {
"required": true,
"minimum": -200,
"maximum": 9000
}
},
{
"name": "radar_wavelength",
"description": "Wavelength of the radar in cm. Constant for all records from the same `radar`. Most C-band radars operate at approximately 5.3 cm wavelength, most S-band radars at 10.6 cm.",
"type": "number",
"example": "10.6",
"constraints": {
"required": true,
"minimum": 0.1,
"maximum": 100
}
},
{
"name": "source_file",
"description": "URL or path to the source file from which the data were derived.",
"type": "string",
"example": "s3://noaa-nexrad-level2/2016/09/01/KBGM/KBGM20160901_000212_V06",
"constraints": {
"pattern": "^(?=^[^./~])(^((?!\\.{2}).)*$).*$"
}
}
],
"missingValues": [
"",
"NA",
"NaN"
]
}