-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjson_etn
995 lines (995 loc) · 28.5 KB
/
json_etn
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
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
{
"profile": "tabular-data-package",
"resources": [
{
"name": "animals",
"path": "animals.csv",
"profile": "tabular-data-resource",
"encoding": "utf-8",
"format": "csv",
"schema": {
"fields": [
{
"name": "animal_id",
"type": "integer",
"description": "Foreign Key linked to the Animal_ID"
},
{
"name": "animal_project_code",
"type": "string",
"description": "Code of the animal project linked to this detection"
},
{
"name": "tag_serial_number",
"type": "integer"
},
{
"name": "tag_type",
"type": "string"
},
{
"name": "tag_subtype",
"type": "string"
},
{
"name": "acoustic_tag_id",
"type": "string"
},
{
"name": "acoustic_tag_id_alternative",
"type": "string"
},
{
"name": "scientific_name",
"type": "string",
"description": "Scientific name of animal that carries the tag"
},
{
"name": "common_name",
"type": "string",
"description": "The species' common English name"
},
{
"name": "aphia_id",
"type": "integer",
"description": "The Aphia ID linked to the scientific name. The Aphia ID can be found at http://www.marinespecies.org/aphia.php?p=webservice"
},
{
"name": "animal_label",
"type": "string",
"description": "Identification code that uniquely identifies each animal, as specified by the researcher"
},
{
"name": "animal_nickname",
"type": "string",
"description": "Nickname given to the tagged animal"
},
{
"name": "tagger",
"type": "string",
"description": "Person conducting tagging"
},
{
"name": "capture_date_time",
"type": "datetime",
"description": "Date and time that animal was caught, in 24h UTC. Datetime fields should follow the ISO-8601 format"
},
{
"name": "capture_location",
"type": "string",
"description": "Name of capture location. Please refer to a specific nearby point of land, town, island, or body of water that uniquely identifies this tagging location. Okay to leave blank if same as release location"
},
{
"name": "capture_latitude",
"type": "number",
"description": "Latitude of capture location. Leave blank if same as release location. Note: in the southern hemisphere all latitudes must be negative"
},
{
"name": "capture_longitude",
"type": "number",
"description": "Longitude of capture location. Leave blank if same as release location. Note: in the western hemisphere all longitudes must be negative"
},
{
"name": "capture_method",
"type": "string",
"description": "Name of the method and materials used to capture animal"
},
{
"name": "capture_depth",
"type": "string",
"description": "Water depth at which the animal was caught"
},
{
"name": "capture_temperature_change",
"type": "string",
"description": "Difference between water temperature of the system where the fish was caught and the water temperature of the holding reservoir"
},
{
"name": "release_date_time",
"type": "datetime",
"description": "Date and time that tagged animal was released, in UTC"
},
{
"name": "release_location",
"type": "string",
"description": "Name of release location. Please refer to a specific nearby point of land, town, island, or body of water that uniquely identifies this tagging location"
},
{
"name": "release_latitude",
"type": "number",
"description": "Latitude of release location. Note: in the southern hemisphere all latitudes must be negative"
},
{
"name": "release_longitude",
"type": "number",
"description": "Longitude of release location. Note: in the western hemisphere all longitudes must be negative"
},
{
"name": "recapture_date_time",
"type": "datetime",
"description": "If applicable, date of recapture of the tagged animal"
},
{
"name": "length1_type",
"type": "string",
"description": "Specify type of length recorded (e.g. hood length, fork length, standard length, etc.)"
},
{
"name": "length1",
"type": "number",
"description": "Length of animal that carries tag, depending on 'Length type', in units specified in 'Length units'"
},
{
"name": "length1_unit",
"type": "string",
"description": "Units of lenght"
},
{
"name": "length2_type",
"type": "string",
"description": "Specify type of secondary size measurement (e.g. width)"
},
{
"name": "length2",
"type": "number",
"description": "Secondary length measurement, depending on 'Length2 type', in units specified in 'Length2 units'"
},
{
"name": "length2_unit",
"type": "string",
"description": "Units of secondary length"
},
{
"name": "length3_type",
"type": "string",
"description": "Specify type of tertiary size measurement (e.g. width)"
},
{
"name": "length3",
"type": "number",
"description": "Tertiary length measurement, depending on 'Length3 type', in units specified in 'Length3 units'"
},
{
"name": "length3_unit",
"type": "string",
"description": "Units of tertiary length"
},
{
"name": "length4_type",
"type": "string",
"description": "Specify type of quaternary size measurement (e.g. width)"
},
{
"name": "length4",
"type": "number",
"description": "Quaternary length measurement, depending on 'Length4 type', in units specified in 'Length4 units'"
},
{
"name": "length4_unit",
"type": "string",
"description": "Units of quaternary length"
},
{
"name": "weight",
"type": "number",
"description": "Weight of animal that carries tag, in units specified in 'Weight units'"
},
{
"name": "weight_unit",
"type": "string",
"description": "Units of weight"
},
{
"name": "age",
"type": "number",
"description": "Age of animal that carries tag, the units are specified in 'Age units'"
},
{
"name": "age_unit",
"type": "string",
"description": "Units of age"
},
{
"name": "sex",
"type": "string",
"description": "Sex of animal. "M" or "F". Can enter unknown ("U")"
},
{
"name": "life_stage",
"type": "string",
"description": "Life stage of animal. This will depend on the species being studied and can be a standard code used for that species, a description, or both"
},
{
"name": "wild_or_hatchery",
"type": "string",
"description": "Origin of animal that carries the tag. Enter "wild","hatchery" or "unknown""
},
{
"name": "stock",
"type": "string",
"description": "Water body of origin. Can enter unknown or not applicable"
},
{
"name": "surgery_date_time",
"type": "datetime",
"description": "Date that surgery was conducted. Date fields should follow the ISO-8601 format"
},
{
"name": "surgery_location",
"type": "string",
"description": " Short name of surgery location (i.e. hatchery name)"
},
{
"name": "surgery_latitude",
"type": "number",
"description": "Latitude of surgery location. Note: in the southern hemisphere all latitudes must be negative"
},
{
"name": "surgery_longitude",
"type": "number",
"description": "Longitude of surgery location. Note: in the western hemisphere all longitudes must be negative"
},
{
"name": "treatment_type",
"type": "string",
"description": Contains a designation of treatment group as appropriate for the particular study. Researchers will have to contact the authors directly for definitions. Try to make these as clear as possible (e.g. use Control instead of C, Lake release instead of Lake)"
},
{
"name": "tagging_type",
"type": "string",
"description": "Indicates how tag was attached to animal (e.g. "internal","external","oral","gastric","subcutaneous", etc.)"
},
{
"name": "tagging_methodology",
"type": "string",
"description": "Describe method and materials used to attach tag to animal"
},
{
"name": "dna_sample",
"type": "string",
"description": "Indicates whether the animal that carries the acoustic tag is also sampled for DNA"
},
{
"name": "sedative",
"type": "string",
"description": "Name of sedative used if applicable"
},
{
"name": "sedative_concentration",
"type": "string",
"description": "Concentration of sedative"
},
{
"name": "anaesthetic",
"type": "string",
"description": "Name of anaesthetic used if applicable"
},
{
"name": "buffer",
"type": "string",
"description": "Name of buffer used if applicable"
},
{
"name": "anaesthetic_concentration",
"type": "string",
"description": "Concentration of anaesthetic"
},
{
"name": "buffer_concentration_in_anaesthetic",
"type": "string",
"description": "Concentration of buffer in anaesthetic"
},
{
"name": "anaesthetic_concentration_in_recirculation",
"type": "string"
"description": "Concentration of anaesthetic in recirculation bath"
},
{
"name": "buffer_concentration_in_recirculation",
"type": "string",
"description": "Concentration of buffer in recirculation bath"
},
{
"name": "dissolved_oxygen",
"type": "string",
"description": "This measure is the lowest oxygen level the fish will experience during the surgery"
},
{
"name": "pre_surgery_holding_period",
"type": "string",
"description": "Time that animal is held prior to surgery"
},
{
"name": "post_surgery_holding_period",
"type": "string"
"description": "Time the animal is held after surgery until release"
},
{
"name": "holding_temperature",
"type": "string",
"description": "This measure is the highest or lowest water bath temperature the fish will experience during holding (depends if surgical water temperatures are increasing or decreasing relative to initial water temperature reading). For example, if tagging is being cond"
},
{
"name": "comments",
"type": "string",
"description": "Any comments deemed to have scientific relevance by the tagger"
}
],
"primaryKey": "animal_id",
"foreignKeys": [
{
"fields": "tag_serial_number",
"reference": {
"resource": "tags",
"fields": "tag_serial_number"
}
}
]
}
},
{
"name": "tags",
"path": "tags.csv",
"profile": "tabular-data-resource",
"format": "csv",
"encoding": "utf-8",
"schema": {
"fields": [
{
"name": "tag_serial_number",
"type": "integer"
},
{
"name": "tag_type",
"type": "string"
},
{
"name": "tag_subtype",
"type": "string"
},
{
"name": "sensor_type",
"type": "string",
"description": "Type of tag sensor. Predefined options: "P","T" or "A". P = pressure, T = temperature, A = acceleration"
},
{
"name": "acoustic_tag_id",
"type": "string",
},
{
"name": "acoustic_tag_id_alternative",
"type": "string"
},
{
"name": "manufacturer",
"type": "string",
"description": "Name of receiver manufacturer. Predefined options: "VEMCO","CHELONIA" or "THELMA BIOTEL""
},
{
"name": "model",
"type": "string",
},
{
"name": "frequency",
"type": "string",
"description": "Frequency at which the tag emits a signal"
},
{
"name": "status",
"type": "string",
"description": "Current status of the tag. Three options: "available","active" or "ended""
},
{
"name": "activation_date",
"type": "datetime",
"description": "Date and time the tag was activated, in UTC"
},
{
"name": "battery_estimated_life",
"type": "string",
"description": "Estimated duration of time during which the tag will be transmitting"
},
{
"name": "battery_estimated_end_date",
"type": "datetime",
"description": "Estimated date at which tag will stop transmitting. Date fields should follow the ISO-8601 format"
},
{
"name": "length",
"type": "number",
},
{
"name": "diameter",
"type": "number"
},
{
"name": "weight",
"type": "number"
},
{
"name": "floating",
"type": "boolean"
},
{
"name": "archive_memory",
"type": "string"
},
{
"name": "sensor_slope",
"type": "number",
"description": "Raw value of slope, as used for sensor calibration"
},
{
"name": "sensor_intercept",
"type": "number",
"description": "Raw value of intercept, as used for sensor calibration"
},
{
"name": "sensor_range",
"type": "string",
"description": "Maximum range of sensor"
},
{
"name": "sensor_range_min",
"type": "integer"
},
{
"name": "sensor_range_max",
"type": "integer"
},
{
"name": "sensor_resolution",
"type": "number"
},
{
"name": "sensor_unit",
"type": "string",
"description": "Unit of measured sensor value"
},
{
"name": "sensor_accuracy",
"type": "number",
},
{
"name": "sensor_transmit_ratio",
"type": "integer",
"description": "Ratio of transmission between sensors present. If for example both a T and P sensor are present and T transmits twice as often as P, the range is 2 to 1"
},
{
"name": "accelerometer_algorithm",
"type": "string",
"description": "There are two possible modes of operation of the accelerometer algorithm: Activity or Tailbeat"
},
{
"name": "accelerometer_samples_per_second",
"type": "number"
},
{
"name": "owner_organization",
"type": "string"
},
{
"name": "owner_pi",
"type": "string"
},
{
"name": "financing_project",
"type": "string"
},
{
"name": "step1_min_delay",
"type": "string"
},
{
"name": "step1_max_delay",
"type": "string"
},
{
"name": "step1_power",
"type": "string"
},
{
"name": "step1_duration",
"type": "integer"
},
{
"name": "step1_acceleration_duration",
"type": "integer"
},
{
"name": "step2_min_delay",
"type": "string"
},
{
"name": "step2_max_delay",
"type": "string"
},
{
"name": "step2_power",
"type": "string"
},
{
"name": "step2_duration",
"type": "integer"
},
{
"name": "step2_acceleration_duration",
"type": "integer"
},
{
"name": "step3_min_delay",
"type": "string"
},
{
"name": "step3_max_delay",
"type": "string"
},
{
"name": "step3_power",
"type": "string"
},
{
"name": "step3_duration",
"type": "integer"
},
{
"name": "step3_acceleration_duration",
"type": "integer"
},
{
"name": "step4_min_delay",
"type": "string"
},
{
"name": "step4_max_delay",
"type": "string"
},
{
"name": "step4_power",
"type": "string"
},
{
"name": "step4_duration",
"type": "integer"
},
{
"name": "step4_acceleration_duration",
"type": "integer"
},
{
"name": "tag_id",
"type": "string"
},
{
"name": "tag_device_id",
"type": "integer"
}
],
"primaryKey": "tag_id"
}
},
{
"name": "detections",
"path": "detections.csv",
"profile": "tabular-data-resource",
"format": "csv",
"encoding": "utf-8",
"schema": {
"fields": [
{
"name": "detection_id",
"type": "integer"
},
{
"name": "date_time",
"type": "datetime"
},
{
"name": "tag_serial_number",
"type": "integer"
},
{
"name": "acoustic_tag_id",
"type": "string"
},
{
"name": "animal_project_code",
"type": "string"
},
{
"name": "animal_id",
"type": "integer"
},
{
"name": "scientific_name",
"type": "string"
},
{
"name": "acoustic_project_code",
"type": "string"
},
{
"name": "receiver_id",
"type": "string"
},
{
"name": "station_name",
"type": "string"
},
{
"name": "deploy_latitude",
"type": "number"
},
{
"name": "deploy_longitude",
"type": "number"
},
{
"name": "depth_in_meters",
"type": "number"
},
{
"name": "sensor_value",
"type": "number"
},
{
"name": "sensor_unit",
"type": "string"
},
{
"name": "sensor2_value",
"type": "number"
},
{
"name": "sensor2_unit",
"type": "number"
},
{
"name": "signal_to_noise_ratio",
"type": "integer"
},
{
"name": "source_file",
"type": "string"
},
{
"name": "qc_flag",
"type": "boolean"
},
{
"name": "deployment_id",
"type": "integer"
}
],
"primaryKey": "detection_id",
"foreignKeys": [
{
"fields": "receiver_id",
"reference": {
"resource": "receivers",
"fields": "receiver_id"
}
},
{
"fields": "acoustic_tag_id",
"reference": {
"resource": "tags",
"fields": "acoustic_tag_id"
}
},
{
"fields": "animal_id",
"reference": {
"resource": "animals",
"fields": "animal_id"
}
},
{
"fields": "deployment_id",
"reference": {
"resource": "deployments",
"fields": "deployment_id"
}
}
]
}
},
{
"name": "deployments",
"path": "deployments.csv",
"profile": "tabular-data-resource",
"format": "csv",
"encoding": "utf-8",
"schema": {
"fields": [
{
"name": "deployment_id",
"type": "integer"
},
{
"name": "receiver_id",
"type": "string"
},
{
"name": "acoustic_project_code",
"type": "string"
},
{
"name": "station_name",
"type": "string"
},
{
"name": "station_description",
"type": "string"
},
{
"name": "station_manager",
"type": "string"
},
{
"name": "deploy_date_time",
"type": "datetime"
},
{
"name": "deploy_latitude",
"type": "number"
},
{
"name": "deploy_longitude",
"type": "number"
},
{
"name": "intended_latitude",
"type": "number"
},
{
"name": "intended_longitude",
"type": "number"
},
{
"name": "mooring_type",
"type": "string"
},
{
"name": "bottom_depth",
"type": "string"
},
{
"name": "riser_length",
"type": "string"
},
{
"name": "deploy_depth",
"type": "string"
},
{
"name": "battery_installation_date",
"type": "datetime"
},
{
"name": "battery_estimated_end_date",
"type": "datetime"
},
{
"name": "activation_date_time",
"type": "datetime"
},
{
"name": "recover_date_time",
"type": "datetime"
},
{
"name": "recover_latitude",
"type": "number"
},
{
"name": "recover_longitude",
"type": "number"
},
{
"name": "download_date_time",
"type": "datetime"
},
{
"name": "download_file_name",
"type": "string"
},
{
"name": "valid_data_until_date_time",
"type": "datetime"
},
{
"name": "sync_date_time",
"type": "datetime"
},
{
"name": "time_drift",
"type": "string"
},
{
"name": "ar_battery_installation_date",
"type": "datetime"
},
{
"name": "ar_confirm",
"type": "string"
},
{
"name": "transmit_profile",
"type": "string"
},
{
"name": "transmit_power_output",
"type": "string"
},
{
"name": "log_temperature_stats_period",
"type": "integer"
},
{
"name": "log_temperature_sample_period",
"type": "integer"
},
{
"name": "log_tilt_sample_period",
"type": "integer"
},
{
"name": "log_noise_stats_period",
"type": "integer"
},
{
"name": "log_noise_sample_period",
"type": "integer"
},
{
"name": "log_depth_stats_period",
"type": "integer"
},
{
"name": "log_depth_sample_period",
"type": "integer"
},
{
"name": "comments",
"type": "string"
}
],
"primaryKey": "deployment_id",
"foreignKeys": [
{
"fields": "receiver_id",
"reference": {
"resource": "receivers",
"fields": "receiver_id"
}
}
]
}
},
{
"name": "receivers",
"path": "receivers.csv",
"profile": "tabular-data-resource",
"format": "csv",
"encoding": "utf-8",
"schema": {
"fields": [
{
"name": "receiver_id",
"type": "string"
},
{
"name": "manufacturer",
"type": "string"
},
{
"name": "receiver_model",
"type": "string"
},
{
"name": "receiver_serial_number",
"type": "string"
},
{
"name": "modem_address",
"type": "string"
},
{
"name": "status",
"type": "string"
},
{
"name": "battery_estimated_life",
"type": "string"
},
{
"name": "owner_organization",
"type": "string"
},
{
"name": "financing_project",
"type": "string"
},
{
"name": "built_in_acoustic_tag_id",
"type": "string"
},
{
"name": "ar_model",
"type": "string"
},
{
"name": "ar_serial_number",
"type": "string"
},
{
"name": "ar_battery_estimated_life",
"type": "string"
},
{
"name": "ar_voltage_at_deploy",
"type": "string"
},
{
"name": "ar_interrogate_code",
"type": "string"
},
{
"name": "ar_receive_frequency",
"type": "string"
},
{
"name": "ar_reply_frequency",
"type": "string"
},
{
"name": "ar_ping_rate",
"type": "string"
},
{
"name": "ar_enable_code_address",
"type": "string"
},
{
"name": "ar_release_code",
"type": "string"
},
{
"name": "ar_disable_code",
"type": "string"
},
{
"name": "ar_tilt_code",
"type": "string"
},
{
"name": "ar_tilt_after_deploy",
"type": "string"
}
],
"primaryKey": "receiver_id"
}
}
]
}