pyadps 0.2.0b0__py3-none-any.whl → 0.3.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pyadps/Home_Page.py +11 -5
- pyadps/pages/01_Read_File.py +623 -211
- pyadps/pages/02_View_Raw_Data.py +97 -41
- pyadps/pages/03_Download_Raw_File.py +200 -67
- pyadps/pages/04_Sensor_Health.py +905 -0
- pyadps/pages/05_QC_Test.py +493 -0
- pyadps/pages/06_Profile_Test.py +971 -0
- pyadps/pages/07_Velocity_Test.py +600 -0
- pyadps/pages/08_Write_File.py +623 -0
- pyadps/pages/09_Add-Ons.py +168 -0
- pyadps/utils/__init__.py +5 -3
- pyadps/utils/autoprocess.py +371 -80
- pyadps/utils/logging_utils.py +269 -0
- pyadps/utils/metadata/config.ini +22 -4
- pyadps/utils/metadata/demo.000 +0 -0
- pyadps/utils/metadata/flmeta.json +420 -420
- pyadps/utils/metadata/vlmeta.json +611 -565
- pyadps/utils/multifile.py +292 -0
- pyadps/utils/plotgen.py +505 -3
- pyadps/utils/profile_test.py +720 -125
- pyadps/utils/pyreadrdi.py +164 -92
- pyadps/utils/readrdi.py +436 -186
- pyadps/utils/script.py +197 -147
- pyadps/utils/sensor_health.py +120 -0
- pyadps/utils/signal_quality.py +472 -68
- pyadps/utils/velocity_test.py +79 -31
- pyadps/utils/writenc.py +222 -39
- {pyadps-0.2.0b0.dist-info → pyadps-0.3.0.dist-info}/METADATA +63 -33
- pyadps-0.3.0.dist-info/RECORD +35 -0
- {pyadps-0.2.0b0.dist-info → pyadps-0.3.0.dist-info}/WHEEL +1 -1
- {pyadps-0.2.0b0.dist-info → pyadps-0.3.0.dist-info}/entry_points.txt +1 -0
- pyadps/pages/04_QC_Test.py +0 -334
- pyadps/pages/05_Profile_Test.py +0 -575
- pyadps/pages/06_Velocity_Test.py +0 -341
- pyadps/pages/07_Write_File.py +0 -452
- pyadps/utils/cutbin.py +0 -413
- pyadps/utils/regrid.py +0 -279
- pyadps-0.2.0b0.dist-info/RECORD +0 -31
- {pyadps-0.2.0b0.dist-info → pyadps-0.3.0.dist-info}/LICENSE +0 -0
@@ -1,422 +1,422 @@
|
|
1
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
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
2
|
+
"cpu_version": {
|
3
|
+
"index": 1,
|
4
|
+
"unit": "",
|
5
|
+
"scale": 1,
|
6
|
+
"byte": 1,
|
7
|
+
"type": "uint8",
|
8
|
+
"command": "",
|
9
|
+
"valid_min": "",
|
10
|
+
"valid_max": "",
|
11
|
+
"long_name": "CPU Version",
|
12
|
+
"description": "Contains the version number of the CPU firmware."
|
13
|
+
},
|
14
|
+
"cpu_revision": {
|
15
|
+
"index": 2,
|
16
|
+
"unit": "",
|
17
|
+
"scale": 1,
|
18
|
+
"byte": 1,
|
19
|
+
"type": "uint8",
|
20
|
+
"command": "",
|
21
|
+
"valid_min": "",
|
22
|
+
"valid_max": "",
|
23
|
+
"long_name": "CPU Revision",
|
24
|
+
"description": "Contains the revision number of the CPU firmware."
|
25
|
+
},
|
26
|
+
"system_config_code": {
|
27
|
+
"index": 3,
|
28
|
+
"unit": "",
|
29
|
+
"scale": 1,
|
30
|
+
"byte": 2,
|
31
|
+
"type": "uint16",
|
32
|
+
"command": "",
|
33
|
+
"valid_min": "",
|
34
|
+
"valid_max": "",
|
35
|
+
"long_name": "System Config Code",
|
36
|
+
"description": "This field defines the WorkHorse ADCP hardware configuration. Check RDI manual for details."
|
37
|
+
},
|
38
|
+
"real_flag": {
|
39
|
+
"index": 4,
|
40
|
+
"unit": "",
|
41
|
+
"scale": 1,
|
42
|
+
"byte": 1,
|
43
|
+
"type": "uint8",
|
44
|
+
"command": "PD",
|
45
|
+
"valid_min": "",
|
46
|
+
"valid_max": "",
|
47
|
+
"long_name": "Real Flag",
|
48
|
+
"description": "This field is set by default as real data (0)."
|
49
|
+
},
|
50
|
+
"lag_length": {
|
51
|
+
"index": 5,
|
52
|
+
"unit": "",
|
53
|
+
"scale": 1,
|
54
|
+
"byte": 1,
|
55
|
+
"type": "uint8",
|
56
|
+
"command": "",
|
57
|
+
"valid_min": "",
|
58
|
+
"valid_max": "",
|
59
|
+
"long_name": "Lag Length",
|
60
|
+
"description": "The lag length is the time period between sound pulses. This is varied, and therefore of interest in, at a minimum, for the WM5, WM8 and WM11 and BM7 commands."
|
61
|
+
},
|
62
|
+
"beams": {
|
63
|
+
"index": 6,
|
64
|
+
"unit": "",
|
65
|
+
"scale": 1,
|
66
|
+
"byte": 1,
|
67
|
+
"type": "uint8",
|
68
|
+
"command": "",
|
69
|
+
"valid_min": "",
|
70
|
+
"valid_max": "",
|
71
|
+
"long_name": "Beams",
|
72
|
+
"description": "Contains the number of beams used to calculate velocity data (not physical beams). The WorkHorse ADCP needs only three beams to calculate water-current velocities. The fourth beam provides an error velocity that determines data validity. If only three beams are available, the WorkHorse ADCP does not make this validity check."
|
73
|
+
},
|
74
|
+
"cells": {
|
75
|
+
"index": 7,
|
76
|
+
"unit": "",
|
77
|
+
"scale": 1,
|
78
|
+
"byte": 2,
|
79
|
+
"type": "uint16",
|
80
|
+
"command": "WN",
|
81
|
+
"valid_min": "1",
|
82
|
+
"valid_max": "255",
|
83
|
+
"long_name": "Cells",
|
84
|
+
"description": "Contains the number of depth cells over which the WorkHorse ADCP collects data"
|
85
|
+
},
|
86
|
+
"pings": {
|
87
|
+
"index": 8,
|
88
|
+
"unit": "",
|
89
|
+
"scale": 1,
|
90
|
+
"byte": 2,
|
91
|
+
"type": "uint16",
|
92
|
+
"command": "WP",
|
93
|
+
"valid_min": "0",
|
94
|
+
"valid_max": "16384",
|
95
|
+
"long_name": "Pings",
|
96
|
+
"description": "Contains the number of pings averaged together during a data ensemble (WP command). If WP = 0, the WorkHorse ADCP does not collect the WD water-profile data "
|
97
|
+
},
|
98
|
+
"depth_cell_len": {
|
99
|
+
"index": 9,
|
100
|
+
"unit": "cm",
|
101
|
+
"scale": 1,
|
102
|
+
"byte": 2,
|
103
|
+
"type": "uint16",
|
104
|
+
"command": "WS",
|
105
|
+
"valid_min": "1",
|
106
|
+
"valid_max": "6400",
|
107
|
+
"long_name": "Depth Cell Len",
|
108
|
+
"description": "Contains the length of one depth cell"
|
109
|
+
},
|
110
|
+
"blank_transmit": {
|
111
|
+
"index": 10,
|
112
|
+
"unit": "cm",
|
113
|
+
"scale": 1,
|
114
|
+
"byte": 2,
|
115
|
+
"type": "uint16",
|
116
|
+
"command": "WF",
|
117
|
+
"valid_min": "0",
|
118
|
+
"valid_max": "9999",
|
119
|
+
"long_name": "Blank Transmit",
|
120
|
+
"description": "Contains the blanking distance used by the WorkHorse ADCP to allow the transmit circuits time to recover before the receive cycle begins (WF command)."
|
121
|
+
},
|
122
|
+
"signal_mode": {
|
123
|
+
"index": 11,
|
124
|
+
"unit": "",
|
125
|
+
"scale": 1,
|
126
|
+
"byte": 1,
|
127
|
+
"type": "uint8",
|
128
|
+
"command": "",
|
129
|
+
"valid_min": "",
|
130
|
+
"valid_max": "",
|
131
|
+
"long_name": "Signal Mode",
|
132
|
+
"description": "Contains the Signal Processing Mode. This field will always be set to 1."
|
133
|
+
},
|
134
|
+
"correlation_thresh": {
|
135
|
+
"index": 12,
|
136
|
+
"unit": "",
|
137
|
+
"scale": 1,
|
138
|
+
"byte": 1,
|
139
|
+
"type": "uint8",
|
140
|
+
"command": "WC",
|
141
|
+
"valid_min": "0",
|
142
|
+
"valid_max": "255",
|
143
|
+
"long_name": "Correlation Thresh",
|
144
|
+
"description": "Contains the minimum threshold of correlation that water-profile data can have to be considered good data (WC command)"
|
145
|
+
},
|
146
|
+
"code_reps": {
|
147
|
+
"index": 13,
|
148
|
+
"unit": "",
|
149
|
+
"scale": 1,
|
150
|
+
"byte": 1,
|
151
|
+
"type": "uint8",
|
152
|
+
"command": "",
|
153
|
+
"valid_min": "0",
|
154
|
+
"valid_max": "255",
|
155
|
+
"long_name": "Code Reps",
|
156
|
+
"description": "Contains the number of code repetitions in the transmit pulse."
|
157
|
+
},
|
158
|
+
"percent_good_min": {
|
159
|
+
"index": 14,
|
160
|
+
"unit": "%",
|
161
|
+
"scale": 1,
|
162
|
+
"byte": 1,
|
163
|
+
"type": "int8",
|
164
|
+
"command": "WG",
|
165
|
+
"valid_min": "1",
|
166
|
+
"valid_max": "100",
|
167
|
+
"long_name": "Percent Good Min",
|
168
|
+
"description": "Contains the minimum percentage of water-profiling pings in an ensemble that must be considered good to output velocity data."
|
169
|
+
},
|
170
|
+
"error_velocity_thresh": {
|
171
|
+
"index": 15,
|
172
|
+
"unit": "mm/s",
|
173
|
+
"scale": 1,
|
174
|
+
"byte": 2,
|
175
|
+
"type": "int16",
|
176
|
+
"command": "WE",
|
177
|
+
"valid_min": "0",
|
178
|
+
"valid_max": "5000",
|
179
|
+
"long_name": "Error Velocity Thresh",
|
180
|
+
"description": "This field, initially set by the WE command, contains the actual threshold value used to flag water-current data as good or bad. If the error velocity value exceeds this threshold, the WorkHorse ADCP flags all four beams of the affected bin as bad."
|
181
|
+
},
|
182
|
+
"tp_minute": {
|
183
|
+
"index": 16,
|
184
|
+
"unit": "",
|
185
|
+
"scale": 1,
|
186
|
+
"byte": 1,
|
187
|
+
"type": "uint8",
|
188
|
+
"command": "",
|
189
|
+
"valid_min": "",
|
190
|
+
"valid_max": "",
|
191
|
+
"long_name": "TP Minute",
|
192
|
+
"description": "These fields, set by the TP command, contain the amount of time between ping groups in the ensemble. NOTE: The WorkHorse ADCP automatically extends the ensemble interval (set by TE) if (WP x TP > TE)."
|
193
|
+
},
|
194
|
+
"tp_second": {
|
195
|
+
"index": 17,
|
196
|
+
"unit": "",
|
197
|
+
"scale": 1,
|
198
|
+
"byte": 1,
|
199
|
+
"type": "uint8",
|
200
|
+
"command": "",
|
201
|
+
"valid_min": "",
|
202
|
+
"valid_max": "",
|
203
|
+
"long_name": "TP Second",
|
204
|
+
"description": "These fields, set by the TP command, contain the amount of time between ping groups in the ensemble. NOTE: The WorkHorse ADCP automatically extends the ensemble interval (set by TE) if (WP x TP > TE)."
|
205
|
+
},
|
206
|
+
"tp_hundredth": {
|
207
|
+
"index": 18,
|
208
|
+
"unit": "",
|
209
|
+
"scale": 1,
|
210
|
+
"byte": 1,
|
211
|
+
"type": "uint8",
|
212
|
+
"command": "",
|
213
|
+
"valid_min": "",
|
214
|
+
"valid_max": "",
|
215
|
+
"long_name": "TP Hundredth",
|
216
|
+
"description": "Contains the minute portion of the WorkHorse ADCP’s elapsed time measurement of the amount of time needed to complete the pinging of the current ensemble."
|
217
|
+
},
|
218
|
+
"coord_transform_code": {
|
219
|
+
"index": 19,
|
220
|
+
"unit": "",
|
221
|
+
"scale": "",
|
222
|
+
"byte": 1,
|
223
|
+
"type": "uint8",
|
224
|
+
"command": "EX",
|
225
|
+
"valid_min": "",
|
226
|
+
"valid_max": "",
|
227
|
+
"long_name": "Coord Transform Code",
|
228
|
+
"description": "Contains the coordinate transformation processing parameters (EX command). These firmware switches indicate how the WorkHorse ADCP collected data."
|
229
|
+
},
|
230
|
+
"head_alignment": {
|
231
|
+
"index": 20,
|
232
|
+
"unit": "degrees",
|
233
|
+
"scale": 0.01,
|
234
|
+
"byte": 2,
|
235
|
+
"type": "uint16",
|
236
|
+
"command": "EA",
|
237
|
+
"valid_min": "-179.99",
|
238
|
+
"valid_max": "180.00",
|
239
|
+
"long_name": "Head Alignment",
|
240
|
+
"description": "Contains a correction factor for physical heading misalignment."
|
241
|
+
},
|
242
|
+
"head_bias": {
|
243
|
+
"index": 21,
|
244
|
+
"unit": "degrees",
|
245
|
+
"scale": 0.01,
|
246
|
+
"byte": 2,
|
247
|
+
"type": "uint16",
|
248
|
+
"command": "EB",
|
249
|
+
"valid_min": "-179.99",
|
250
|
+
"valid_max": "180.00",
|
251
|
+
"long_name": "Head Bias",
|
252
|
+
"description": "Contains a correction factor for electrical/magnetic heading bias."
|
253
|
+
},
|
254
|
+
"sensor_source_code": {
|
255
|
+
"index": 22,
|
256
|
+
"unit": "",
|
257
|
+
"scale": "",
|
258
|
+
"byte": 1,
|
259
|
+
"type": "uint8",
|
260
|
+
"command": "EZ",
|
261
|
+
"valid_min": "",
|
262
|
+
"valid_max": "",
|
263
|
+
"long_name": "Sensor Source Code",
|
264
|
+
"description": "Contains the selected source of environmental sensor data (EZ command). These firmware switches indicate the following."
|
265
|
+
},
|
266
|
+
"sensor_avail_code": {
|
267
|
+
"index": 23,
|
268
|
+
"unit": "",
|
269
|
+
"scale": "",
|
270
|
+
"byte": 1,
|
271
|
+
"type": "uint8",
|
272
|
+
"command": "",
|
273
|
+
"valid_min": "",
|
274
|
+
"valid_max": "",
|
275
|
+
"long_name": "Sensor Avail Code",
|
276
|
+
"description": "This field reflects which sensors are available"
|
277
|
+
},
|
278
|
+
"bin_1_dist": {
|
279
|
+
"index": 24,
|
280
|
+
"unit": "cm",
|
281
|
+
"scale": 1,
|
282
|
+
"byte": 2,
|
283
|
+
"type": "uint16",
|
284
|
+
"command": "",
|
285
|
+
"valid_min": "0",
|
286
|
+
"valid_max": "65535",
|
287
|
+
"long_name": "Bin 1 Dist",
|
288
|
+
"description": "This field contains the distance to the middle of the first depth cell (bin). This distance is a function of depth cell length (WS), the profiling mode (WM), the blank after transmit distance (WF), and speed of sound."
|
289
|
+
},
|
290
|
+
"xmit_pulse_len": {
|
291
|
+
"index": 25,
|
292
|
+
"unit": "cm",
|
293
|
+
"scale": 1,
|
294
|
+
"byte": 2,
|
295
|
+
"type": "uint16",
|
296
|
+
"command": "WT",
|
297
|
+
"valid_min": "0",
|
298
|
+
"valid_max": "65535",
|
299
|
+
"long_name": "Xmit Pulse Len",
|
300
|
+
"description": "This field, set by the WT command, contains the length of the transmit pulse. When the WorkHorse ADCP receives a <BREAK> signal, it sets the transmit pulse length as close as possible to the depth cell length (WS command). This means the WorkHorse ADCP uses a WT command of zero. However, the WT field contains the actual length of the transmit pulse used."
|
301
|
+
},
|
302
|
+
"ref_layer_avg": {
|
303
|
+
"index": 26,
|
304
|
+
"unit": "",
|
305
|
+
"scale": 1,
|
306
|
+
"byte": 2,
|
307
|
+
"type": "uint16",
|
308
|
+
"command": "WL",
|
309
|
+
"valid_min": "1",
|
310
|
+
"valid_max": "128",
|
311
|
+
"long_name": "Ref Layer Avg",
|
312
|
+
"description": "Contains the starting depth cell (LSB, byte 37) and the ending depth cell (MSB, byte 38) used for water reference layer averaging (WL command)."
|
313
|
+
},
|
314
|
+
"false_target_thresh": {
|
315
|
+
"index": 27,
|
316
|
+
"unit": "count",
|
317
|
+
"scale": 1,
|
318
|
+
"byte": 1,
|
319
|
+
"type": "uint8",
|
320
|
+
"command": "",
|
321
|
+
"valid_min": "0",
|
322
|
+
"valid_max": "255",
|
323
|
+
"long_name": "False Target Thresh",
|
324
|
+
"description": "Contains the threshold value used to reject data received from a false target, usually fish."
|
325
|
+
},
|
326
|
+
"spare_1": {
|
327
|
+
"index": 28,
|
328
|
+
"unit": "",
|
329
|
+
"scale": 1,
|
330
|
+
"byte": 1,
|
331
|
+
"type": "uint8",
|
332
|
+
"command": "CX",
|
333
|
+
"valid_min": "0",
|
334
|
+
"valid_max": "5",
|
335
|
+
"long_name": "Spare 1",
|
336
|
+
"description": "Contains the CX command setting. Range = 0 to 5"
|
337
|
+
},
|
338
|
+
"transmit_lag_dist": {
|
339
|
+
"index": 29,
|
340
|
+
"unit": "cm",
|
341
|
+
"scale": 1,
|
342
|
+
"byte": 2,
|
343
|
+
"type": "uint16",
|
344
|
+
"command": "WM",
|
345
|
+
"valid_min": "0",
|
346
|
+
"valid_max": "65535",
|
347
|
+
"long_name": "Transmit Lag Dist",
|
348
|
+
"description": "These fields contain the outputs of the Analog-to-Digital Converter (ADC) located on the DSP board. The ADC sequentially samples one of the eight channels per ping group (the number of ping groups per ensemble is the maximum of the WP). These fields are zeroed at the beginning of the deployment and updated each ensemble at the rate of one channel per ping group."
|
349
|
+
},
|
350
|
+
"cpu_serial_no": {
|
351
|
+
"index": 30,
|
352
|
+
"unit": "",
|
353
|
+
"scale": 1,
|
354
|
+
"byte": 8,
|
355
|
+
"type": "uint64",
|
356
|
+
"command": "",
|
357
|
+
"valid_min": "",
|
358
|
+
"valid_max": "",
|
359
|
+
"long_name": "CPU Serial No",
|
360
|
+
"description": "Contains the serial number of the CPU board. The CPU Board Serial number is stored in Big Endian (MSB sent first)."
|
361
|
+
},
|
362
|
+
"system_bandwidth": {
|
363
|
+
"index": 31,
|
364
|
+
"unit": "",
|
365
|
+
"scale": 1,
|
366
|
+
"byte": 2,
|
367
|
+
"type": "uint16",
|
368
|
+
"command": "WB",
|
369
|
+
"valid_min": "0",
|
370
|
+
"valid_max": "1",
|
371
|
+
"long_name": "System Bandwidth",
|
372
|
+
"description": "Contains the WB command setting. Range = 0 to 1"
|
373
|
+
},
|
374
|
+
"system_power": {
|
375
|
+
"index": 32,
|
376
|
+
"unit": "",
|
377
|
+
"scale": 1,
|
378
|
+
"byte": 1,
|
379
|
+
"type": "uint8",
|
380
|
+
"command": "CQ",
|
381
|
+
"valid_min": "0",
|
382
|
+
"valid_max": "255",
|
383
|
+
"long_name": "System Power",
|
384
|
+
"description": "Contains the CQ command setting for WorkHorse ADCP Monitor/Sentinel/Long Ranger ADCPs. Range 0 to 255."
|
385
|
+
},
|
386
|
+
"spare_2": {
|
387
|
+
"index": 33,
|
388
|
+
"unit": "",
|
389
|
+
"scale": 1,
|
390
|
+
"byte": 1,
|
391
|
+
"type": "uint8",
|
392
|
+
"command": "",
|
393
|
+
"valid_min": "",
|
394
|
+
"valid_max": "",
|
395
|
+
"long_name": "Spare 2",
|
396
|
+
"description": "Spare"
|
397
|
+
},
|
398
|
+
"instrument_no": {
|
399
|
+
"index": 34,
|
400
|
+
"unit": "",
|
401
|
+
"scale": "",
|
402
|
+
"byte": 4,
|
403
|
+
"type": "uint32",
|
404
|
+
"command": "CY",
|
405
|
+
"valid_min": "",
|
406
|
+
"valid_max": "",
|
407
|
+
"long_name": "Instrument No",
|
408
|
+
"description": "Contains the instrument serial number."
|
409
|
+
},
|
410
|
+
"beam_angle": {
|
411
|
+
"index": 35,
|
412
|
+
"unit": "degrees",
|
413
|
+
"scale": "",
|
414
|
+
"byte": "",
|
415
|
+
"type": "uint8",
|
416
|
+
"command": "CY",
|
417
|
+
"valid_min": "",
|
418
|
+
"valid_max": "",
|
419
|
+
"long_name": "Beam Angle",
|
420
|
+
"description": "Beam Angle"
|
421
|
+
}
|
422
422
|
}
|