-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdd_surv_act_env_source.R
1013 lines (864 loc) · 47.1 KB
/
dd_surv_act_env_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
# @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ #
# Environmental Source Dictionary #
# @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ #
environmental_source<-
list(
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceNumber",
Label="Surveillance Activity Environmental Source Number",
Definition="The full number of Environmental Sources targeted in the
Surveillance Activity",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceRecordsNumber",
Label="Surveillance Activity Environmental Source Records Number",
Definition="The full number of Environmental Source Records of the
Surveillance Activity",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityNewEnvironmentalSourceRecordsIncluded",
Label="Surveillance Activity New Environmental Source New Records Included",
Definition="Answer to the question: 'Are Environmental Source Records from
New Environmental sources part of the Surveillance Activity
(e.g., collection of data from new Environmental Sources)?'",
Type="Boolean",
Mandatory="Yes"),
# data.frame(
# Variable="SurveillanceActivityNewEnvironmentalSourceDefinition",
# Label="Surveillance Activity New Environmental Source Definition",
# Definition="Description of what the New Environmental Sources
# are (e.g., a pond, a river, feces, etc.)",
# Type="String",
# Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityNewEnvironmentalSourceCodeStructure",
Label="Surveillance Activity New Environmental Source Code Structure",
Definition="Explain the nomenclature of the new Environmental 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 Environmental Source')",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceLocationPreviousSurveillanceActivities",
Label="Surveillance Activity Environmental Source Locations in Previous Surveillance Activities",
Definition="Answer to the question: 'Have any of the Locations where
Environmental Source are placed in the Surveillance Activity been included in previous
Suveillance Activities",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceLocationPreviousProjectCodes",
Label="Surveillance Activity Environmental Source Locations in Previous Project Codes",
Definition="The codes of previous Projects containing the Locations where
Environmental Source are placed in the current Surveillance Activity",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceLocationPreviousSurveillanceActivitiesCodes",
Label="Surveillance Activity Environmental Source Locations in Previous Surveillance Activities",
Definition="The codes of previous Surveillance Activities containing the Locations where
Environmental Source are placed in the current Surveillance Activities ",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceLocationUnitOfInterest",
Label="Surveillance Activity Environmental Source Location Unit of Interest",
Definition="Answer to the question: 'Are the Locations where Environmental Source
are placed a unit of interest in the Surveillance Activity (e.g., parcels where
water is collected from)?'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceLocationDefinition",
Label="Surveillance Activity Environmental Source Location Definition",
Definition="Description of what the Locations where Environmental Sources are
placed represent (e.g., a parcel, an zone of a proteced area, a city, etc.)",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceLocationList",
Label="Surveillance Activity Environmental Source Location List",
Definition="A list with the Location names or codes where Environmental Sources
are placed in the Surveillance Activity",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceLocationSpatialFileProvided",
Label="Surveillance Activity Environmental Source Location Spatial File Provided",
Definition="Answer to the question: 'Has a file with the spatial data and other
relevant attributes of the Locations where Environmental Source
are placed in the Surveillance Activity been provided?'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceLocationPolygonProjection",
Label="Surveillance Activity Environmental Source Location Polygon Projection",
Definition="The projection of the spatial data of the Locations in the file
provided",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceLocationOtherAttributes",
Label="Surveillance Activity Environmental Source Location Other Attributes",
Definition="Answer to the question: 'Does the Surveillance Activity involve tracking
other properties of the Locations where Environmental Sources are placed
not included in the the data model?'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceLocationListDefinitionOtherAttributes",
Label="Surveillance Activity Environmental Source Location Definition Other Attributes",
Definition="Description of the other attributes of Locations where Environmental Sources
are placed not included in the data model. Provide a list with the
name of the attributes and their definition",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourcePlannedVisitsPerLocation",
Label="Surveillance Activity Environmental Source Planned Visits Per Location",
Definition="The number of planned visits per Location where Environmental Source
are placed in the Surveillance Activity. An unknown number,
'at least X', or 'at most X' are accepted resposes",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceEventNumberPerLocationKnown",
Label="Surveillance Activity Environmental Source Event Number Per Location Known",
Definition="Answer to the question: 'Is the total number of Events per Location where
new Environmental Source Records are obtained from during the Surveillance Activity known?'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceEventNumberPerLocation",
Label="Surveillance Activity Environmental Source Event Number Per Location",
Definition="The total number of Events per Location where
new Environmental Source Records are obtained from during the Surveillance Activity.
An unknown number, 'at least X', or 'at most X' are accepted resposes",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceCollectionNumberPerLocationKnown",
Label="Surveillance Activity Environmental Source Collection Number Per Location Known",
Definition="Answer to the question: 'Is the total number of Collections per Location where
new Environmental Source Records are obtained from during the Surveillance Activity known?'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceCollectionNumberPerLocation",
Label="Surveillance Activity Environmental Source Collection Number Per Location",
Definition="the total number of Collections per Location where
new Environmental Source Records are obtained from during the Surveillance Activity.
An unknown number, 'at least X', or 'at most X' are accepted resposes",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceNumberPerLocationKnown",
Label="Surveillance Activity Environmental Source Number Per Location Known",
Definition="Answer to the question: 'Is the total number of Environmental Source
per Location included in the Surveillance Activity known?'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceNumberPerLocation",
Label="Surveillance Activity Environmental Source Number Per Location",
Definition="The total number of Environmental Sources per Location included
in the Surveillance Activity. An unknown number, 'at least X', or 'at most X'
are accepted resposes",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityNewEnvironmentalSourceRecordsNumberPerLocationKnown",
Label="Surveillance Activity New Environmental Source Records Number Per Location Known",
Definition="Answer to the question: 'Is the total number of Environmental Source Records
targeted per Location where new Environmental Source Records are obtained from during
the Surveillance Activity known?'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityNewEnvironmentalSourceRecordsNumberPerLocation",
Label="Surveillance Activity New Environmental Source Records Number Per Location",
Definition="The total number of Environmental Source Records targeted per Location
where new Environmental Source Records are obtained from during the Surveillance Activity.
An unknown number, 'at least X', or 'at most X' are accepted resposes",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityNewEnvironmentalSourceRecordsNumberPerVisitPerLocationKnown",
Label="Surveillance Activity New Environmental Source Records Number Per Visit to a Location Known",
Definition="Answer to the question: 'Is the total number of Environmental Source Records
targeted per visit to each Location where new Environmental Source Records are obtained from during
the Surveillance Activity known?'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityNewEnvironmentalSourceRecordsNumberPerVisitPerLocation",
Label="Surveillance Activity New Environmental Source Records Number Per Visit per Location",
Definition="The total number of Environmental Source Records targeted per visit to each Location
where new Environmental Source Records are obtained from during the Surveillance Activity.
An unknown number, 'at least X', or 'at most X' are accepted resposes",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceEventDefinition",
Label="Surveillance Activity Environmental Source Event Definition",
Definition="Description of what the Events where Environmental Source Records
are collected from (e.g., a house, a cave, a tree, etc.)",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalEventIncludesAnimalSources",
Label="Surveillance Activity Event Environmental Source Includes Animal Sources",
Definition="Answer to the question: Do Events with Environmental Source records
include records of Animal Sources?",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalEventIncludesGroupSources",
Label="Surveillance Activity Event Environmental Source Includes Group Sources",
Definition="Answer to the question: Do Events with Environmental Source records
include records of Group Sources?",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalEventIncludesArthropodSources",
Label="Surveillance Activity Event Environmental Source Event Includes Arthropod Sources",
Definition="Answer to the question: Do Events with Environmental Source records
include records of Arthropod Sources?",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalEventOtherAttributes",
Label="Surveillance Activity Event Environmental Source Other Attributes",
Definition="Answer to the question: 'Are there other properties of interest of the
Events containing Environmental Source Records that are not include in the the data model?'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalEventListDefinitionOtherAttributes",
Label="Surveillance Activity Event Environmental Source Definition Other Attributes",
Definition="Description of other attributes of interest for the Events containing
Environmental Source Records not included in the data model?'",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceCollectionNumberPerEventKnown",
Label="Surveillance Activity Environmental Source Collection Number Per Event Known",
Definition="Answer to the question: 'Is the total number of Collections
targeting Environmental Sources per Event known?",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceCollectionNumberPerEvent",
Label="Surveillance Activity Environmental Source Collection Number Per Event",
Definition="The total number of Collections targeting Environmental Sources per Event.
An unknown number, 'at least X', or 'at most X' are accepted resposes",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityNewEnvironmentalSourceRecordsNumberPerEventKnown",
Label="Surveillance Activity New Environmental Source Records Number Per Event Known",
Definition="Answer to the question: 'Is the total number of Environmental Source Records
targeted per Event known?",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityNewEnvironmentalSourceRecordsNumberPerEvent",
Label="Surveillance Activity New Environmental Source Records Number Per Event",
Definition="The total number of Environmental Source Records targeted per Event.
An unknown number, 'at least X', or 'at most X' are accepted resposes",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourcePassiveCollection",
Label="Surveillance Activity Environmental Source Passive Collection",
Definition="Answer to the question:'Are Environmental Source Records obtained through a
passive collection strategy (e.g., citizen reports, information from news outlets)?'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceActiveCollection",
Label="Surveillance Activity Environmental Source Active Collection",
Definition="Answer to the question:'Are Environmental Source Records 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="SurveillanceActivityEnvironmentalSourceCollectionMethod",
Label="Surveillance Activity Environmental Source Collection Method",
Definition="Description of the Collection methods used to obtain new
Environmental Source Records (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="SurveillanceActivityEnvironmentalSourceCollectionMethodReferences",
Label="Surveillance Activity Environmental Source Collection Method References",
Definition="Name the references supporting the methods used to collect the new
Environmental Source Records",
Type="String",
Mandatory="No"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceActiveCollectionMethodExpectedEffort",
Label="Surveillance Activity Environmental Source Active Collection Expected Effort",
Definition="Expected Effort of the Active Collection Methods to obtain Environmental
Source Records",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceCollectionRecordsOtherSourceTypes",
Label="Surveillance Activity Environmental Source Collection Records Other Source Types",
Definition="Answer to the question: 'Do Collections targeting Environmental Source Records
also target other Source types?'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceCollectionOtherAttributes",
Label="Surveillance Activity Environmental Source Collection Other Attributes",
Definition="Answer to the question: 'Does the Surveillance Activity involve tracking
other properties of Collections to obtain Environmental Source Records not included in the
data model?'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceCollectionListDefinitionOtherAttributes",
Label="Surveillance Activity Environmental Source Collection Definition Other Attributes",
Definition="Description of other attributes of interest for the Collections targeting
Environmental Source Records not included in the data model. Provide a list with the name
of the attributes and their definition",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityNewEnvironmentalSourceRecordsNumberPerCollectionKnown",
Label="Surveillance Activity New Environmental Source Records Number Per Collection Known",
Definition="Answer to the question: 'Is the number of Environmental Source Records per
Collection targeting Environmental Sources known?",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityNewEnvironmentalSourceRecordsNumberPerCollection",
Label="Surveillance Activity New Environmental Source Records Number Per Collection",
Definition="The total number of Environmental Sources Records per Collection.
An unknown number, 'at least X', or 'at most X' are accepted resposes",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourcePreDetermined",
Label="Surveillance Activity Environmental Source PreDetermined",
Definition="Answer to the question: 'Are the Environmental Sources to be included
in the Surveillace Activity predetemined?' (the opposite option is to determine them
opportunistically during a Field Visit)",
Type="Single selection",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourcePreviousSurveillanceActivities",
Label="Surveillance Activity Environmental Source in Previous Surveillance Activities",
Definition="Answer to the question: 'Have any of the Environmental Sources of the Surveillance
Activity been included in previous Suveillance Activities",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourcePreviousProjectCodes",
Label="Surveillance Activity Environmental Source Previous Project Codes",
Definition="The codes of previous Projects containing the Environmental Sources included
in the current Surveillance Activity",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourcePreviousSurveillanceActivitiesCodes",
Label="Surveillance Activity Environmental Source Previous Surveillance Activity Codes",
Definition="The codes of previous Surveillance Activities containing the Environmental Sources included
in the current Surveillance Activity",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceList",
Label="Surveillance Activity Environmental Source List",
Definition="A list with the names or codes of the Environmental Source
included in the Surveillance Activity",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceHowDefined",
Label="Surveillance Activity Environmental Source How Defined",
Definition="Description of the process to select the Environmental Sources
included in the Surveillance Activity",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceIdentificationMethod",
Label="Surveillance Activity Environmental Source Identification Method",
Definition="The methodology used to identify the Environmental Sources included in
the Surveillance Activity",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceIdentificationMethodReferences",
Label="Surveillance Activity Environmental Source Identification Method References",
Definition="References methodology used to identify the Environmental Sources included in
Surveillance Activity",
Type="String",
Mandatory="No"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceInclusionCriteria",
Label="Surveillance Activity Environmental Source Inclusion Criteria",
Definition="The specific criteria to include Environmental Sources in the
Surveillance Activity, if any",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceExclusionCriteria",
Label="Surveillance Activity Environmental Source Exclusion Criteria",
Definition="The specific criteria to exclude Environmental Sources from the
Surveillance Activity, if any",
Type="String",
Mandatory="No"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceFollowedOverTime",
Label="Surveillance Activity Environmental Source Followed Over Time",
Definition="Answer to the question: 'Are Environmental Sources followed during the
Surveillance Activity and Source Records obtained over time?'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceFollowedOverTimeFrequecy",
Label="Surveillance Activity Environmental Source Followed Over Time Frequency",
Definition="Description of the frequency that Environmental Source
will be examined",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourcePlannedVisitsPerSource",
Label="Surveillance Activity Environmental Source Planned Visits Per Source",
Definition="The number of planned visits per Environmental Source of the
Surveillance Activity. An unknown number, 'at least X', or 'at most X'
are accepted resposes",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceOtherAttributes",
Label="Surveillance Activity Environmental Source Other Attributes",
Definition="Answer to the question: 'Does the Surveillance Activity involve tracking
other properties of Environmental Sources not included in the the data model?'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceListDefinitionOtherAtttributes",
Label="Surveillance Activity Environmental Source Definition Other Attributes",
Definition="Description of other attributes of interest for the Environmental Sources
not included in the the data model?'",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceSpatiaFileProvided",
Label="Surveillance Activity Environmental Source Spatial File Provided",
Definition="Answer to the question: 'Has a file with the spatial data and other
relevant attributes of the Environmental Sources in the Surveillance Activity
been provided?'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceProjection",
Label="Surveillance Activity Environmental Source Projection",
Definition="The projection of the spatial data of the Environmental Sources in the file
provided",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityPreviousEnvironmentalSourceNewRecords",
Label="Surveillance Activity Previous Environmental Source New Records",
Definition="Answer to the question: 'Do Environmental Sources that have been
included in previous Surveillance Activities generate new records for the current
Surveillance Activity?'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityPreviousEnvironmentalSourceProjectID",
Label="Surveillance Activity Previous Environmental Source Project ID",
Definition="The code of the Projects under which Environmental Sources
included in the current Surveillance Activity were previously included",
Type="Multiple selection",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityPreviousEnvironmentalSourceSurveillanceActivityID",
Label="Surveillance Activity Previous Environmental Source SurveillanceActivity ID",
Definition="The code of the Surveillance Activites under which Environmental Sources
included in the current Surveillance Activity were previously included",
Type="Multiple selection",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityPreviousEnvironmentalSourceInclusionCriteria",
Label="Surveillance Activity Previous Environmental Source Inclusion Criteria",
Definition="The specific criteria for the inclusion of previous Environmental Sources,
if any",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityPreviousEnvironmentalSourceExclusionCriteria",
Label="Surveillance Activity Previous Environmental Source Exclusion Criteria",
Definition="The specific criteria for the exclusion of previous Environmental Sources,
if any",
Type="String",
Mandatory="No"),
data.frame(
Variable="SurveillanceActivityNewEnvironmentalSourceRecordInclusionCriteria",
Label="Surveillance Activity New Environmental Source Records Inclusion Criteria",
Definition="The specific criteria for the inclusion of new Environmental Source Records,
if any",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityNewEnvironmentalSourceRecordExclusionCriteria",
Label="Surveillance Activity New Environmental Source Records Exclusion Criteria",
Definition="The specific criteria for the exclusion of new Environmental Source Records,
if any",
Type="String",
Mandatory="No"),
data.frame(
Variable="SurveillanceActivityNewEnvironmentalSourceRecordCodeStructure",
Label="Surveillance Activity New Environmental Source Record Code Structure",
Definition="Explain the nomenclature of new Environmental Source Record 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,
the number is the sequential number of the Environmental Sourcein the
Surveillance Activity code, and the number is the sequential number of the
Environmental SourceRecord')",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityNewEnvironmentalSourceRecordAbiotic",
Label="Surveillance Activity New Environmental Source Record Abiotic",
Definition="Answer to the question: 'Do new Environmental Source Records of
the Surveillance Activity include abiotic tissue?'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityNewEnvironmentalSourceRecordAbioticTissueType",
Label="Surveillance Activity New Environmental Source Record Abiotic Tissue Type",
Definition="The type of abiotic tissue of the new Environmental Source Records of
the Surveillance Activity",
Type="Multiple selection",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityNewEnvironmentalSourceRecordBiotic",
Label="Surveillance Activity New Environmental Source Record Biotic",
Definition="Answer to the question: 'Do new Environmental Source Records of
the Surveillance Activity include Biotic tissue?'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityNewEnvironmentalSourceRecordBioticTissueType",
Label="Surveillance Activity New Environmental Source Record Biotic Tissue Type",
Definition="The type of biotic tissue of the new Environmental Source Records of
the Surveillance Activity",
Type="Multiple selection",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityNewEnvironmentalSourceRecordBioticSpecies",
Label="Surveillance Activity New Environmental Source Record Biotic Species",
Definition="Species sourcing the biotic tissue of the new Environmental Sources
Records of the Surveillance Activity. It is possible to select high taxonomy
levels such as 'Mammalia', 'Chordata', 'Insecta', etc. to indicate that no
particular species is targeted or when the species is unknown",
Type="Multiple selection",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityNewEnvironmentalSourceRecordSpeciesIdentification",
Label="Surveillance Activity New Environmental Source Record Species Identification Method",
Definition="Answer to the question: 'Are the species sourcing new biotic Environmental
Source Records identified'?",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityNewEnvironmentalSourceRecordSpeciesIdentificationMethod",
Label="Surveillance Activity New Environmental Source Record Species Identification Method",
Definition="The methodology used to identify the species sourcing the new biotic Environmental
Source Record",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityNewEnvironmentalSourceRecordSpeciesIdentificationMethodReferences",
Label="Surveillance Activity New Environmental Source Record Species Identification Method References",
Definition="The referecnes associated with the methodology used to identify the species
sourcing the new biotic Environmental Source Record",
Type="String",
Mandatory="No"),
data.frame(
Variable="SurveillanceActivityNewEnvironmentalSourceRecordsNumberPerSourceKnown",
Label="Surveillance Activity Environmental Source Event Number Per Location Known",
Definition="Answer to the question: 'Is the total number of new Environmental Source Records
per Source where new Environmental Source Records are obtained from during the Surveillance Activity?'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityNewEnvironmentalSourceRecordsNumberPerSource",
Label="Surveillance Activity New Environmental Source Records Number Per Source",
Definition="The total number of new Environmental Source Records per Source where
new Environmental Source Records are obtained from during the Surveillance Activity.
An unknown number, 'at least X', or 'at most X' are accepted resposes",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalStoredSpecimen",
Label="Surveillance Activity Stored Environmental Source Specimens",
Definition="Answer to the question: 'Are stored Environmental Sources Specimens
of previous Surveillance Activities included in the current Surveillance Activity?'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalStoredSpecimenProjectOrigin",
Label="Surveillance Activity Stored Environmental Source Specimens Project Origin",
Definition="The code of the Projects under which stored Environmental Source Specimens
included in the current Surveillance Activity were originated",
Type="Multiple selection",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalStoredSpecimenSurveillanceActivity",
Label="Surveillance Activity Stored Environmental Source Specimens Surveillance Activity Origin",
Definition="The code of the Surveillance Activities under which stored Environmental Source Specimens
included in the current Surveillance Activity were originated",
Type="Multiple selection",
Mandatory="Yes"),
# data.frame(
# Variable="SurveillanceActivityPreviousEnvironmentalNewSpecimens",
# Label="Surveillance Activity Previous Stored Environmental Source New Specimens",
# Definition="Answer to the question: 'In the current Surveillance Activity,
# are new Specimens generated from previous stored Animal Sources (Carcasses)?'",
# Type="Boolean",
# Mandatory="Yes"),
#
data.frame(
Variable="SurveillanceActivityNewEnvironmentalSpecimen",
Label="Surveillance Activity New Environmental Source Specimens",
Definition="Answer to the question: 'In the current Surveillance Activity,
are new Specimens generated from Environmental Sources?'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityNewEnvironmentalSpecimenCodeStructure",
Label="Surveillance Activity New Environmental Source Specimens Code Structure",
Definition="Explain the nomenclature of the new Environmental Source Record Specimen 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,
the number is the sequential number of the Environmental Source in the
Surveillance Activity code, and the number is the sequential number of the
Environmental Source Record and finally a sequential letter for the specimen')",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityNewEnvironmentalSourceSpecimenPerEnvironmentalSourceRecordKnown",
Label="Surveillance Activity New Environmental Source Specimens Per Record Known",
Definition="Answer to the question: 'Is the total number of new Environmental Specimens
targeted per Environmental Source Record obtained during the Surveillance Activity known?'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityNewEnvironmentalSourceSpecimenPerEnvironmentalSourceRecord",
Label="Surveillance Activity New Environmental Source Specimens Per Record",
Definition="The total number of Environmental Specimens targeted per Environmental Source
Record obtained during the Surveillance Activity. An unknown number, 'at least X', or 'at most
X' are accepted resposes",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityNewEnvironmentalSourceSpecimenCreationMethod",
Label="Surveillance Activity New Specimens Environmental Source Creation Method ",
Definition="Description how new Environmental Specimen are created from the
Environmental Source Record",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityNewEnvironmentalSourceSpecimenCreationMethodReferences",
Label="Surveillance Activity New Specimens Environmental Source Creation Method References",
Definition="The references associated with the method to generate new Environmental
Specimens from Environmental Source Records",
Type="String",
Mandatory="No"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceSpecimenInclusionCriteria",
Label="Surveillance Activity Environmental Source Specimens Inclusion Criteria",
Definition="The specific criteria for the inclusion of Environmental Source Specimens,
in the Surveillance Activity, if any",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceSpecimenExclusionCriteria",
Label="Surveillance Activity Environmental Source Specimens Exclusion Criteria",
Definition="The specific criteria for the exclusion of Environmental Source Specimens,
in the Surveillance Activity, if any",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityNewEnvironmentalSourceSpecimensFieldStorage",
Label="Surveillance Activity New Environmental Source Specimens Field Storage",
Definition="Method to store the new Environmental Source Specimens while
in the field under the current Surveillance Activity",
Type="Mutiple selection",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityNewEnvironmentalSourceSpecimensLabStorage",
Label="Surveillance Activity New Environmental Source Specimens Laboratory Storage",
Definition="Method to store the new Environmental Source Specimens collected
in the laboratory under the current Surveillance Activity",
Type="Mutiple selection",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceSpecimenPooling",
Label="Surveillance Activity Environmental Source Specimen Pooling",
Definition="Answer to the question: 'Are Environmental 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="SurveillanceActivityEnvironmentalSourceSpecimenPoolingStrategy",
Label="Surveillance Activity Environmental Source Specimen Pooling Strategy",
Definition="Explaination of the method to pool Environmental 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="SurveillanceActivityEnvironmentalSourceSpecimenHazardType",
Label="Surveillance Activity Environmental Source Specimen Targeted Hazard Type",
Definition="The types of hazards targeted during the Surveillance Activity in Environmental Source
Specimens",
Type="Multiple selection",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceSpecimenHazardNames",
Label="Surveillance Activity Environmental Source Specimen Targeted Hazard Names",
Definition="The names of the hazards targeted during the Surveillance Activity in Environmental
Source Specimens",
Type="Multiple selection",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceSpecimenNewDiagnostics",
Label="Surveillance Activity Environmental Source Environmental New Diagnostics",
Definition="Answer to the question: 'Are new Diagnostics conducted with
the Environmental Source Specimens included in the Surveillance Activity?'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceSpecimenNewDiagnosticsProtocol",
Label="Surveillance Activity Environmental Source New Diagnostics Protocol",
Definition="Description of the Diagnostic protocols conducted with the
Environmental Source Specimens included in the Surveillance Activity",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceSpecimenNewDiagnosticsProtocolReferences",
Label="Surveillance Activity Environmental Source New Diagnostics Protocol References",
Definition="References associated with the Diagnostic protocols conducted with the
Environmental Source Specimens included in the Surveillance Activity",
Type="String",
Mandatory="No"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceSpecimenNewDiagnosticsProducts",
Label="Surveillance Activity Environmental Source Specimen New Diagnostic Products",
Definition="Answer to the question: 'Are new Diagnostic Products created
as result of the Diagnostics conducted with the Environmental Source Specimens
included in the Surveillance Activity",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivitySourceSpecimenCriteriaPositiveDiagnostic",
Label="Surveillance Activity Environmental Source Specimen Criteria Positive Diagnostic",
Definition="Criteria to establish that each Diagnostic test applied
to an Environmental Source Specimen is positive (Diagnostic case definition)",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivitySourceSpecimenCriteriaPositiveDiagnosticReferences",
Label="Surveillance Activity Environmental Source Specimen Criteria Positive Diagnostic References",
Definition="References associated with the criteria to establish that each Diagnostic
test applied to an Environmental Source Specimen is positive",
Type="String",
Mandatory="No"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceSpecimenCriteriaPositiveCase",
Label="Surveillance Activity Environmental Source Specimen Criteria Positive Case",
Definition="Criteria to establish that a Environmental Source Specimen is positive
for each specific hazard targeted in the Surveillance Activity (positive Specimen
case definition)",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceSpecimenCriteriaPositiveCaseReferences",
Label="Surveillance Activity Environmental Source Specimen Criteria Positive Case References",
Definition="References associated with the criteria to establish that an Animal
Source Specimen is positive for each specific hazard targeted in the Surveillance Activity",
Type="String",
Mandatory="No"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceRecordCriteriaPositiveCase",
Label="Surveillance Activity Environmental Source Record Criteria Positive Case",
Definition="Explain the criteria to establish that an Environmental Source Record is
positive for each specific hazard targeted in the Surveillance Activity (positive
Environmental SourceRecord case definition)",
Type="String",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceRecordCriteriaPositiveCaseReferences",
Label="Surveillance Activity Environmental Source Record Criteria Positive Case References",
Definition="References associated with the criteria to establish that an Environmental
Source Record is positive for each specific hazard targeted in the Surveillance Activity",
Type="String",
Mandatory="No"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceSpecimenDiagnosticInterpretation",
Label="Surveillance Activity Environmental Source Specimen Diagnostic Interpretation",
Definition="Answer to the question: 'Are Diagnostics conducted in Environmental Source Specimens
Interpreted as part of the Surveillance Activity?'",
Type="boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceSpecimenDiagnosticInterpretationBy",
Label="Surveillance Activity Environmental Source Specimen Diagnostic Interpretation by",
Definition="The individual providing the Interpretation of the Diagnostic
conducted in Environmental Source Specimens",
Type="Single selection",
Mandatory="No"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceSpecimenInterpretation",
Label="Surveillance Activity Environmental Source Specimen Interpretation",
Definition="Answer to the question: 'Does the presence of targeted hazards
in Environmental Source Specimens receive an Interpretation as part of the Surveillance Activity?'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceSpecimenInterpretationBy",
Label="Surveillance Activity Environmental Source Specimen Interpretation by",
Definition="The individual providing the Interpretation of targeted hazards
in Environmental SourceSpecimens",
Type="Single selection",
Mandatory="No"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceRecordInterpretation",
Label="Surveillance Activity Environmental Source Record Interpretation",
Definition="Answer to the question: 'Does the presence of targeted hazards
in Environmental Source Records receive an Interpretation as part of the Surveillance Activity?'",
Type="Boolean",
Mandatory="Yes"),
data.frame(
Variable="SurveillanceActivityEnvironmentalSourceRecordInterpretationBy",
Label="Surveillance Activity Environmental Source Record Interpretation by",
Definition="The individual providing the Interpretation of the Environmental Source
Records with respect to the presence of targeted hazards",
Type="Single selection",
Mandatory="No"))