-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdd_surv_act_animal_source.R
1782 lines (1542 loc) · 75 KB
/
dd_surv_act_animal_source.R
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
996
997
998
999
1000
# @@@@@@@@@@@@@@@@@@@@@@@@@@@@@ #
# Animal Source Dictionary #
# @@@@@@@@@@@@@@@@@@@@@@@@@@@@@ #
animal_source<-
list(
data.frame(
Variable="SurveillanceActivityTargetedSpecies",
Label="Animal Source Species of Interest",
Definition="Species included in the Surveillance Activity as Animal Sources.
It is possible to select high taxonomy levels such as 'Mammalia', 'Chordata',
'Insecta', etc. to indicate that no particular species is targeted",
Type="Multiple selection",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivitySpeciesIdentificationMethod",
Label="Animal Source Species Identification Method",
Definition="The methodology used to identify the species of the animals
obtained in the field",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivitySpeciesIdentificationMethodReferences",
Label="Animal Source Species Identification Method References",
Definition="References supporting the methodology used to identify the species
of animals obtained in the field",
Type="String",
Mandatory="No"),
data.frame(
Variable="SurveillanceActivityTargetedHazardType",
Label="Animal Source Targeted Hazard Type",
Definition="The types of hazards targeted during the Surveillance Activity
in Animal Sources",
Type="Multiple selection",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityTargetedHazardName",
Label="Animal Source Targeted Hazard Name",
Definition="The names of the hazards targeted during the Surveillance Activity
in Animal Sources",
Type="Multiple selection",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityTargetedHazardBySpecies",
Label="Animal Source Targeted Hazard By Species",
Definition="The names of the hazards targeted during the Surveillance Activity
in Animal Sources",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityFieldAnimalSourceIncluded",
Label="Animal Source Records From the Field",
Definition="Answer to the question:'Does the Surveillance Activity involve
obtaining Animal Source Records from animals in the field?' (does not include
stored carcasses from previous Projects or Surveillance Activities only)",
Type="Boolean", # yes no
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityFieldAnimalSourceCodeStructure",
Label="New Animal Source Code Structure",
Definition="Explain the nomenclature of the new Animal Source Codes of the
Surveillance Activity (e.g., 'first letter refers to the pathogen, the next
two letters refer to the country, the next letter refers to the taxonomic group,
and then the number is the sequential number of the Animal Source')",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityFieldObservedOnlyAnimalSource",
Label="Animal Source Records From Observed-Only Animals",
Definition="Answer to the question:'Does the Surveillance Activity involve
Animal Source Records from the field but not Carcasses or Specimens?'",
Type="Boolean", # yes, no
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityCaptureFieldAnimalSource",
Label="Animal Source Records From Captured Animals",
Definition="Answer to the question:'Does the Surveillance Activity involve
obtaining Animal Source Records from animals captured or restrained in the field?
(not stored carcasses from previous projects or surveillance activities or
observations only)'",
Type="Boolean", # yes, no
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityOneTimeCaptureFieldAnimalSource",
Label="Animal Source Records From Non-marked Animals",
Definition="Answer to the question:'Does the Surveillance Activity involve
obtaining Animal Source Records from non-marked animals captured or restrained in the field?'",
Type="Boolean", # yes, no
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityReleaseCaptureFieldAnimalSource",
Label="Animal Source Records From Non-marked Released Animals",
Definition="Answer to the question:'Does the Surveillance Activity involve
obtaining Animal Source Records from originally captive animals that were
then release to the field and then recaptured over time?'",
Type="Boolean", # yes, no
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityMarkReleaseRecaptureFieldAnimalSource",
Label="Animal Source Records From Previously Marked and then Released Animals",
Definition="Answer to the question:'Does the Surveillance Activity involve
obtaining Animal Source Records from originally captive animals that were marked
then release to the field and then recaptured over time?'",
Type="Boolean", # yes, no
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityReleaseCaptureMarkRecaptureFieldAnimalSource",
Label="Animal Source Records From Released Captured Marked and Recaptured Animals",
Definition="Answer to the question:'Does the Surveillance Activity involve
obtaining Animal Source Records from originally captive animals that were released
to the field and then captured or restrained, marked, and recaptured over time?'",
Type="Boolean", # yes, no
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityCaptiveFieldAnimalSources",
Label="Animal Soucce Records From Captive Animals",
Definition="Answer to the question:'Does the Surveillance Activity involve
obtaining Animal Source Records from animals that are captive (hunted, farm, household, zoo, etc)?'",
Type="Boolean", # yes, no
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityCaptivityCategoryBySpecies",
Label="Animal Source Captivity Status Per Species",
Definition="Description of the captivity status of the animal sources included in the Surveillance
Activity per species (e.g., 'civets were obtained from farms. Bats from markets)",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityCaptiveFacilityBySpecies",
Label="Animal Source Captivitity Facility Per Species",
Definition="Description of the captivity facility of the captive animal sources included in the Surveillance
Activity per species (e.g., 'civets were obtained from farm A, B, C')",
Type="String",
Mandatory="No"),
data.frame(
Variable="SurveillanceActivityLocationCaptiveFacilityBySpecies",
Label="Animal Source Location of Captivitity Facilities Per Species",
Definition="Description of the location of the captivity facilities of the
captive animal sources included in the Surveillance
Activity per species (e.g., 'farm A where we collected civets is located in town X, Province Y')",
Type="String",
Mandatory="No"),
data.frame(
Variable="SurveillanceActivitySourceInclusionCriteriaAny",
Label="Any Animal Source Inclusion Criteria",
Definition="Answer to the question: 'Is there any criteria to include
specific Animal Sources of any species besides the species itself? (e.g., animals of certain
age or health condition only)'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivitySourceInclusionCriteriaBySpecies",
Label="Animal Source Inclusion Criteria By Species",
Definition="The specific criteria for the inclusion of Animal Sources of
the species of interest, if any, by species",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivitySourceExclusionCriteriaAny",
Label="Any Animal Source Exclusion Criteria",
Definition="Answer to the question: 'Is there any criteria to exclude
specific Animal Sources of any species? (e.g., animals of certain
age or health condition)'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivitySourceExclusionCriteriaBySpecies",
Label="Animal Source Exclusion Criteria By Species",
Definition="The specific criteria for the exclusion of new Animal Sources of
the species of interest, if any, by species",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivitySourceFollowedOverTime",
Label="Animal Source Followed Over Time",
Definition="Answer to the question: 'Are Animal Source followed during the
Surveillance Activity and Source Records of these animals obtained over time?'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivitySourceFollowedOverTimeFrequencyBySpecies",
Label="Animal Source Followed Over Time Frequency By Species",
Definition="Description of the frequency Animal Sources
are observed, collected, examined, etc.",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivitySourceIdentification",
Label="Animal Source Identification",
Definition="Answer to the question: 'Are Animal Sources are individually identified during the
Surveillance Activity?'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivitySourceIdentificationMethodBySpecies",
Label="Animal Source Identification Method By Species",
Definition="Description how Animal Sources are individually identified during the
Surveillance Activity by species",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivitySourceIdentificationMethodReferencesBySpecies",
Label="Animal Source Identification Method References By Species",
Definition="References associated with identification method of Animal Sources
idenified during the Surveillance Activity",
Type="String",
Mandatory="No"),
data.frame(
Variable="SurveillanceActivityIdentifiedSourceInPreviousSurveillanceActivity",
Label="Animal Source Records from Animals Identified in Previous Surveillance Activities",
Definition="Answer to the question:'Does the Surveillance Activity involve
obtaining Animal Source Records from animals that were individually identified in previous
Surveillance Activities?'",
Type="Boolean", # yes, no
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityIdentifiedSourceOriginProjectCode",
Label="Project Code Animal Sources Identified in Previous Surveillance Activities",
Definition="The Code of the Project under which the identified Animal Sources were
identified",
Type="String", # yes, no
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityIdentifiedSourcePreviousSurveillanceActivityCode",
Label="Surveillance Activity Code Animal Sources Identified in Previous Surveillance Activities",
Definition="The Code of the Surveillance Activity under which the identified Animal
Sources were identified",
Type="String", # yes, no
Mandatory="Yes"),
# data.frame(
# Variable="SurveillanceActivityFieldAnimalSourceCodeStructure",
# Label="New Animal Source Code Structure",
# Definition="Explain the nomenclature of the new Animal Source Codes of the
# Surveillance Activity (e.g., 'first letter refers to the pathogen, the next
# two letters refer to the country, the next letter refers to the taxonomic group,
# and then the number is the sequential number of the Animal Source')",
# Type="String",
# Mandatory="Yes"),
# data.frame(
# Variable="SurveillanceActivityPassiveCollection",
# Label="New Animal Source Passive Collection",
# Definition="Answer to the question:'Are Animal Source Records of any species obtained through a
# passive collection strategy (e.g., citizen reports, information from news outlets)?'",
# Type="Boolean",
# Mandatory="Yes"),
#
# data.frame(
# Variable="SurveillanceActivityActiveCollection",
# Label="New Animal Source Collection Has Effort",
# Definition="Answer to the question:'Are Animal Source Records of any species obtained through an
# active collection strategy (e.g., camera traps, mosquito traps, patrolling, transect,
# mist nets, observation periods, land exploration, etc.)?'",
# Type="Boolean",
# Mandatory="Yes"),
#
# data.frame(
# Variable="SurveillanceActivityCollectionMethodsBySpecies",
# Label="New Animal Source Collection Methods By Species",
# Definition="Description of the Collection methods used to obtain
# Animal Source Records by species (e.g., pair of mist nets placed in X for Y hours in S
# sites every M months under a bat roost ans blood samples re collected using ... etc.)",
# Type="String",
# Mandatory="Yes"),
#
#
# data.frame(
# Variable="SurveillanceActivityCollectionMethodActiveExpectedEffortBySpecies",
# Label="Animal Source Active Collection Methods Expected Effort",
# Definition="Expected effort of the Active Collection Methods to obtain Animal
# Source Records actively by species (e.g., two mist nets per trappin session placed for X hours)",
# Type="String",
# Mandatory="Yes"),
#
# data.frame(
# Variable="SurveillanceActivityNewAnimalSourceCollectionMethodReferences",
# Label="Animal Source Collection Method References",
# Definition="Name the references supporting the methods used to collect the new
# Animal Sources",
# Type="String",
# Mandatory="No"),
data.frame(
Variable="SurveillanceActivityFieldAnimalSourceCarcassFieldNecropsy",
Label="Animal Source Carcass Field Necropsy",
Definition="Answer to the question: 'Are field necropsies conducted as part
of the Surveillance Activity?'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityFieldAnimalSourceCarcassFieldNecropsyProtocolBySpecies",
Label="Animal Source Field Necropsy Carcass Protocol",
Definition="Protocol of the Necropsies conducted in the field during the Surveillance Activity",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityFieldAnimalSourceCarcassFieldNecropsyProtocolReferences",
Label="Animal Source Field Necropsy Carcass Protocol",
Definition="References supporting the protocol of the Necropsies conducted in the field
duringthe Surveillance Activity",
Type="String",
Mandatory="No"),
data.frame(
Variable="SurveillanceActivityFieldAnimalSourceCarcassCollected",
Label="Animal Source Carcass Collected",
Definition="Answer to the question: 'Are Carcasses of Animal Sources collected
from the field as part of the Surveillance Activity?'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityFieldAnimalSourceCarcassCollectedInclusionCriteriaAny",
Label="Any Animal Source Carcass Collected Inclusion Criteria",
Definition="Answer to the question: 'Is there any criteria to include
specific Animal Source Carcasses of the species of interest besides the species itself?
(e.g., carcasses of certain age)'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityFieldAnimalSourceCarcassCollectedInclusionCriteria",
Label="Animal Source Carcass Collected Inclusion Criteria",
Definition="The specific criteria for the inclusion of Animal Source Carcasses of the
species of interest collected from the field of, if any",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityFieldAnimalSourceCarcassCollectedExclusionCriteriaAny",
Label="Any Animal Source Carcass Collected Exclusion Criteria",
Definition="Answer to the question: 'Is there any criteria to exclude
specific Animal Source Carcasses of the species of interest?
(e.g., carcasses of certain age)'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityFieldAnimalSourceCarcassCollectedExclusionCriteria",
Label="Animal Source Carcass Collected Exclusion Criteria",
Definition="The specific criteria for the exclusion of Animal Source Carcasses of the
species of interest collected from the field of, if any",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityFieldAnimalSourceCarcassFieldStorage",
Label="Field Animal Source Carcass Field Storage",
Definition="Method to store the Carcasses collected while in the field
under the current Surveillance Activity",
Type="Mutiple selection",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityFieldAnimalSourceCarcassLabStorage",
Label="Field Animal Source Carcass Facility Storage",
Definition="Method to store the Carcasses collected in a facility
under the current Surveillance Activity",
Type="Mutiple selection",
Mandatory="Yes"),
# data.frame(
# Variable="SurveillanceActivityFieldAnimalSourceCarcassNumberBySpeciesCaptivityNecropsy",
# Label="Number Necropsy Field Animal Source Carcass Per Species Captivity",
# Definition="Number of necropsies conducted using carcasses collected from the field
# per species, and captivity category",
# Type="String",
# Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityStoredCarcassIncluded",
Label="Animal Source Stored Carcass Included",
Definition="Answer to the question: 'Are Stored Carcasses included in
the Surveillance Activity?'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityStoredCarcassOriginProjectCode",
Label="Stored Carcasses Project Origin Code",
Definition="The Code of the Project during which the stored Carcasses included
in the current Surveillance Activity were collected",
Type="Multiple selection", # yes, no
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityStoredCarcassPreviousSurveillanceActivityCode",
Label="Stored Carcasses Previous Surveillance Activity Code",
Definition="The previous Surveillance Activity Codes of the stored Carcasses included
in the current Surveillance Activity",
Type="Multiple selection", # yes, no
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityStoredCarcassInclusionCriteriaAny",
Label="Any Stored Carcass Inclusion Criteria",
Definition="Answer to the question: 'Is there any criteria to include
specific stored Carcasses of the species of interest besides the species itself?
(e.g., carcasses of certain age)'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityStoredCarcassInclusionCriteria",
Label="Store Carcass Inclusion Criteria",
Definition="The specific criteria for the inclusion of stored Carcasses of the
species of interest, if any",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityStoredCarcassExclusionCriteriaAny",
Label="Any Stored Carcass Exclusion Criteria",
Definition="Answer to the question: 'Is there any criteria to exclude
specific stored Carcasses of the species of interest besides the species itself?
(e.g., carcasses of certain age)'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityStoredCarcassExclusionCriteria",
Label="Store Carcass Exclusion Criteria",
Definition="The specific criteria for the exclusion of stored Carcasses of the
species of interest, if any",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityCarcassLabNecropsy",
Label="Carcass Laboratory Necropsy",
Definition="Answer to the question: 'Are Necropsies conducted in a facility
during the Surveillance Activity?'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityCarcassLabNecropsyProtocol",
Label="Carcass Laboratory Necropsy Protocols",
Definition="Protocols of the necropsies conducted in a facility",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityCarcassLabNecropsyProtocolReferences",
Label="Carcass Laboratory Necropsy Protocols References",
Definition="References associated with the protocols of the necropsies conducted
in a facility",
Type="String",
Mandatory="No"),
data.frame(
Variable="SurveillanceActivityCarcassLabNecropsyNumberBySpeciesCaptivity",
Label="Carcass Laboratory Necropsy Number By Species and Captivity",
Definition="Number of necropsies in the laboratory per
species, and captivity category",
Type="String",
Mandatory="Yes"),
# Label="Number Necropsy Stored Carcass Per Species Captivity",
# Definition="Number of necropsies conducted using stored carcasses per
# species, and captivity category",
# Type="String",
# Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityAnimalSourceRecordCodeStructure",
Label="Animal Source Record Code Structure",
Definition="Explain the nomenclature of the Codes of Animal Source Record
obtained as part of the Surveillance Activity (e.g., 'first
letter refers to the pathogen, the next two letters refer to the country,
the next letter refers to the taxonomic group, the number is the sequential
number of the Animal Source in the Surveillance Activity code, and the number
is the sequential number of the Animal Source Record')",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityAnimalSourceRecordInclusionCriteriaAny",
Label="Any Animal Source Record Inclusion Criteria",
Definition="Answer to the question: 'Is there any criteria to include
specific Animal Source Records of the species of interest
besides the species itself? (e.g., animals of certain age)'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityAnimalSourceRecordInclusionCriteria",
Label="Animal Source Record Inclusion Criteria",
Definition="The specific criteria for the inclusion of Animal Source Records, if any",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityAnimalSourceRecordExclusionCriteriaAny",
Label="Any Animal Source Record Exclusion Criteria",
Definition="Answer to the question: 'Is there any criteria to exclude
specific Animal Source Records of the species of interest?
(e.g., animals of certain age)'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityAnimalSourceRecordExclusionCriteria",
Label="Animal Source Record Exclusion Criteria",
Definition="The specific criteria for the exclusion of Animal Source Records, if any",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityAnimalSourceRecordVaccinated",
Label="Animal Source Record Vaccinated",
Definition="Answer to the question: 'Are Animal Sources
vaccinated at sampling as part of the Surveillance Activity",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityAnimalSourceRecordVaccinatedAgainst",
Label="Animal Source Record Vaccinated Against",
Definition="The hazards vaccinated against. Vaccines against toxins and other
non-pathogen hazards must also be reported",
Type="Multiple selection",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityFieldAnimalSourceRecordNumberBySpeciesCaptivity",
Label="Number Field Animal Source Records Per Species Captivity",
Definition="Number of Animal Source Records from the field per species, and
captivity category",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityAnimalSourceRecordClustering",
Label="Animal Source Records Clustering",
Definition="Answer to the question: 'Are Animal Source Records clustered in units
smaller than the Event?'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityAnimalSourceRecordClusteringDescription",
Label="Animal Source Records Cluster Description",
Definition="Description of Animal Source Records cluster units smaller than Event",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityFieldAnimalSourceRecordCodeStructure",
Label="Field Animal Source Record Code Structure",
Definition="Explain the nomenclature of the Codes of Animal Source Record
obtained in the field as part of the Surveillance Activity (e.g., 'first
letter refers to the pathogen, the next two letters refer to the country,
the next letter refers to the taxonomic group, the number is the sequential
number of the Animal Source in the Surveillance Activity code, and the number
is the sequential number of the Animal Source Record')",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityFieldAnimalSourceRecordInclusionCriteriaAny",
Label="Any Animal Source Record Inclusion Criteria",
Definition="Answer to the question: 'Is there any criteria to include
specific Animal Source Records of the species of interest that were obtained in the field
besides the species itself? (e.g., animals of certain age)'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityFieldAnimalSourceRecordInclusionCriteria",
Label="Animal Source Record Inclusion Criteria",
Definition="The specific criteria for the inclusion of Animal Source Records
obtained in the field, if any",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityFieldAnimalSourceRecordExclusionCriteriaAny",
Label="Any Animal Source Record Exclusion Criteria",
Definition="Answer to the question: 'Is there any criteria to exclude
specific Animal Source Records of the species of interest that were obtained in the field?
(e.g., animals of certain age)'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityFieldAnimalSourceRecordExclusionCriteria",
Label="Animal Source Record Exclusion Criteria",
Definition="The specific criteria for the exclusion of Animal Source Records
obtained in the field, if any",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityFieldAnimalSourceRecordVaccinated",
Label="Field Animal Source Record ted",
Definition="Answer to the question: 'Are Animal Sources obtained in the field
vaccinated at sampling as part of the Surveillance Activity",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityFieldNewAnimalSourceRecordVaccinatedAgainst",
Label="Field Animal Source Record Vaccinated Against",
Definition="The hazards vaccinated against. Vaccines against toxins and other
non-pathogen hazards must also be reported",
Type="Multiple selection",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityFieldAnimalSourceRecordNumberBySpeciesCaptivity",
Label="Number Field Animal Source Records Per Species Captivity",
Definition="Number of Animal Source Records from the field per species, and
captivity category",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityAnimalSourceRecordClustering",
Label="Animal Source Records Clustering",
Definition="Answer to the question: 'Are Animal Source Records clustered in units
smaller than the Event?'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityAnimalSourceRecordClusteringDescription",
Label="Animal Source Records Cluster Description",
Definition="Description of Animal Source Records cluster units smaller than Event",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivitySourceOrCarcassOrStoredCarcassDiagnostic",
Label="Animal Source Collected Stored Carcass Diagnostic",
Definition="Answer to the question: 'Are Animal Sources or their collected
or stored Carcasses use to conduct a Diagnostic during the Surveillance Activity?'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivitySourceOrCarcassOrStoredCarcassDiagnosticProtocols",
Label="Animal Source Collected Stored Carcass Diagnostic Protocols",
Definition="Protocols of the new Diagnostic(s) conducted on Animal Sources or
their collected or stored Carcasses",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivitySourceOrCarcassOrStoredCarcassDiagnosticProtocolsReferences",
Label="Animal Source Collected Stored Carcass Diagnostic Protocol References",
Definition="References associated with the protocols of Diagnostics conducted
on Animal Sources or their collected or stored Carcasses",
Type="String",
Mandatory="No"),
data.frame(
Variable="SurveillanceActivitySourceOrCarcassOrStoredCarcassDiagnosticsOutput",
Label="Animal Source Collected Stored Carcass Diagnostic Output",
Definition="Description of the output of the Diagnostics conducted in Animal Sources or
their collected or stored Carcasses (e.g., a color band, a sequence, a cultivated plate,
etc.",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivitySourceOrCarcassOrStoredCarcassDiagnosticDiagnosticProducts",
Label="Animal Source Collected Stored Carcass Diagnostic Products",
Definition="Answer to the question: 'Do any of the Diagnostics conducted in Animal Sources or
their collected or stored Carcasses generate products that are stored?'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityAnimalSourceSpecimens",
Label="Animal Source Specimens",
Definition="Answer to the question: 'Are Specimens, collected from the field,
collected from a stored Carcass, or stored included in the Surveillance Activity?'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityFieldAnimalSourceSpecimens",
Label="Field Animal Source Specimens",
Definition="Answer to the question: 'Are Specimens from Animal Sources collected
from the field during the Surveillance Activity?'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityFieldAnimalSourceSpecimenTypes",
Label="Field Animal Source Specimen Types",
Definition="The type of Animal Source Specimens collected in the field as
part of the Surveillance Activity",
Type="Multiple selection",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityFieldAnimalSourceSpecimenCollectionMethod",
Label="Field Animal Source Specimen Collection Method",
Definition="Description of the methods to obtain Specimens from Animals
Sources in the field during the Surveillance Activity",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityFieldAnimalSourceSpecimenCollectionMethodReferences",
Label="Field Animal Source Specimen Collection Method References",
Definition="References asociated with the methods to obtain Specimens from Animals
Sources in the field during the Surveillance Activity",
Type="String",
Mandatory="No"),
data.frame(
Variable="SurveillanceActivityFieldAnimalSourceSpecimenFieldStorage",
Label="Field Animal Source Specimen Field Storage",
Definition="Method to store the Animal Source Specimens collected in the
field while in the field during the Surveillance Activity",
Type="Multiple selection",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityStoredCarcassNewSpecimens",
Label="Stored Carcasses New Specimens",
Definition="Answer to the question: 'Are new Specimens collected from stored
Carcasses included in the Surveillance Activity?'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityStoredCarcassNewSpecimenTypes",
Label="Stored Carcasses New Specimen Types",
Definition="The type of Animal Source Specimens collected from stored Carcasses
as part of the Surveillance Activity",
Type="Multiple selection",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityStoredCarcassNewSpecimenCollectionMethod",
Label="Stored Carcasses New Specimen Collection Method",
Definition="Description of the methods to obtain Specimens from stored Carcasses
during the Surveillance Activity",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityStoredCarcassNewSpecimenCollectionMethodReferences",
Label="Field Animal Source Specimen Collection Method References",
Definition="References asociated with the methods to obtain Specimens from stored Carcasses
during the Surveillance Activity",
Type="String",
Mandatory="No"),
data.frame(
Variable="SurveillanceActivityNewSpecimenCodeStructure",
Label="Field Animal Source Specimen Code Structure",
Definition="Explain the nomenclature of the Codes of Animal Source Specimens
obtained as part of the Surveillance Activity (e.g., 'first
letter refers to the pathogen, the next two letters refer to the country,
the next letter refers to the taxonomic group, the number is the sequential
number of the Animal Source in the Surveillance Activity code, and the number
is the sequential number of the Specimen')",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityNewSpecimenInclusionCriteriaByTypeAny",
Label="Any New Animal Source Specimen Inclusion Criteria",
Definition="Answer to the question: 'Is there any criteria to include
specific new Animal Source Specimens obtained during the Surveillance Activity?'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityNewSpecimenInclusionCriteriaByType",
Label="New Animal Source Specimen Inclusion Criteria",
Definition="The specific criteria for the inclusion of new Animal Source Specimens
obtained during the Surveillance Activity, if any, by Specimen Type",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityNewSpecimenExclusionCriteriaByTypeAny",
Label="Any New Animal Source Specimen Enclusion Criteria",
Definition="Answer to the question: 'Is there any criteria to exclude
specific new Animal Source Specimens obtained during the Surveillance Activity?'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityNewSpecimenExclusionCriteriaByType",
Label="New Animal Source Specimen Exclusion Criteria",
Definition="The specific criteria for the exclusion of new Animal Source Specimens
obtained during the Surveillance Activity, if any, by Specimen Type",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityNewSpecimenLabStorage",
Label="New Specimen Laboratory Storage",
Definition="Method to store new Animal Source Specimens generated during the
Surveillance Activity",
Type="Multiple selection",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityNumberNewAnimalSourceSpecimensKnown",
Label="Animal Source Number Field Specimens Known",
Definition="Answer to the question: 'Is the number of Specimens from Animal
Sources to be collected in the field as part of the Surveillance Activity known
a priori?'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityNumberNewAnimalSourceSpecimensByTypeSpecies",
Label="Animal Source Number Field Specimens By Type Species",
Definition="The number of Specimens from Animal Sources to be collected in the
field as part of the Surveillance Activity by type and species",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityStoredAnimalSourceSpecimens",
Label="Stored Animal Source Specimens",
Definition="Answer to the question: 'Are stored Animal Sources Specimens
included the Surveillance Activity?'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityStoredAnimalSourceSpecimenTypes",
Label="Stored Animal Source Specimen Types",
Definition="The type of stored Animal Source Specimens included in the
Surveillance Activity",
Type="Multiple selection",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityStoredAnimalSourceSpecimensProjectOrigin",
Label="Stored Specimens Project Origin Code",
Definition="The Code of the Project during which the stored Animal Source
Specimens included in the current Surveillance Activity were collected",
Type="Multiple selection", # yes, no
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityStoredAnimalSourceSpecimensSurveillanceActivity",
Label="Stored Specimens Previous Surveillance Activity Code",
Definition="The previous Surveillance Activity Codes of the stored Animal
Source Specimens included in the current Surveillance Activity",
Type="Multiple selection", # yes, no
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityStoredAnimalSourceSpecimenInclusionCriteriaByTypeAny",
Label="Any Stored Animal Source Specimen Inclusion Criteria",
Definition="Answer to the question: 'Is there any criteria to include
specific stored Animal Source Specimens?'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityStoredAnimalSourceSpecimenInclusionCriteriaByType",
Label="Stored Animal Source Record Inclusion Criteria",
Definition="The specific criteria for the inclusion of stored Animal Source
Specimens, if any, by Specimen Type",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityStoredAnimalSourceSpecimenExclusionCriteriaByTypeAny",
Label="Any Stored Animal Source Specimen Exclusion Criteria",
Definition="Answer to the question: 'Is there any criteria to exclude
specific stored Animal Source Specimens?'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityStoredAnimalSourceSpecimenExclusionCriteriaByType",
Label="Stored Animal Source Record Exclusion Criteria",
Definition="The specific criteria for the exclusion of stored Animal Source
Specimens, if any, by Specimen Type",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityNumberStoredAnimalSourceSpecimensKnown",
Label="Animal Source Number Stored Specimens Known",
Definition="Answer to the question: 'Is the number of stored Specimens from Animal
Sources to be included in the Surveillance Activity known
a priori?'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityNumberStoredAnimalSourceSpecimensByTypeSpecies",
Label="Animal Source Number Stored Specimens By Type Species",
Definition="The number of stored Specimens from Animal
Sources to be included in the Surveillance Activity by type and species",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityAnimalSourceSpecimensIncludesParasitesVectors",
Label="Animal Source Specimens Includes Parasites or Vectors",
Definition="Answer to the question: 'Are parasites or vectors collected from Animal Sources
included as Specimens in the current Surveillance Activity? (e.g.,
collecting a tick directly from a wolf or in the proximity of a carcass). If the tick is
collected fomr the environment, then the parasite or vector is an 'Arthropod Source')",
Type="Boolean",
Mandatory="No"),
data.frame(
Variable="SurveillanceActivityAnimalSourceSpecimenPooling",
Label="Animal Source Specimen Pooling",
Definition="Answer to the question: 'Are Animal Source Specimens
included in the current Surveillance Activity pooled?'
(for a definition of 'pooling' in the database see the online database manual)",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityAnimalSourceSpecimenPoolingStrategy",
Label="Animal Source Specimen Pooling Strategy",
Definition="Explaination of the method to pool Animal Source Specimens
used in the current Surveillance Activity (for a definition of 'pooling' in
the database see the online database manual)",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivitySpecimenNewDiagnostics",
Label="Surveillance Activity Animal Source Diagnostics",
Definition="Answer to the question: 'Are Diagnostics conducted with
Animal Source Specimens (new or stored) as part of the Surveillance Activity?'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivitySpecimenNewDiagnosticsProtocolByHazardSpecimenTypeSpecies",
Label="Animal Source Protocol Diagnostics",
Definition="Description of the Diagnostic protocols conducted with the
Animal Source Specimens included in the Surveillance Activity per hazard, Specimen type,
and host species",
Type="String",
Mandatory="Yes"),
data.frame(