-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathethocore_table.html
More file actions
999 lines (999 loc) · 104 KB
/
ethocore_table.html
File metadata and controls
999 lines (999 loc) · 104 KB
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
<table id="terms-table" class="terms-dictionary">
<tr style="border:none;"><td></td><td></td></tr>
<tr><th colspan="2" id="Observation">Term Name: Observation</th></tr>
<tr><td>Identifier:</td><td>http://ethoinformatics.org/ethocore/Observation</td></tr>
<tr><td>Class:</td><td></td></tr>
<tr><td>Definition:</td><td>Details about the nature, context, state, or activity of a subject.</td></tr>
<tr><td>Comment:</td><td>The observation closely resembles the Darwin Core class MeasurementOrFact. In EthoCore, observations are restricted to observations about resources. Examples: An observed foraging event. An observed proximity episode. The occupancy of a location by a species.</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/Observation">Observation</a></td></tr>
<tr><th colspan="2" id="Measurement">Term Name: Measurement</th></tr>
<tr><td>Identifier:</td><td>http://ethoinformatics.org/ethocore/Measurement</td></tr>
<tr><td>Class:</td><td></td></tr>
<tr><td>Definition:</td><td>A metric measurement of a subject.</td></tr>
<tr><td>Comment:</td><td>The measurement closely resembles the Darwin Core class MeasurementOrFact. In EthoCore, measurements are restricted to metric measurements, whether other assertions are consider observations.</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/Measurement">Measurement</a></td></tr>
<tr><th colspan="2" id="Organism">Term Name: Organism</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/Organism</td></tr>
<tr><td>Class:</td><td></td></tr>
<tr><td>Definition:</td><td>A particular organism or defined group of organisms considered to be taxonomically homogeneous.</td></tr>
<tr><td>Comment:</td><td>Instances of the Organism class are intended to facilitate linking of one or more Identification instances to one or more Occurrence instances. Therefore, things that are typically assigned scientific names (such as viruses, hybrids, and lichens) and aggregates whose occurrences are typically recorded (such as packs, clones, and colonies) are included in the scope of this class.</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/Organism">Organism</a></td></tr>
<tr><th colspan="2" id="Patch">Term Name: Patch</th></tr>
<tr><td>Identifier:</td><td>http://ethoinformatics.org/ethocore/Patch</td></tr>
<tr><td>Class:</td><td></td></tr>
<tr><td>Definition:</td><td>A feature of the environment, living or otherwise, that provides nourishment, protection, or other benefit to the survival of animals or the persistence of species.</td></tr>
<tr><td>Comment:</td><td>Examples: A fruiting tree. A sleeping site. A water hole. A mineral lick.</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/Patch">Patch</a></td></tr>
<tr><th colspan="2" id="MaterialSample">Term Name: MaterialSample</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/MaterialSample</td></tr>
<tr><td>Class:</td><td></td></tr>
<tr><td>Definition:</td><td>A physical result of a sampling (or subsampling) event. In biological collections, the material sample is typically collected, and either preserved or destructively processed.</td></tr>
<tr><td>Comment:</td><td>Examples: A whole organism preserved in a collection. A part of an organism isolated for some purpose. A soil sample. A marine microbial sample.</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/MaterialSample">MaterialSample</a></td></tr>
<tr><th colspan="2" id="Event">Term Name: Event</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/Event</td></tr>
<tr><td>Class:</td><td></td></tr>
<tr><td>Definition:</td><td>An action that occurs at some location during some time.</td></tr>
<tr><td>Comment:</td><td>Examples: A specimen collection process. A machine observation.</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/Event">Event</a></td></tr>
<tr><th colspan="2" id="Activity">Term Name: Activity</th></tr>
<tr><td>Identifier:</td><td>http://ethoinformatics.org/ethocore/Activity</td></tr>
<tr><td>Class:</td><td></td></tr>
<tr><td>Definition:</td><td>An activity state scheduled or performed by an observer.</td></tr>
<tr><td>Comment:</td><td>Example: Recording behavior. Driving to camp. Conducting experiment.</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/Activity">Activity</a></td></tr>
<tr><th colspan="2" id="Location">Term Name: Location</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/Location</td></tr>
<tr><td>Class:</td><td></td></tr>
<tr><td>Definition:</td><td>A spatial region or named place.</td></tr>
<tr><td>Comment:</td><td></td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/Location">Location</a></td></tr>
<tr><th colspan="2" id="Identification">Term Name: Identification</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/Identification</td></tr>
<tr><td>Class:</td><td></td></tr>
<tr><td>Definition:</td><td>A taxonomic determination (e.g., the assignment to a taxon).</td></tr>
<tr><td>Comment:</td><td>Example: A subspecies determination of an organism.</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/Identification">Identification</a></td></tr>
<tr><th colspan="2" id="Taxon">Term Name: Taxon</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/Taxon</td></tr>
<tr><td>Class:</td><td></td></tr>
<tr><td>Definition:</td><td>A group of organisms (sensu http://purl.obolibrary.org/obo/OBI_0100026) considered by taxonomists to form a homogeneous unit.</td></tr>
<tr><td>Comment:</td><td>Example: The genus Truncorotaloides as published by Brönnimann et al. in 1953 in the Journal of Paleontology Vol. 27(6) p. 817-820.</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/Taxon">Taxon</a></td></tr>
<tr><th colspan="2" id="ResourceRelationship">Term Name: ResourceRelationship</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/ResourceRelationship</td></tr>
<tr><td>Class:</td><td></td></tr>
<tr><td>Definition:</td><td>A relationship of one rdfs:Resource (http://www.w3.org/2000/01/rdf-schema#Resource) to another.</td></tr>
<tr><td>Comment:</td><td>Resources can be thought of as identifiable records or instances of classes and may include, but need not be limited to Occurrences, Organisms, MaterialSamples, Events, Locations, GeologicalContexts, Identifications, or Taxa. Example: An instance of an Organism is the mother of another instance of an Organism.</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/ResourceRelationship">ResourceRelationship</a></td></tr>
<tr><th colspan="2" id="type">Term Name: type</th></tr>
<tr><td>Identifier:</td><td>http://purl.org/dc/terms/type</td></tr>
<tr><td>Class:</td><td>all</td></tr>
<tr><td>Definition:</td><td>The nature or genre of the resource. For EthoCore, recommended best practice is to use the controlled vocabulary specified in Ethogrammar Document Types.</td></tr>
<tr><td>Comment:</td><td>Examples: "StillImage", "MovingImage", "Sound", "PhysicalObject", "Event", "Text".</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/type">type</a></td></tr>
<tr><th colspan="2" id="modified">Term Name: modified</th></tr>
<tr><td>Identifier:</td><td>http://purl.org/dc/terms/modified</td></tr>
<tr><td>Class:</td><td>all</td></tr>
<tr><td>Definition:</td><td>The most recent date-time on which the resource was changed.</td></tr>
<tr><td>Comment:</td><td>Examples: "1963-03-08T14:07-0600" is 8 Mar 1963 2:07pm in the time zone six hours earlier than UTC, "2009-02-20T08:40Z" is 20 Feb 2009 8:40am UTC, "1809-02-12" is 12 Feb 1809, "1906-06" is Jun 1906, "1971" is just that year, "2007-03-01T13:00:00Z/2008-05-11T15:30:00Z" is the interval between 1 Mar 2007 1pm UTC and 11 May 2008 3:30pm UTC, "2007-11-13/15" is the interval between 13 Nov 2007 and 15 Nov 2007.</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/modified">modified</a></td></tr>
<tr><th colspan="2" id="language">Term Name: language</th></tr>
<tr><td>Identifier:</td><td>http://purl.org/dc/terms/language</td></tr>
<tr><td>Class:</td><td>all</td></tr>
<tr><td>Definition:</td><td>A language of the resource. Recommended best practice is to use a controlled vocabulary such as RFC 4646 [RFC4646].</td></tr>
<tr><td>Comment:</td><td>Examples: "en" for English, "es" for Spanish.</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/language">language</a></td></tr>
<tr><th colspan="2" id="license">Term Name: license</th></tr>
<tr><td>Identifier:</td><td>http://purl.org/dc/terms/license</td></tr>
<tr><td>Class:</td><td>all</td></tr>
<tr><td>Definition:</td><td>A legal document giving official permission to do something with the resource.</td></tr>
<tr><td>Comment:</td><td>Examples: "http://creativecommons.org/publicdomain/zero/1.0/legalcode", "http://creativecommons.org/licenses/by/4.0/legalcode".</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/license">license</a></td></tr>
<tr><th colspan="2" id="rightsHolder">Term Name: rightsHolder</th></tr>
<tr><td>Identifier:</td><td>http://purl.org/dc/terms/rightsHolder</td></tr>
<tr><td>Class:</td><td>all</td></tr>
<tr><td>Definition:</td><td>A person or organization owning or managing rights over the resource.</td></tr>
<tr><td>Comment:</td><td>Example: "The Regents of the University of California.".</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/rightsHolder">rightsHolder</a></td></tr>
<tr><th colspan="2" id="accessRights">Term Name: accessRights</th></tr>
<tr><td>Identifier:</td><td>http://purl.org/dc/terms/accessRights</td></tr>
<tr><td>Class:</td><td>all</td></tr>
<tr><td>Definition:</td><td>Information about who can access the resource or an indication of its security status. Access Rights may include information regarding access or restrictions based on privacy, security, or other policies.</td></tr>
<tr><td>Comment:</td><td>Example: "not-for-profit use only".</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/accessRights">accessRights</a></td></tr>
<tr><th colspan="2" id="bibliographicCitation">Term Name: bibliographicCitation</th></tr>
<tr><td>Identifier:</td><td>http://purl.org/dc/terms/bibliographicCitation</td></tr>
<tr><td>Class:</td><td>all</td></tr>
<tr><td>Definition:</td><td>A bibliographic reference for the resource as a statement indicating how this record should be cited (attributed) when used. Recommended practice is to include sufficient bibliographic detail to identify the resource as unambiguously as possible.</td></tr>
<tr><td>Comment:</td><td>Examples: "Ctenomys sociabilis (MVZ 165861)" for a specimen, "Oliver P. Pearson. 1985. Los tuco-tucos (genera Ctenomys) de los Parques Nacionales Lanin y Nahuel Huapi, Argentina Historia Natural, 5(37):337-343." for a Taxon.</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/bibliographicCitation">bibliographicCitation</a></td></tr>
<tr><th colspan="2" id="references">Term Name: references</th></tr>
<tr><td>Identifier:</td><td>http://purl.org/dc/terms/references</td></tr>
<tr><td>Class:</td><td>all</td></tr>
<tr><td>Definition:</td><td>A related resource that is referenced, cited, or otherwise pointed to by the described resource.</td></tr>
<tr><td>Comment:</td><td>Examples: "http://mvzarctos.berkeley.edu/guid/MVZ:Mamm:165861"; "http://www.catalogueoflife.org/annual-checklist/show_species_details.php?record_id=6197868".</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/references">references</a></td></tr>
<tr><th colspan="2" id="institutionID">Term Name: institutionID</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/institutionID</td></tr>
<tr><td>Class:</td><td>all</td></tr>
<tr><td>Definition:</td><td>An identifier for the institution having custody of the object(s) or information referred to in the record.</td></tr>
<tr><td>Comment:</td><td>For physical specimens, the recommended best practice is to use an identifier from a collections registry such as the Global Registry of Biodiversity Repositories (http://grbio.org/). Examples: "http://biocol.org/urn:lsid:biocol.org:col:34777", "http://grbio.org/cool/km06-gtbn). Examples: "http://biocol.org/urn:lsid:biocol.org:col:34777", "http://grbio.org/cool/km06-gtbn".</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/institutionID">institutionID</a></td></tr>
<tr><th colspan="2" id="collectionID">Term Name: collectionID</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/collectionID</td></tr>
<tr><td>Class:</td><td>all</td></tr>
<tr><td>Definition:</td><td>An identifier for the collection or dataset from which the record was derived.</td></tr>
<tr><td>Comment:</td><td>For physical specimens, the recommended best practice is to use an identifier from a collections registry such as the Global Registry of Biodiversity Repositories (http://grbio.org/). Examples: "http://biocol.org/urn:lsid:biocol.org:col:1001", "http://grbio.org/cool/p5fp-c036). Examples: "http://biocol.org/urn:lsid:biocol.org:col:1001", "http://grbio.org/cool/p5fp-c036".</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/collectionID">collectionID</a></td></tr>
<tr><th colspan="2" id="datasetID">Term Name: datasetID</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/datasetID</td></tr>
<tr><td>Class:</td><td>all</td></tr>
<tr><td>Definition:</td><td>An identifier for the set of data. May be a global unique identifier or an identifier specific to a collection or institution.</td></tr>
<tr><td>Comment:</td><td></td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/datasetID">datasetID</a></td></tr>
<tr><th colspan="2" id="institutionCode">Term Name: institutionCode</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/institutionCode</td></tr>
<tr><td>Class:</td><td>all</td></tr>
<tr><td>Definition:</td><td>The name (or acronym) in use by the institution having custody of the object(s) or information referred to in the record.</td></tr>
<tr><td>Comment:</td><td>Examples: "MVZ", "FMNH", "AKN-CLO", "University of California Museum of Paleontology (UCMP)".</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/institutionCode">institutionCode</a></td></tr>
<tr><th colspan="2" id="collectionCode">Term Name: collectionCode</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/collectionCode</td></tr>
<tr><td>Class:</td><td>all</td></tr>
<tr><td>Definition:</td><td>The name, acronym, coden, or initialism identifying the collection or data set from which the record was derived.</td></tr>
<tr><td>Comment:</td><td>Examples: "Mammals", "Hildebrandt", "eBird".</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/collectionCode">collectionCode</a></td></tr>
<tr><th colspan="2" id="datasetName">Term Name: datasetName</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/datasetName</td></tr>
<tr><td>Class:</td><td>all</td></tr>
<tr><td>Definition:</td><td>The name identifying the data set from which the record was derived.</td></tr>
<tr><td>Comment:</td><td>Examples: "Grinnell Resurvey Mammals", "Lacey Ctenomys Recaptures".</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/datasetName">datasetName</a></td></tr>
<tr><th colspan="2" id="ownerInstitutionCode">Term Name: ownerInstitutionCode</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/ownerInstitutionCode</td></tr>
<tr><td>Class:</td><td>all</td></tr>
<tr><td>Definition:</td><td>The name (or acronym) in use by the institution having ownership of the object(s) or information referred to in the record.</td></tr>
<tr><td>Comment:</td><td>Examples: "NPS", "APN", "InBio".</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/ownerInstitutionCode">ownerInstitutionCode</a></td></tr>
<tr><th colspan="2" id="basisOfRecord">Term Name: basisOfRecord</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/basisOfRecord</td></tr>
<tr><td>Class:</td><td>all</td></tr>
<tr><td>Definition:</td><td>The specific nature of the data record. Recommended best practice is to use a controlled vocabulary.</td></tr>
<tr><td>Comment:</td><td>Recommended best practice is to use a controlled vocabulary such as the list of Darwin Core classes. Examples: "PreservedSpecimen", "FossilSpecimen", "LivingSpecimen", "HumanObservation", "MachineObservation".</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/basisOfRecord">basisOfRecord</a></td></tr>
<tr><th colspan="2" id="informationWithheld">Term Name: informationWithheld</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/informationWithheld</td></tr>
<tr><td>Class:</td><td>all</td></tr>
<tr><td>Definition:</td><td>Additional information that exists, but that has not been shared in the given record.</td></tr>
<tr><td>Comment:</td><td>Examples: "location information not given for endangered species", "collector identities withheld", "ask about tissue samples".</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/informationWithheld">informationWithheld</a></td></tr>
<tr><th colspan="2" id="dataGeneralizations">Term Name: dataGeneralizations</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/dataGeneralizations</td></tr>
<tr><td>Class:</td><td>all</td></tr>
<tr><td>Definition:</td><td>Actions taken to make the shared data less specific or complete than in its original form. Suggests that alternative data of higher quality may be available on request.</td></tr>
<tr><td>Comment:</td><td>Example: "Coordinates generalized from original GPS coordinates to the nearest half degree grid cell".</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/dataGeneralizations">dataGeneralizations</a></td></tr>
<tr><th colspan="2" id="dynamicProperties">Term Name: dynamicProperties</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/dynamicProperties</td></tr>
<tr><td>Class:</td><td>all</td></tr>
<tr><td>Definition:</td><td>A list of additional measurements, facts, characteristics, or assertions about the record. Meant to provide a mechanism for structured content.</td></tr>
<tr><td>Comment:</td><td>The recommended best practice is to use a key:value encoding schema such as JSON. Examples: "{"heightInMeters":1.5}", "{"tragusLengthInMeters":0.014, "weightInGrams":120}", "{"natureOfID":"expert identification", "identificationEvidence":"cytochrome B sequence"}", "{"relativeHumidity":28, "airTemperatureInCelcius":22, "sampleSizeInKilograms":10}", "{"aspectHeading":277, "slopeInDegrees":6}", "{"iucnStatus":"vulnerable", "taxonDistribution":"Neuquén, Argentina"}".</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/dynamicProperties">dynamicProperties</a></td></tr>
<tr><th colspan="2" id="observationID">Term Name: observationID</th></tr>
<tr><td>Identifier:</td><td>http://ethoinformatics.org/ethocore/observationID</td></tr>
<tr><td>Class:</td><td>Observation</td></tr>
<tr><td>Definition:</td><td>An identifier for the Observation. May be a global unique identifier or an identifier specific to the data set.</td></tr>
<tr><td>Comment:</td><td></td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/observationID">observationID</a></td></tr>
<tr><th colspan="2" id="observationType">Term Name: observationType</th></tr>
<tr><td>Identifier:</td><td>http://ethoinformatics.org/ethocore/observationType</td></tr>
<tr><td>Class:</td><td>Observation</td></tr>
<tr><td>Definition:</td><td>The nature of the observation. Recommended best practice is to use a controlled vocabulary.</td></tr>
<tr><td>Comment:</td><td>Examples: "focal observation", "group activity", "nearest neighbor", "contact", "indirect sign", "ad libitum"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/observationType">observationType</a></td></tr>
<tr><th colspan="2" id="observationValue">Term Name: observationValue</th></tr>
<tr><td>Identifier:</td><td>http://ethoinformatics.org/ethocore/observationValue</td></tr>
<tr><td>Class:</td><td>Observation</td></tr>
<tr><td>Definition:</td><td>The value of the observation being made.</td></tr>
<tr><td>Comment:</td><td>Examples: "foraging", "pregnant", "in proximity"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/observationValue">observationValue</a></td></tr>
<tr><th colspan="2" id="observationAccuracy">Term Name: observationAccuracy</th></tr>
<tr><td>Identifier:</td><td>http://ethoinformatics.org/ethocore/observationAccuracy</td></tr>
<tr><td>Class:</td><td>Observation</td></tr>
<tr><td>Definition:</td><td>The description of the potential error associated with the observationValue.</td></tr>
<tr><td>Comment:</td><td>Examples: "observation taken from 100m distance"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/observationAccuracy">observationAccuracy</a></td></tr>
<tr><th colspan="2" id="observationUnit">Term Name: observationUnit</th></tr>
<tr><td>Identifier:</td><td>http://ethoinformatics.org/ethocore/observationUnit</td></tr>
<tr><td>Class:</td><td>Observation</td></tr>
<tr><td>Definition:</td><td>The units associated with the observationValue. Recommended best practice is to use the International System of Units (SI).</td></tr>
<tr><td>Comment:</td><td>Examples: "mm", "C", "km", "ha"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/observationUnit">observationUnit</a></td></tr>
<tr><th colspan="2" id="observationBy">Term Name: observationBy</th></tr>
<tr><td>Identifier:</td><td>http://ethoinformatics.org/ethocore/observationBy</td></tr>
<tr><td>Class:</td><td>Observation</td></tr>
<tr><td>Definition:</td><td>A list (concatenated and separated) of names of people, groups, or organizations who determined the value of the Observation.</td></tr>
<tr><td>Comment:</td><td>Examples: "Javier de la Torre", "Julie Woodruff; Eileen Lacey". The recommended best practice is to separate multiple values with a vertical bar (' | ').</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/observationBy">observationBy</a></td></tr>
<tr><th colspan="2" id="observationMethod">Term Name: observationMethod</th></tr>
<tr><td>Identifier:</td><td>http://ethoinformatics.org/ethocore/observationMethod</td></tr>
<tr><td>Class:</td><td>Observation</td></tr>
<tr><td>Definition:</td><td>A description of or reference to (publication, URI) the method or protocol used to determine the observation.</td></tr>
<tr><td>Comment:</td><td>Examples: "Altmann 1974" for a behavioral observation.</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/observationMethod">observationMethod</a></td></tr>
<tr><th colspan="2" id="observationRemarks">Term Name: observationRemarks</th></tr>
<tr><td>Identifier:</td><td>http://ethoinformatics.org/ethocore/observationRemarks</td></tr>
<tr><td>Class:</td><td>Observation</td></tr>
<tr><td>Definition:</td><td>Comments or notes accompanying the observation.</td></tr>
<tr><td>Comment:</td><td>Example: "unsure if the subject was identified correctly"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/observationRemarks">observationRemarks</a></td></tr>
<tr><th colspan="2" id="measurementID">Term Name: measurementID</th></tr>
<tr><td>Identifier:</td><td>http://ethoinformatics.org/ethocore/measurementID</td></tr>
<tr><td>Class:</td><td>Measurement</td></tr>
<tr><td>Definition:</td><td>An identifier for the Measurement (information pertaining to metric measurements). May be a global unique identifier or an identifier specific to the data set.</td></tr>
<tr><td>Comment:</td><td></td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/measurementID">measurementID</a></td></tr>
<tr><th colspan="2" id="measurementType">Term Name: measurementType</th></tr>
<tr><td>Identifier:</td><td>http://ethoinformatics.org/ethocore/measurementType</td></tr>
<tr><td>Class:</td><td>Measurement</td></tr>
<tr><td>Definition:</td><td>The nature of the measurement. Recommended best practice is to use a controlled vocabulary.</td></tr>
<tr><td>Comment:</td><td>Examples: "tail length", "temperature", "trap line length", "survey area"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/measurementType">measurementType</a></td></tr>
<tr><th colspan="2" id="measurementValue">Term Name: measurementValue</th></tr>
<tr><td>Identifier:</td><td>http://ethoinformatics.org/ethocore/measurementValue</td></tr>
<tr><td>Class:</td><td>Measurement</td></tr>
<tr><td>Definition:</td><td>The value of the measurement.</td></tr>
<tr><td>Comment:</td><td>Measurement examples: "45", "20", "1", "14.5", "UV-light". Observation examples: "foraging", "pregnant", "in proximity"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/measurementValue">measurementValue</a></td></tr>
<tr><th colspan="2" id="measurementAccuracy">Term Name: measurementAccuracy</th></tr>
<tr><td>Identifier:</td><td>http://ethoinformatics.org/ethocore/measurementAccuracy</td></tr>
<tr><td>Class:</td><td>Measurement</td></tr>
<tr><td>Definition:</td><td>The description of the potential error associated with the measurementValue.</td></tr>
<tr><td>Comment:</td><td>Examples: "0.01", "normal distribution with variation of 2 m"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/measurementAccuracy">measurementAccuracy</a></td></tr>
<tr><th colspan="2" id="measurementUnit">Term Name: measurementUnit</th></tr>
<tr><td>Identifier:</td><td>http://ethoinformatics.org/ethocore/measurementUnit</td></tr>
<tr><td>Class:</td><td>Measurement</td></tr>
<tr><td>Definition:</td><td>The units associated with the measurementValue. Recommended best practice is to use the International System of Units (SI).</td></tr>
<tr><td>Comment:</td><td>Examples: "mm", "C", "km", "ha"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/measurementUnit">measurementUnit</a></td></tr>
<tr><th colspan="2" id="measurementDeterminedBy">Term Name: measurementDeterminedBy</th></tr>
<tr><td>Identifier:</td><td>http://ethoinformatics.org/ethocore/measurementDeterminedBy</td></tr>
<tr><td>Class:</td><td>Measurement</td></tr>
<tr><td>Definition:</td><td>A list (concatenated and separated) of names of people, groups, or organizations who determined the value of the Measurement.</td></tr>
<tr><td>Comment:</td><td>Examples: "Javier de la Torre", "Julie Woodruff; Eileen Lacey". The recommended best practice is to separate multiple values with a vertical bar (' | ').</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/measurementDeterminedBy">measurementDeterminedBy</a></td></tr>
<tr><th colspan="2" id="measurementMethod">Term Name: measurementMethod</th></tr>
<tr><td>Identifier:</td><td>http://ethoinformatics.org/ethocore/measurementMethod</td></tr>
<tr><td>Class:</td><td>Measurement</td></tr>
<tr><td>Definition:</td><td>A description of or reference to (publication, URI) the method or protocol used to determine the measurement, fact, characteristic, assertion, or observation.</td></tr>
<tr><td>Comment:</td><td>Examples: "minimum convex polygon around burrow entrances" for a home range area, "barometric altimeter" for an elevation</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/measurementMethod">measurementMethod</a></td></tr>
<tr><th colspan="2" id="measurementInstrument">Term Name: measurementInstrument</th></tr>
<tr><td>Identifier:</td><td>http://ethoinformatics.org/ethocore/measurementInstrument</td></tr>
<tr><td>Class:</td><td>Measurement</td></tr>
<tr><td>Definition:</td><td>The instrument used to perform a measurement. Recommended best practice is to use a controlled vocabulary.</td></tr>
<tr><td>Comment:</td><td>Examples: "measuring tape", "digital thermometer", "1000 ml graduated cylinder", "spectrophotometer"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/measurementInstrument">measurementInstrument</a></td></tr>
<tr><th colspan="2" id="measurementRemarks">Term Name: measurementRemarks</th></tr>
<tr><td>Identifier:</td><td>http://ethoinformatics.org/ethocore/measurementRemarks</td></tr>
<tr><td>Class:</td><td>Measurement</td></tr>
<tr><td>Definition:</td><td>Comments or notes accompanying the metric measurement.</td></tr>
<tr><td>Comment:</td><td>Example: "tip of tail missing"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/measurementRemarks">measurementRemarks</a></td></tr>
<tr><th colspan="2" id="organismID">Term Name: organismID</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/organismID</td></tr>
<tr><td>Class:</td><td>Organism</td></tr>
<tr><td>Definition:</td><td>An identifier for the Organism instance (as opposed to a particular digital record of the Organism). May be a globally unique identifier or an identifier specific to the data set.</td></tr>
<tr><td>Comment:</td><td></td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/organismID">organismID</a></td></tr>
<tr><th colspan="2" id="organismName">Term Name: organismName</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/organismName</td></tr>
<tr><td>Class:</td><td>Organism</td></tr>
<tr><td>Definition:</td><td>A textual name or label assigned to an Organism instance.</td></tr>
<tr><td>Comment:</td><td>Examples: "Huberta", "Boab Prison Tree", "J pod".</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/organismName">organismName</a></td></tr>
<tr><th colspan="2" id="organismScope">Term Name: organismScope</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/organismScope</td></tr>
<tr><td>Class:</td><td>Organism</td></tr>
<tr><td>Definition:</td><td>A description of the kind of Organism instance. Can be used to indicate whether the Organism instance represents a discrete organism or if it represents a particular type of aggregation. Recommended best practice is to use a controlled vocabulary.</td></tr>
<tr><td>Comment:</td><td>This term is not intended to be used to specify a type of taxon. To describe the kind of Organism using a URI object in RDF, use rdf:type (http://www.w3.org/1999/02/22-rdf-syntax-ns#type) instead. Examples: "multicellular organism", "virus", "clone" "pack", "colony).</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/organismScope">organismScope</a></td></tr>
<tr><th colspan="2" id="organismRemarks">Term Name: organismRemarks</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/organismRemarks</td></tr>
<tr><td>Class:</td><td>Organism</td></tr>
<tr><td>Definition:</td><td>Comments or notes about the Organism instance.</td></tr>
<tr><td>Comment:</td><td>Example: "One of a litter of six.".</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/organismRemarks">organismRemarks</a></td></tr>
<tr><th colspan="2" id="organismCode">Term Name: organismCode</th></tr>
<tr><td>Identifier:</td><td>http://ethoinformatics.org/ethocore/organismCode</td></tr>
<tr><td>Class:</td><td>Organism</td></tr>
<tr><td>Definition:</td><td>A shorthand code for the Animal.</td></tr>
<tr><td>Comment:</td><td>Examples: "FRO", "KOK", "PG"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/organismCode">organismCode</a></td></tr>
<tr><th colspan="2" id="patchID">Term Name: patchID</th></tr>
<tr><td>Identifier:</td><td>http://ethoinformatics.org/ethocore/patchID</td></tr>
<tr><td>Class:</td><td>Patch</td></tr>
<tr><td>Definition:</td><td>An identifier for the ResearchPatch. May be a global unique identifier or an identifier specific to the data set.</td></tr>
<tr><td>Comment:</td><td></td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/patchID">patchID</a></td></tr>
<tr><th colspan="2" id="patchName">Term Name: patchName</th></tr>
<tr><td>Identifier:</td><td>http://ethoinformatics.org/ethocore/patchName</td></tr>
<tr><td>Class:</td><td>Patch</td></tr>
<tr><td>Definition:</td><td>The given name for the Patch.</td></tr>
<tr><td>Comment:</td><td></td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/patchName">patchName</a></td></tr>
<tr><th colspan="2" id="patchType">Term Name: patchType</th></tr>
<tr><td>Identifier:</td><td>http://ethoinformatics.org/ethocore/patchType</td></tr>
<tr><td>Class:</td><td>Patch</td></tr>
<tr><td>Definition:</td><td>The category to which the Patch belongs. Recommended best practice is to use a controlled vocabulary.</td></tr>
<tr><td>Comment:</td><td>Examples: "tree", "mineral lick"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/patchType">patchType</a></td></tr>
<tr><th colspan="2" id="patchUse">Term Name: patchUse</th></tr>
<tr><td>Identifier:</td><td>http://ethoinformatics.org/ethocore/patchUse</td></tr>
<tr><td>Class:</td><td>Patch</td></tr>
<tr><td>Definition:</td><td>The primary manner in which the Patch is used by study subjects. Recommended best practice is to use a controlled vocabulary.</td></tr>
<tr><td>Comment:</td><td>Examples: "feeding", "sleeping"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/patchUse">patchUse</a></td></tr>
<tr><th colspan="2" id="timeMarked">Term Name: timeMarked</th></tr>
<tr><td>Identifier:</td><td>http://ethoinformatics.org/ethocore/timeMarked</td></tr>
<tr><td>Class:</td><td>Patch</td></tr>
<tr><td>Definition:</td><td>The time during which a ResearchPatch was marked. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).</td></tr>
<tr><td>Comment:</td><td></td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/timeMarked">timeMarked</a></td></tr>
<tr><th colspan="2" id="dateMarked">Term Name: dateMarked</th></tr>
<tr><td>Identifier:</td><td>http://ethoinformatics.org/ethocore/dateMarked</td></tr>
<tr><td>Class:</td><td>Patch</td></tr>
<tr><td>Definition:</td><td>The date during which a ResearchPatch was marked. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).</td></tr>
<tr><td>Comment:</td><td></td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/dateMarked">dateMarked</a></td></tr>
<tr><th colspan="2" id="dateOfExpiration">Term Name: dateOfExpiration</th></tr>
<tr><td>Identifier:</td><td>http://ethoinformatics.org/ethocore/dateOfExpiration</td></tr>
<tr><td>Class:</td><td>Patch</td></tr>
<tr><td>Definition:</td><td>The date on which a ResearchPatch disappears, dies, or otherwise ceases to exist. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).</td></tr>
<tr><td>Comment:</td><td></td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/dateOfExpiration">dateOfExpiration</a></td></tr>
<tr><th colspan="2" id="markedBy">Term Name: markedBy</th></tr>
<tr><td>Identifier:</td><td>http://ethoinformatics.org/ethocore/markedBy</td></tr>
<tr><td>Class:</td><td>Patch</td></tr>
<tr><td>Definition:</td><td>A list (concatenated and separated) of names of people, groups, or organizations who marked the Patch.</td></tr>
<tr><td>Comment:</td><td></td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/markedBy">markedBy</a></td></tr>
<tr><th colspan="2" id="patchRemarks">Term Name: patchRemarks</th></tr>
<tr><td>Identifier:</td><td>http://ethoinformatics.org/ethocore/patchRemarks</td></tr>
<tr><td>Class:</td><td>Patch</td></tr>
<tr><td>Definition:</td><td>Comments or notes about the Patch.</td></tr>
<tr><td>Comment:</td><td></td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/patchRemarks">patchRemarks</a></td></tr>
<tr><th colspan="2" id="materialSampleID">Term Name: materialSampleID</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/materialSampleID</td></tr>
<tr><td>Class:</td><td>MaterialSample</td></tr>
<tr><td>Definition:</td><td>An identifier for the MaterialSample (as opposed to a particular digital record of the material sample). In the absence of a persistent global unique identifier, construct one from a combination of identifiers in the record that will most closely make the materialSampleID globally unique.</td></tr>
<tr><td>Comment:</td><td></td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/materialSampleID">materialSampleID</a></td></tr>
<tr><th colspan="2" id="materialSampleType">Term Name: materialSampleType</th></tr>
<tr><td>Identifier:</td><td>http://ethoinformatics.org/ethocore/materialSampleType</td></tr>
<tr><td>Class:</td><td>MaterialSample</td></tr>
<tr><td>Definition:</td><td>The type of physical material represented by the MaterialSample. Recommended best practice is to use a controlled vocabulary.</td></tr>
<tr><td>Comment:</td><td>Examples: "feces", "buffy coat", "left upper dental cast", "carcass"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/materialSampleType">materialSampleType</a></td></tr>
<tr><th colspan="2" id="materialSampleRemarks">Term Name: materialSampleRemarks</th></tr>
<tr><td>Identifier:</td><td>http://ethoinformatics.org/ethocore/materialSampleRemarks</td></tr>
<tr><td>Class:</td><td>MaterialSample</td></tr>
<tr><td>Definition:</td><td>Comments or notes about the MaterialSample.</td></tr>
<tr><td>Comment:</td><td></td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/materialSampleRemarks">materialSampleRemarks</a></td></tr>
<tr><th colspan="2" id="eventID">Term Name: eventID</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/eventID</td></tr>
<tr><td>Class:</td><td>Event</td></tr>
<tr><td>Definition:</td><td>An identifier for the set of information associated with an Event (something that occurs at a place and time). May be a global unique identifier or an identifier specific to the data set.</td></tr>
<tr><td>Comment:</td><td></td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/eventID">eventID</a></td></tr>
<tr><th colspan="2" id="eventDate">Term Name: eventDate</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/eventDate</td></tr>
<tr><td>Class:</td><td>Event</td></tr>
<tr><td>Definition:</td><td>The date-time or interval during which an Event occurred. For observations or activities, this is the date-time when the event was recorded. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).</td></tr>
<tr><td>Comment:</td><td>Examples: "1963-03-08T14:07-0600" is 8 Mar 1963 2:07pm in the time zone six hours earlier than UTC, "2009-02-20T08:40Z" is 20 Feb 2009 8:40am UTC, "1809-02-12" is 12 Feb 1809, "1906-06" is Jun 1906, "1971" is just that year, "2007-03-01T13:00:00Z/2008-05-11T15:30:00Z" is the interval between 1 Mar 2007 1pm UTC and 11 May 2008 3:30pm UTC, "2007-11-13/15" is the interval between 13 Nov 2007 and 15 Nov 2007.</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/eventDate">eventDate</a></td></tr>
<tr><th colspan="2" id="eventTime">Term Name: eventTime</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/eventTime</td></tr>
<tr><td>Class:</td><td>Event</td></tr>
<tr><td>Definition:</td><td>The time or interval during which an Event occurred. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).</td></tr>
<tr><td>Comment:</td><td>Examples: "14:07-0600" is 2:07pm in the time zone six hours earlier than UTC, "08:40:21Z" is 8:40:21am UTC, "13:00:00Z/15:30:00Z" is the interval between 1pm UTC and 3:30pm UTC.</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/eventTime">eventTime</a></td></tr>
<tr><th colspan="2" id="samplingProtocol">Term Name: samplingProtocol</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/samplingProtocol</td></tr>
<tr><td>Class:</td><td>Event</td></tr>
<tr><td>Definition:</td><td>The name of, reference to, or description of the method or protocol used during an Event.</td></tr>
<tr><td>Comment:</td><td>Examples: "UV light trap", "mist net", "bottom trawl", "ad hoc observation", "point count", "Penguins from space: faecal stains reveal the location of emperor penguin colonies, http://dx.doi.org/10.1111/j.1466-8238.2009.00467.x", "Takats et al. 2001. Guidelines for Nocturnal Owl Monitoring in North America. Beaverhill Bird Observatory and Bird Studies Canada, Edmonton, Alberta. 32 pp.", "http://www.bsc-eoc.org/download/Owl.pdf"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/samplingProtocol">samplingProtocol</a></td></tr>
<tr><th colspan="2" id="samplingEffort">Term Name: samplingEffort</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/samplingEffort</td></tr>
<tr><td>Class:</td><td>Event</td></tr>
<tr><td>Definition:</td><td>The amount of effort expended during an Event.</td></tr>
<tr><td>Comment:</td><td>Examples: "40 trap-nights", "10 observer-hours; 10 km by foot; 30 km by car"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/samplingEffort">samplingEffort</a></td></tr>
<tr><th colspan="2" id="eventRemarks">Term Name: eventRemarks</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/eventRemarks</td></tr>
<tr><td>Class:</td><td>Event</td></tr>
<tr><td>Definition:</td><td>Comments or notes about the Event.</td></tr>
<tr><td>Comment:</td><td>Example: "after the recent rains the river is nearly at flood stage"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/eventRemarks">eventRemarks</a></td></tr>
<tr><th colspan="2" id="activityID">Term Name: activityID</th></tr>
<tr><td>Identifier:</td><td>http://ethoinformatics.org/ethocore/activityID</td></tr>
<tr><td>Class:</td><td>Activity</td></tr>
<tr><td>Definition:</td><td>An identifier for the Activity (some activity state scheduled or performed by a user). May be a global unique identifier or an identifier specific to the data set.</td></tr>
<tr><td>Comment:</td><td></td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/activityID">activityID</a></td></tr>
<tr><th colspan="2" id="activityType">Term Name: activityType</th></tr>
<tr><td>Identifier:</td><td>http://ethoinformatics.org/ethocore/activityType</td></tr>
<tr><td>Class:</td><td>Activity</td></tr>
<tr><td>Definition:</td><td>The type of activity being scheduled or performed.</td></tr>
<tr><td>Comment:</td><td>Examples: "focal sample collection", "searching for animals".</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/activityType">activityType</a></td></tr>
<tr><th colspan="2" id="activityBy">Term Name: activityBy</th></tr>
<tr><td>Identifier:</td><td>http://ethoinformatics.org/ethocore/activityBy</td></tr>
<tr><td>Class:</td><td>Activity</td></tr>
<tr><td>Definition:</td><td>A list (concatenated and separated) of names of people, groups, or organizations who conducted the Activity.</td></tr>
<tr><td>Comment:</td><td></td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/activityBy">activityBy</a></td></tr>
<tr><th colspan="2" id="activityRemarks">Term Name: activityRemarks</th></tr>
<tr><td>Identifier:</td><td>http://ethoinformatics.org/ethocore/activityRemarks</td></tr>
<tr><td>Class:</td><td>Activity</td></tr>
<tr><td>Definition:</td><td>Comments or notes about the Activity.</td></tr>
<tr><td>Comment:</td><td></td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/activityRemarks">activityRemarks</a></td></tr>
<tr><th colspan="2" id="locationID">Term Name: locationID</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/locationID</td></tr>
<tr><td>Class:</td><td>Location</td></tr>
<tr><td>Definition:</td><td>An identifier for the set of location information (data associated with dcterms:Location). May be a global unique identifier or an identifier specific to the data set.</td></tr>
<tr><td>Comment:</td><td></td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/locationID">locationID</a></td></tr>
<tr><th colspan="2" id="higherGeographyID">Term Name: higherGeographyID</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/higherGeographyID</td></tr>
<tr><td>Class:</td><td>Location</td></tr>
<tr><td>Definition:</td><td>An identifier for the geographic region within which the Location occurred. Recommended best practice is to use an persistent identifier from a controlled vocabulary such as the Getty Thesaurus of Geographic Names.</td></tr>
<tr><td>Comment:</td><td>Example: "TGN: 1002002" for Prov. Tierra del Fuego, Argentina</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/higherGeographyID">higherGeographyID</a></td></tr>
<tr><th colspan="2" id="higherGeography">Term Name: higherGeography</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/higherGeography</td></tr>
<tr><td>Class:</td><td>Location</td></tr>
<tr><td>Definition:</td><td>A list (concatenated and separated) of geographic names less specific than the information captured in the locality term.</td></tr>
<tr><td>Comment:</td><td>Example: "South America; Argentina; Patagonia; Parque Nacional Nahuel Huapi; Neuquén; Los Lagos" with accompanying values "South America" in Continent, "Argentina" in Country, "Neuquén" in StateProvince, and Los Lagos in County.</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/higherGeography">higherGeography</a></td></tr>
<tr><th colspan="2" id="continent">Term Name: continent</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/continent</td></tr>
<tr><td>Class:</td><td>Location</td></tr>
<tr><td>Definition:</td><td>The name of the continent in which the Location occurs. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.</td></tr>
<tr><td>Comment:</td><td>Examples: "Africa", "Antarctica", "Asia", "Europe", "North America", "Oceania", "South America"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/continent">continent</a></td></tr>
<tr><th colspan="2" id="islandGroup">Term Name: islandGroup</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/islandGroup</td></tr>
<tr><td>Class:</td><td>Location</td></tr>
<tr><td>Definition:</td><td>The name of the island group in which the Location occurs. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.</td></tr>
<tr><td>Comment:</td><td>Examples: "Alexander Archipelago", "Seychelles"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/islandGroup">islandGroup</a></td></tr>
<tr><th colspan="2" id="island">Term Name: island</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/island</td></tr>
<tr><td>Class:</td><td>Location</td></tr>
<tr><td>Definition:</td><td>The name of the island on or near which the Location occurs. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.</td></tr>
<tr><td>Comment:</td><td>Examples: "Isla Victoria", "Vancouver", "Viti Levu", "Zanzibar"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/island">island</a></td></tr>
<tr><th colspan="2" id="country">Term Name: country</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/country</td></tr>
<tr><td>Class:</td><td>Location</td></tr>
<tr><td>Definition:</td><td>The name of the country or major administrative unit in which the Location occurs. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.</td></tr>
<tr><td>Comment:</td><td>Examples: "Denmark", "Colombia", "España"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/country">country</a></td></tr>
<tr><th colspan="2" id="countryCode">Term Name: countryCode</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/countryCode</td></tr>
<tr><td>Class:</td><td>Location</td></tr>
<tr><td>Definition:</td><td>The standard code for the country in which the Location occurs. Recommended best practice is to use ISO 3166-1-alpha-2 country codes.</td></tr>
<tr><td>Comment:</td><td>Examples: "AR" for Argentina, "SV" for El Salvador</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/countryCode">countryCode</a></td></tr>
<tr><th colspan="2" id="stateProvince">Term Name: stateProvince</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/stateProvince</td></tr>
<tr><td>Class:</td><td>Location</td></tr>
<tr><td>Definition:</td><td>The name of the next smaller administrative region than country (state, province, canton, department, region, etc.) in which the Location occurs.</td></tr>
<tr><td>Comment:</td><td>Examples: "Montana", "Minas Gerais", "Córdoba"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/stateProvince">stateProvince</a></td></tr>
<tr><th colspan="2" id="county">Term Name: county</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/county</td></tr>
<tr><td>Class:</td><td>Location</td></tr>
<tr><td>Definition:</td><td>The full, unabbreviated name of the next smaller administrative region than stateProvince (county, shire, department, etc.) in which the Location occurs.</td></tr>
<tr><td>Comment:</td><td>Examples: "Missoula", "Los Lagos", "Mataró"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/county">county</a></td></tr>
<tr><th colspan="2" id="municipality">Term Name: municipality</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/municipality</td></tr>
<tr><td>Class:</td><td>Location</td></tr>
<tr><td>Definition:</td><td>The full, unabbreviated name of the next smaller administrative region than county (city, municipality, etc.) in which the Location occurs. Do not use this term for a nearby named place that does not contain the actual location.</td></tr>
<tr><td>Comment:</td><td>Examples: "Holzminden"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/municipality">municipality</a></td></tr>
<tr><th colspan="2" id="locality">Term Name: locality</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/locality</td></tr>
<tr><td>Class:</td><td>Location</td></tr>
<tr><td>Definition:</td><td>The specific description of the place. Less specific geographic information can be provided in other geographic terms (higherGeography, continent, country, stateProvince, county, municipality, waterBody, island, islandGroup). This term may contain information modified from the original to correct perceived errors or standardize the description.</td></tr>
<tr><td>Comment:</td><td>Example: "Bariloche, 25 km NNE via Ruta Nacional 40 (=Ruta 237)"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/locality">locality</a></td></tr>
<tr><th colspan="2" id="verbatimLocality">Term Name: verbatimLocality</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/verbatimLocality</td></tr>
<tr><td>Class:</td><td>Location</td></tr>
<tr><td>Definition:</td><td>The original textual description of the place.</td></tr>
<tr><td>Comment:</td><td>Example: "25 km NNE Bariloche por R. Nac. 237"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/verbatimLocality">verbatimLocality</a></td></tr>
<tr><th colspan="2" id="minimumElevationInMeters">Term Name: minimumElevationInMeters</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/minimumElevationInMeters</td></tr>
<tr><td>Class:</td><td>Location</td></tr>
<tr><td>Definition:</td><td>The lower limit of the range of elevation (altitude, usually above sea level), in meters.</td></tr>
<tr><td>Comment:</td><td>Example: "100"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/minimumElevationInMeters">minimumElevationInMeters</a></td></tr>
<tr><th colspan="2" id="maximumElevationInMeters">Term Name: maximumElevationInMeters</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/maximumElevationInMeters</td></tr>
<tr><td>Class:</td><td>Location</td></tr>
<tr><td>Definition:</td><td>The upper limit of the range of elevation (altitude, usually above sea level), in meters.</td></tr>
<tr><td>Comment:</td><td>Example: "200"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/maximumElevationInMeters">maximumElevationInMeters</a></td></tr>
<tr><th colspan="2" id="verbatimElevation">Term Name: verbatimElevation</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/verbatimElevation</td></tr>
<tr><td>Class:</td><td>Location</td></tr>
<tr><td>Definition:</td><td>The original description of the elevation (altitude, usually above sea level) of the Location.</td></tr>
<tr><td>Comment:</td><td>Example: "100-200 m"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/verbatimElevation">verbatimElevation</a></td></tr>
<tr><th colspan="2" id="verbatimDepth">Term Name: verbatimDepth</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/verbatimDepth</td></tr>
<tr><td>Class:</td><td>Location</td></tr>
<tr><td>Definition:</td><td>The original description of the depth below the local surface.</td></tr>
<tr><td>Comment:</td><td>Example: "100-200 m"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/verbatimDepth">verbatimDepth</a></td></tr>
<tr><th colspan="2" id="locationAccordingTo">Term Name: locationAccordingTo</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/locationAccordingTo</td></tr>
<tr><td>Class:</td><td>Location</td></tr>
<tr><td>Definition:</td><td>Information about the source of this Location information. Could be a publication (gazetteer), institution, or team of individuals.</td></tr>
<tr><td>Comment:</td><td>Examples: "Getty Thesaurus of Geographic Names", "GADM"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/locationAccordingTo">locationAccordingTo</a></td></tr>
<tr><th colspan="2" id="locationRemarks">Term Name: locationRemarks</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/locationRemarks</td></tr>
<tr><td>Class:</td><td>Location</td></tr>
<tr><td>Definition:</td><td>Comments or notes about the Location.</td></tr>
<tr><td>Comment:</td><td>Example: "under water since 2005"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/locationRemarks">locationRemarks</a></td></tr>
<tr><th colspan="2" id="decimalLatitude">Term Name: decimalLatitude</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/decimalLatitude</td></tr>
<tr><td>Class:</td><td>Location</td></tr>
<tr><td>Definition:</td><td>The geographic latitude (in decimal degrees, using the spatial reference system given in geodeticDatum) of the geographic center of a Location. Positive values are north of the Equator, negative values are south of it. Legal values lie between -90 and 90, inclusive.</td></tr>
<tr><td>Comment:</td><td>Example: "-41.0983423"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/decimalLatitude">decimalLatitude</a></td></tr>
<tr><th colspan="2" id="decimalLongitude">Term Name: decimalLongitude</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/decimalLongitude</td></tr>
<tr><td>Class:</td><td>Location</td></tr>
<tr><td>Definition:</td><td>The geographic longitude (in decimal degrees, using the spatial reference system given in geodeticDatum) of the geographic center of a Location. Positive values are east of the Greenwich Meridian, negative values are west of it. Legal values lie between -180 and 180, inclusive.</td></tr>
<tr><td>Comment:</td><td>Example: "-121.1761111"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/decimalLongitude">decimalLongitude</a></td></tr>
<tr><th colspan="2" id="geodeticDatum">Term Name: geodeticDatum</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/geodeticDatum</td></tr>
<tr><td>Class:</td><td>Location</td></tr>
<tr><td>Definition:</td><td>The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which the geographic coordinates given in decimalLatitude and decimalLongitude as based. Recommended best practice is use the EPSG code as a controlled vocabulary to provide an SRS, if known. Otherwise use a controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value "unknown".</td></tr>
<tr><td>Comment:</td><td>Examples: "EPSG:4326", "WGS84", "NAD27", "Campo Inchauspe", "European 1950", "Clarke 1866"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/geodeticDatum">geodeticDatum</a></td></tr>
<tr><th colspan="2" id="coordinateUncertaintyInMeters">Term Name: coordinateUncertaintyInMeters</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/coordinateUncertaintyInMeters</td></tr>
<tr><td>Class:</td><td>Location</td></tr>
<tr><td>Definition:</td><td>The horizontal distance (in meters) from the given decimalLatitude and decimalLongitude describing the smallest circle containing the whole of the Location. Leave the value empty if the uncertainty is unknown, cannot be estimated, or is not applicable (because there are no coordinates). Zero is not a valid value for this term.</td></tr>
<tr><td>Comment:</td><td>Examples: "30" (reasonable lower limit of a GPS reading under good conditions if the actual precision was not recorded at the time), "71" (uncertainty for a UTM coordinate having 100 meter precision and a known spatial reference system).</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/coordinateUncertaintyInMeters">coordinateUncertaintyInMeters</a></td></tr>
<tr><th colspan="2" id="coordinatePrecision">Term Name: coordinatePrecision</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/coordinatePrecision</td></tr>
<tr><td>Class:</td><td>Location</td></tr>
<tr><td>Definition:</td><td>A decimal representation of the precision of the coordinates given in the decimalLatitude and decimalLongitude.</td></tr>
<tr><td>Comment:</td><td>Examples: "0.00001" (normal GPS limit for decimal degrees), "0.000278" (nearest second), "0.01667" (nearest minute), "1.0" (nearest degree)</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/coordinatePrecision">coordinatePrecision</a></td></tr>
<tr><th colspan="2" id="pointRadiusSpatialFit">Term Name: pointRadiusSpatialFit</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/pointRadiusSpatialFit</td></tr>
<tr><td>Class:</td><td>Location</td></tr>
<tr><td>Definition:</td><td>The ratio of the area of the point-radius (decimalLatitude, decimalLongitude, coordinateUncertaintyInMeters) to the area of the true (original, or most specific) spatial representation of the Location. Legal values are 0, greater than or equal to 1, or undefined. A value of 1 is an exact match or 100% overlap. A value of 0 should be used if the given point-radius does not completely contain the original representation. The pointRadiusSpatialFit is undefined (and should be left blank) if the original representation is a point without uncertainty and the given georeference is not that same point (without uncertainty). If both the original and the given georeference are the same point, the pointRadiusSpatialFit is 1.</td></tr>
<tr><td>Comment:</td><td>Detailed explanations with graphical examples can be found in the "Guide to Best Practices for Georeferencing", Chapman and Wieczorek, eds. 2006 (http://www.gbif.org/prog/digit/Georeferencing).</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/pointRadiusSpatialFit">pointRadiusSpatialFit</a></td></tr>
<tr><th colspan="2" id="verbatimCoordinates">Term Name: verbatimCoordinates</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/verbatimCoordinates</td></tr>
<tr><td>Class:</td><td>Location</td></tr>
<tr><td>Definition:</td><td>The verbatim original spatial coordinates of the Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in verbatimSRS and the coordinate system should be stored in verbatimCoordinateSystem.</td></tr>
<tr><td>Comment:</td><td>Examples: "41 05 54S 121 05 34W", "17T 630000 4833400"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/verbatimCoordinates">verbatimCoordinates</a></td></tr>
<tr><th colspan="2" id="verbatimLatitude">Term Name: verbatimLatitude</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/verbatimLatitude</td></tr>
<tr><td>Class:</td><td>Location</td></tr>
<tr><td>Definition:</td><td>The verbatim original latitude of the Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in verbatimSRS and the coordinate system should be stored in verbatimCoordinateSystem.</td></tr>
<tr><td>Comment:</td><td>Example: "41 05 54.03S"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/verbatimLatitude">verbatimLatitude</a></td></tr>
<tr><th colspan="2" id="verbatimLongitude">Term Name: verbatimLongitude</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/verbatimLongitude</td></tr>
<tr><td>Class:</td><td>Location</td></tr>
<tr><td>Definition:</td><td>The verbatim original longitude of the Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in verbatimSRS and the coordinate system should be stored in verbatimCoordinateSystem.</td></tr>
<tr><td>Comment:</td><td>Example: "121d 10' 34" W"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/verbatimLongitude">verbatimLongitude</a></td></tr>
<tr><th colspan="2" id="verbatimCoordinateSystem">Term Name: verbatimCoordinateSystem</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/verbatimCoordinateSystem</td></tr>
<tr><td>Class:</td><td>Location</td></tr>
<tr><td>Definition:</td><td>The spatial coordinate system for the verbatimLatitude and verbatimLongitude or the verbatimCoordinates of the Location. Recommended best practice is to use a controlled vocabulary.</td></tr>
<tr><td>Comment:</td><td>Examples: "decimal degrees", "degrees decimal minutes", "degrees minutes seconds", "UTM"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/verbatimCoordinateSystem">verbatimCoordinateSystem</a></td></tr>
<tr><th colspan="2" id="verbatimSRS">Term Name: verbatimSRS</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/verbatimSRS</td></tr>
<tr><td>Class:</td><td>Location</td></tr>
<tr><td>Definition:</td><td>The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which coordinates given in verbatimLatitude and verbatimLongitude, or verbatimCoordinates are based. Recommended best practice is use the EPSG code as a controlled vocabulary to provide an SRS, if known. Otherwise use a controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value "unknown".</td></tr>
<tr><td>Comment:</td><td>Examples: "EPSG:4326", "WGS84", "NAD27", "Campo Inchauspe", "European 1950", "Clarke 1866"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/verbatimSRS">verbatimSRS</a></td></tr>
<tr><th colspan="2" id="footprintSRS">Term Name: footprintSRS</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/footprintSRS</td></tr>
<tr><td>Class:</td><td>Location</td></tr>
<tr><td>Definition:</td><td>A representation of the Spatial Reference System (SRS) for the footprint of the Location. Do not use this term to describe the SRS of the decimalLatitude and decimalLongitude, even if it is the same as for the footprint - use the geodeticDatum instead.</td></tr>
<tr><td>Comment:</td><td>Example: The WKT for the standard WGS84 SRS (EPSG:4326) is "GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.0174532925199433]]" without the enclosing quotes.</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/footprintSRS">footprintSRS</a></td></tr>
<tr><th colspan="2" id="footprintSpatialFit">Term Name: footprintSpatialFit</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/footprintSpatialFit</td></tr>
<tr><td>Class:</td><td>Location</td></tr>
<tr><td>Definition:</td><td>The ratio of the area of the footprint (footprintWKT) to the area of the true (original, or most specific) spatial representation of the Location. Legal values are 0, greater than or equal to 1, or undefined. A value of 1 is an exact match or 100% overlap. A value of 0 should be used if the given footprint does not completely contain the original representation. The footprintSpatialFit is undefined (and should be left blank) if the original representation is a point and the given georeference is not that same point. If both the original and the given georeference are the same point, the footprintSpatialFit is 1.</td></tr>
<tr><td>Comment:</td><td>Detailed explanations with graphical examples can be found in the "Guide to Best Practices for Georeferencing", Chapman and Wieczorek, eds. 2006 (http://www.gbif.org/prog/digit/Georeferencing).</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/footprintSpatialFit">footprintSpatialFit</a></td></tr>
<tr><th colspan="2" id="georeferencedBy">Term Name: georeferencedBy</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/georeferencedBy</td></tr>
<tr><td>Class:</td><td>Location</td></tr>
<tr><td>Definition:</td><td>A list (concatenated and separated) of names of people, groups, or organizations who determined the georeference (spatial representation) for the Location.</td></tr>
<tr><td>Comment:</td><td>Examples: "Kristina Yamamoto (MVZ); Janet Fang (MVZ)", "Brad Millen (ROM)"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/georeferencedBy">georeferencedBy</a></td></tr>
<tr><th colspan="2" id="georeferencedDate">Term Name: georeferencedDate</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/georeferencedDate</td></tr>
<tr><td>Class:</td><td>Location</td></tr>
<tr><td>Definition:</td><td>The date on which the Location was georeferenced. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).</td></tr>
<tr><td>Comment:</td><td>Examples: "1963-03-08T14:07-0600" is 8 Mar 1963 2:07pm in the time zone six hours earlier than UTC, "2009-02-20T08:40Z" is 20 Feb 2009 8:40am UTC, "1809-02-12" is 12 Feb 1809, "1906-06" is Jun 1906, "1971" is just that year, "2007-03-01T13:00:00Z/2008-05-11T15:30:00Z" is the interval between 1 Mar 2007 1pm UTC and 11 May 2008 3:30pm UTC, "2007-11-13/15" is the interval between 13 Nov 2007 and 15 Nov 2007.</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/georeferencedDate">georeferencedDate</a></td></tr>
<tr><th colspan="2" id="georeferenceProtocol">Term Name: georeferenceProtocol</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/georeferenceProtocol</td></tr>
<tr><td>Class:</td><td>Location</td></tr>
<tr><td>Definition:</td><td>A description or reference to the methods used to determine the spatial footprint, coordinates, and uncertainties.</td></tr>
<tr><td>Comment:</td><td>Examples: "Guide to Best Practices for Georeferencing" (Chapman and Wieczorek, eds. 2006), Global Biodiversity Information Facility.", "MaNIS/HerpNet/ORNIS Georeferencing Guidelines", "Georeferencing Quick Reference Guide"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/georeferenceProtocol">georeferenceProtocol</a></td></tr>
<tr><th colspan="2" id="georeferenceSources">Term Name: georeferenceSources</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/georeferenceSources</td></tr>
<tr><td>Class:</td><td>Location</td></tr>
<tr><td>Definition:</td><td>A list (concatenated and separated) of maps, gazetteers, or other resources used to georeference the Location, described specifically enough to allow anyone in the future to use the same resources.</td></tr>
<tr><td>Comment:</td><td>Examples: "USGS 1:24000 Florence Montana Quad; Terrametrics 2008 on Google Earth"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/georeferenceSources">georeferenceSources</a></td></tr>
<tr><th colspan="2" id="georeferenceVerificationStatus">Term Name: georeferenceVerificationStatus</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/georeferenceVerificationStatus</td></tr>
<tr><td>Class:</td><td>Location</td></tr>
<tr><td>Definition:</td><td>A categorical description of the extent to which the georeference has been verified to represent the best possible spatial description. Recommended best practice is to use a controlled vocabulary.</td></tr>
<tr><td>Comment:</td><td>Examples: "requires verification", "verified by collector", "verified by curator".</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/georeferenceVerificationStatus">georeferenceVerificationStatus</a></td></tr>
<tr><th colspan="2" id="georeferenceRemarks">Term Name: georeferenceRemarks</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/georeferenceRemarks</td></tr>
<tr><td>Class:</td><td>Location</td></tr>
<tr><td>Definition:</td><td>Notes or comments about the spatial description determination, explaining assumptions made in addition or opposition to the those formalized in the method referred to in georeferenceProtocol.</td></tr>
<tr><td>Comment:</td><td>Example: "assumed distance by road (Hwy. 101)"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/georeferenceRemarks">georeferenceRemarks</a></td></tr>
<tr><th colspan="2" id="locationName">Term Name: locationName</th></tr>
<tr><td>Identifier:</td><td>http://ethoinformatics.org/ethocore/locationName</td></tr>
<tr><td>Class:</td><td>Location</td></tr>
<tr><td>Definition:</td><td>The alias, colloquial, or shorthand name for the Location.</td></tr>
<tr><td>Comment:</td><td></td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/locationName">locationName</a></td></tr>
<tr><th colspan="2" id="utmX">Term Name: utmX</th></tr>
<tr><td>Identifier:</td><td>http://ethoinformatics.org/ethocore/utmX</td></tr>
<tr><td>Class:</td><td>Location</td></tr>
<tr><td>Definition:</td><td>The geographic easting (in meters) of the geographic center of a Location. Should be accompanied by the spatial reference system "UTM" given by the geodeticDatum).</td></tr>
<tr><td>Comment:</td><td></td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/utmX">utmX</a></td></tr>
<tr><th colspan="2" id="utmY">Term Name: utmY</th></tr>
<tr><td>Identifier:</td><td>http://ethoinformatics.org/ethocore/utmY</td></tr>
<tr><td>Class:</td><td>Location</td></tr>
<tr><td>Definition:</td><td>The geographic northing (in meters) of the geographic center of a Location. Should be accompanied by the spatial reference system "UTM" given by the geodeticDatum).</td></tr>
<tr><td>Comment:</td><td></td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/utmY">utmY</a></td></tr>
<tr><th colspan="2" id="utmZone">Term Name: utmZone</th></tr>
<tr><td>Identifier:</td><td>http://ethoinformatics.org/ethocore/utmZone</td></tr>
<tr><td>Class:</td><td>Location</td></tr>
<tr><td>Definition:</td><td>The UTM zone upon which the geographic coordinates given in utmX and utmY are based. Recommended best practice is to specify the hemisphere by appending "North" for the northern hemisphere or "South" for the southern hemisphere, or to specify the latitude band.</td></tr>
<tr><td>Comment:</td><td></td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/utmZone">utmZone</a></td></tr>
<tr><th colspan="2" id="footprint">Term Name: footprint</th></tr>
<tr><td>Identifier:</td><td>http://ethoinformatics.org/ethocore/footprint</td></tr>
<tr><td>Class:</td><td>Location</td></tr>
<tr><td>Definition:</td><td>A representation of the shape (footprint, geometry) that defines the Location. A Location may have both a point-radius representation (see decimalLatitude) and a footprint representation, and they may differ from each other.</td></tr>
<tr><td>Comment:</td><td>Example: the one-degree bounding box with opposite corners at (longitude=10, latitude=20) and (longitude=11, latitude=21) would be expressed in well-known text as POLYGON ((10 20, 11 20, 11 21, 10 21, 10 20))</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/footprint">footprint</a></td></tr>
<tr><th colspan="2" id="nmeaSentence">Term Name: nmeaSentence</th></tr>
<tr><td>Identifier:</td><td>http://ethoinformatics.org/ethocore/nmeaSentence</td></tr>
<tr><td>Class:</td><td>Location</td></tr>
<tr><td>Definition:</td><td>The NMEA sentence associated with the Location. The value should be expressed as a full NMEA sentence with the encoding (e.g., NMEA 0183) specified.</td></tr>
<tr><td>Comment:</td><td></td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/nmeaSentence">nmeaSentence</a></td></tr>
<tr><th colspan="2" id="identificationID">Term Name: identificationID</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/identificationID</td></tr>
<tr><td>Class:</td><td>Identification</td></tr>
<tr><td>Definition:</td><td>An identifier for the Identification (the body of information associated with the assignment of a scientific name). May be a global unique identifier or an identifier specific to the data set.</td></tr>
<tr><td>Comment:</td><td></td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/identificationID">identificationID</a></td></tr>
<tr><th colspan="2" id="identificationQualifier">Term Name: identificationQualifier</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/identificationQualifier</td></tr>
<tr><td>Class:</td><td>Identification</td></tr>
<tr><td>Definition:</td><td>A brief phrase or a standard term ("cf.", "aff.") to express the determiner's doubts about the Identification.</td></tr>
<tr><td>Comment:</td><td>Examples: 1) For the determination "Quercus aff. agrifolia var. oxyadenia", identificationQualifier would be "aff. agrifolia var. oxyadenia" with accompanying values "Quercus" in genus, "agrifolia" in specificEpithet, "oxyadenia" in infraspecificEpithet, and "var." in rank. 2) For the determination "Quercus agrifolia cf. var. oxyadenia", identificationQualifier would be "cf. var. oxyadenia " with accompanying values "Quercus" in genus, "agrifolia" in specificEpithet, "oxyadenia" in infraspecificEpithet, and "var." in rank.</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/identificationQualifier">identificationQualifier</a></td></tr>
<tr><th colspan="2" id="typeStatus">Term Name: typeStatus</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/typeStatus</td></tr>
<tr><td>Class:</td><td>Identification</td></tr>
<tr><td>Definition:</td><td>A list (concatenated and separated) of nomenclatural types (type status, typified scientific name, publication) applied to the subject.</td></tr>
<tr><td>Comment:</td><td>The recommended best practice is to separate the values with a vertical bar (' | '). Examples: "holotype of Ctenomys sociabilis. Pearson O. P., and M. I. Christie. 1985. Historia Natural, 5(37):388", "holotype of Pinus abies | holotype of Picea abies".</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/typeStatus">typeStatus</a></td></tr>
<tr><th colspan="2" id="identifiedBy">Term Name: identifiedBy</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/identifiedBy</td></tr>
<tr><td>Class:</td><td>Identification</td></tr>
<tr><td>Definition:</td><td>A list (concatenated and separated) of names of people, groups, or organizations who assigned the Taxon to the subject.</td></tr>
<tr><td>Comment:</td><td>The recommended best practice is to separate the values with a vertical bar (' | '). Examples: "James L. Patton", "Theodore Pappenfuss | Robert Macey".</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/identifiedBy">identifiedBy</a></td></tr>
<tr><th colspan="2" id="dateIdentified">Term Name: dateIdentified</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/dateIdentified</td></tr>
<tr><td>Class:</td><td>Identification</td></tr>
<tr><td>Definition:</td><td>The date on which the subject was identified as representing the Taxon. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).</td></tr>
<tr><td>Comment:</td><td>Examples: "1963-03-08T14:07-0600" is 8 Mar 1963 2:07pm in the time zone six hours earlier than UTC, "2009-02-20T08:40Z" is 20 Feb 2009 8:40am UTC, "1809-02-12" is 12 Feb 1809, "1906-06" is Jun 1906, "1971" is just that year, "2007-03-01T13:00:00Z/2008-05-11T15:30:00Z" is the interval between 1 Mar 2007 1pm UTC and 11 May 2008 3:30pm UTC, "2007-11-13/15" is the interval between 13 Nov 2007 and 15 Nov 2007.</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/dateIdentified">dateIdentified</a></td></tr>
<tr><th colspan="2" id="identificationReferences">Term Name: identificationReferences</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/identificationReferences</td></tr>
<tr><td>Class:</td><td>Identification</td></tr>
<tr><td>Definition:</td><td>A list (concatenated and separated) of references (publication, global unique identifier, URI) used in the Identification.</td></tr>
<tr><td>Comment:</td><td>The recommended best practice is to separate the values with a vertical bar (' | '). Examples: "Aves del Noroeste Patagonico. Christie et al. 2004.", "Stebbins, R. Field Guide to Western Reptiles and Amphibians. 3rd Edition. 2003. | Irschick, D.J. and Shaffer, H.B. (1997). ''The polytypic species revisited: Morphological differentiation among tiger salamanders (Ambystoma tigrinum) (Amphibia: Caudata).'' Herpetologica, 53(1), 30-49.".</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/identificationReferences">identificationReferences</a></td></tr>
<tr><th colspan="2" id="identificationVerificationStatus">Term Name: identificationVerificationStatus</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/identificationVerificationStatus</td></tr>
<tr><td>Class:</td><td>Identification</td></tr>
<tr><td>Definition:</td><td>A categorical indicator of the extent to which the taxonomic identification has been verified to be correct. Recommended best practice is to use a controlled vocabulary such as that used in HISPID/ABCD.</td></tr>
<tr><td>Comment:</td><td>Examples: "0", "4".</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/identificationVerificationStatus">identificationVerificationStatus</a></td></tr>
<tr><th colspan="2" id="identificationRemarks">Term Name: identificationRemarks</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/identificationRemarks</td></tr>
<tr><td>Class:</td><td>Identification</td></tr>
<tr><td>Definition:</td><td>Comments or notes about the Identification.</td></tr>
<tr><td>Comment:</td><td>Example: "Distinguished between Anthus correndera and Anthus hellmayri based on the comparative lengths of the uñas.".</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/identificationRemarks">identificationRemarks</a></td></tr>
<tr><th colspan="2" id="taxonID">Term Name: taxonID</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/taxonID</td></tr>
<tr><td>Class:</td><td>Taxon</td></tr>
<tr><td>Definition:</td><td>An identifier for the set of taxon information (data associated with the Taxon class). May be a global unique identifier or an identifier specific to the data set.</td></tr>
<tr><td>Comment:</td><td>Examples: "8fa58e08-08de-4ac1-b69c-1235340b7001", "32567", "http://species.gbif.org/abies_alba_1753", "urn:lsid:gbif.org:usages:32567"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/taxonID">taxonID</a></td></tr>
<tr><th colspan="2" id="scientificNameID">Term Name: scientificNameID</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/scientificNameID</td></tr>
<tr><td>Class:</td><td>Taxon</td></tr>
<tr><td>Definition:</td><td>An identifier for the nomenclatural (not taxonomic) details of a scientific name.</td></tr>
<tr><td>Comment:</td><td>Example: "urn:lsid:ipni.org:names:37829-1:1.3"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/scientificNameID">scientificNameID</a></td></tr>
<tr><th colspan="2" id="acceptedNameUsageID">Term Name: acceptedNameUsageID</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/acceptedNameUsageID</td></tr>
<tr><td>Class:</td><td>Taxon</td></tr>
<tr><td>Definition:</td><td>An identifier for the name usage (documented meaning of the name according to a source) of the currently valid (zoological) or accepted (botanical) taxon.</td></tr>
<tr><td>Comment:</td><td>Example: "8fa58e08-08de-4ac1-b69c-1235340b7001"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/acceptedNameUsageID">acceptedNameUsageID</a></td></tr>
<tr><th colspan="2" id="parentNameUsageID">Term Name: parentNameUsageID</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/parentNameUsageID</td></tr>
<tr><td>Class:</td><td>Taxon</td></tr>
<tr><td>Definition:</td><td>An identifier for the name usage (documented meaning of the name according to a source) of the direct, most proximate higher-rank parent taxon (in a classification) of the most specific element of the scientificName.</td></tr>
<tr><td>Comment:</td><td>Example: "8fa58e08-08de-4ac1-b69c-1235340b7001"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/parentNameUsageID">parentNameUsageID</a></td></tr>
<tr><th colspan="2" id="originalNameUsageID">Term Name: originalNameUsageID</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/originalNameUsageID</td></tr>
<tr><td>Class:</td><td>Taxon</td></tr>
<tr><td>Definition:</td><td>An identifier for the name usage (documented meaning of the name according to a source) in which the terminal element of the scientificName was originally established under the rules of the associated nomenclaturalCode.</td></tr>
<tr><td>Comment:</td><td>Example: "http://species.gbif.org/abies_alba_1753"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/originalNameUsageID">originalNameUsageID</a></td></tr>
<tr><th colspan="2" id="nameAccordingToID">Term Name: nameAccordingToID</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/nameAccordingToID</td></tr>
<tr><td>Class:</td><td>Taxon</td></tr>
<tr><td>Definition:</td><td>An identifier for the source in which the specific taxon concept circumscription is defined or implied. See nameAccordingTo.</td></tr>
<tr><td>Comment:</td><td>Example: "doi:10.1016/S0269-915X(97)80026-2"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/nameAccordingToID">nameAccordingToID</a></td></tr>
<tr><th colspan="2" id="namePublishedInID">Term Name: namePublishedInID</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/namePublishedInID</td></tr>
<tr><td>Class:</td><td>Taxon</td></tr>
<tr><td>Definition:</td><td>An identifier for the publication in which the scientificName was originally established under the rules of the associated nomenclaturalCode.</td></tr>
<tr><td>Comment:</td><td>Example: "http://hdl.handle.net/10199/7"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/namePublishedInID">namePublishedInID</a></td></tr>
<tr><th colspan="2" id="taxonConceptID">Term Name: taxonConceptID</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/taxonConceptID</td></tr>
<tr><td>Class:</td><td>Taxon</td></tr>
<tr><td>Definition:</td><td>An identifier for the taxonomic concept to which the record refers - not for the nomenclatural details of a taxon.</td></tr>
<tr><td>Comment:</td><td>Example: "8fa58e08-08de-4ac1-b69c-1235340b7001"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/taxonConceptID">taxonConceptID</a></td></tr>
<tr><th colspan="2" id="scientificName">Term Name: scientificName</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/scientificName</td></tr>
<tr><td>Class:</td><td>Taxon</td></tr>
<tr><td>Definition:</td><td>The full scientific name, with authorship and date information if known. When forming part of an Identification, this should be the name in lowest level taxonomic rank that can be determined. This term should not contain identification qualifications, which should instead be supplied in the IdentificationQualifier term.</td></tr>
<tr><td>Comment:</td><td>Examples: "Coleoptera" (order), "Vespertilionidae" (family), "Manis" (genus), "Ctenomys sociabilis" (genus + specificEpithet), "Ambystoma tigrinum diaboli" (genus + specificEpithet + infraspecificEpithet), "Roptrocerus typographi (Györfi, 1952)" (genus + specificEpithet + scientificNameAuthorship), "Quercus agrifolia var. oxyadenia (Torr.) J.T. Howell" (genus + specificEpithet + taxonRank + infraspecificEpithet + scientificNameAuthorship)</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/scientificName">scientificName</a></td></tr>
<tr><th colspan="2" id="acceptedNameUsage">Term Name: acceptedNameUsage</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/acceptedNameUsage</td></tr>
<tr><td>Class:</td><td>Taxon</td></tr>
<tr><td>Definition:</td><td>The full name, with authorship and date information if known, of the currently valid (zoological) or accepted (botanical) taxon.</td></tr>
<tr><td>Comment:</td><td>Example: "Tamias minimus" valid name for "Eutamias minimus"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/acceptedNameUsage">acceptedNameUsage</a></td></tr>
<tr><th colspan="2" id="parentNameUsage">Term Name: parentNameUsage</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/parentNameUsage</td></tr>
<tr><td>Class:</td><td>Taxon</td></tr>
<tr><td>Definition:</td><td>The full name, with authorship and date information if known, of the direct, most proximate higher-rank parent taxon (in a classification) of the most specific element of the scientificName.</td></tr>
<tr><td>Comment:</td><td>Examples: "Rubiaceae", "Gruiformes", "Testudinae"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/parentNameUsage">parentNameUsage</a></td></tr>
<tr><th colspan="2" id="originalNameUsage">Term Name: originalNameUsage</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/originalNameUsage</td></tr>
<tr><td>Class:</td><td>Taxon</td></tr>
<tr><td>Definition:</td><td>The taxon name, with authorship and date information if known, as it originally appeared when first established under the rules of the associated nomenclaturalCode. The basionym (botany) or basonym (bacteriology) of the scientificName or the senior/earlier homonym for replaced names.</td></tr>
<tr><td>Comment:</td><td>Examples: "Pinus abies", "Gasterosteus saltatrix Linnaeus 1768"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/originalNameUsage">originalNameUsage</a></td></tr>
<tr><th colspan="2" id="nameAccordingTo">Term Name: nameAccordingTo</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/nameAccordingTo</td></tr>
<tr><td>Class:</td><td>Taxon</td></tr>
<tr><td>Definition:</td><td>The reference to the source in which the specific taxon concept circumscription is defined or implied - traditionally signified by the Latin "sensu" or "sec." (from secundum, meaning "according to"). For taxa that result from identifications, a reference to the keys, monographs, experts and other sources should be given.</td></tr>
<tr><td>Comment:</td><td>Example: "McCranie, J. R., D. B. Wake, and L. D. Wilson. 1996. The taxonomic status of Bolitoglossa schmidti, with comments on the biology of the Mesoamerican salamander Bolitoglossa dofleini (Caudata: Plethodontidae). Carib. J. Sci. 32:395-398.", "Werner Greuter 2008", "Lilljeborg 1861, Upsala Univ. Arsskrift, Math. Naturvet., pp. 4, 5"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/nameAccordingTo">nameAccordingTo</a></td></tr>
<tr><th colspan="2" id="namePublishedIn">Term Name: namePublishedIn</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/namePublishedIn</td></tr>
<tr><td>Class:</td><td>Taxon</td></tr>
<tr><td>Definition:</td><td>A reference for the publication in which the scientificName was originally established under the rules of the associated nomenclaturalCode.</td></tr>
<tr><td>Comment:</td><td>Examples: "Pearson O. P., and M. I. Christie. 1985. Historia Natural, 5(37):388", "Forel, Auguste, Diagnosies provisoires de quelques espèces nouvelles de fourmis de Madagascar, récoltées par M. Grandidier., Annales de la Societe Entomologique de Belgique, Comptes-rendus des Seances 30, 1886"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/namePublishedIn">namePublishedIn</a></td></tr>
<tr><th colspan="2" id="namePublishedInYear">Term Name: namePublishedInYear</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/namePublishedInYear</td></tr>
<tr><td>Class:</td><td>Taxon</td></tr>
<tr><td>Definition:</td><td>The four-digit year in which the scientificName was published.</td></tr>
<tr><td>Comment:</td><td>Examples: "1915", "2008"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/namePublishedInYear">namePublishedInYear</a></td></tr>
<tr><th colspan="2" id="higherClassification">Term Name: higherClassification</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/higherClassification</td></tr>
<tr><td>Class:</td><td>Taxon</td></tr>
<tr><td>Definition:</td><td>A list (concatenated and separated) of taxa names terminating at the rank immediately superior to the taxon referenced in the taxon record. Recommended best practice is to order the list starting with the highest rank and separating the names for each rank with a semi-colon (";").</td></tr>
<tr><td>Comment:</td><td>Example: "Animalia;Chordata;Vertebrata;Mammalia;Theria;Eutheria;Rodentia;Hystricognatha;Hystricognathi;Ctenomyidae;Ctenomyini;Ctenomys"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/higherClassification">higherClassification</a></td></tr>
<tr><th colspan="2" id="kingdom">Term Name: kingdom</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/kingdom</td></tr>
<tr><td>Class:</td><td>Taxon</td></tr>
<tr><td>Definition:</td><td>The full scientific name of the kingdom in which the taxon is classified.</td></tr>
<tr><td>Comment:</td><td>Examples: "Animalia", "Plantae"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/kingdom">kingdom</a></td></tr>
<tr><th colspan="2" id="phylum">Term Name: phylum</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/phylum</td></tr>
<tr><td>Class:</td><td>Taxon</td></tr>
<tr><td>Definition:</td><td>The full scientific name of the phylum or division in which the taxon is classified.</td></tr>
<tr><td>Comment:</td><td>Examples: "Chordata" (phylum), "Bryophyta" (division)</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/phylum">phylum</a></td></tr>
<tr><th colspan="2" id="class">Term Name: class</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/class</td></tr>
<tr><td>Class:</td><td>Taxon</td></tr>
<tr><td>Definition:</td><td>The full scientific name of the class in which the taxon is classified.</td></tr>
<tr><td>Comment:</td><td>Examples: "Mammalia", "Hepaticopsida"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/class">class</a></td></tr>
<tr><th colspan="2" id="order">Term Name: order</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/order</td></tr>
<tr><td>Class:</td><td>Taxon</td></tr>
<tr><td>Definition:</td><td>The full scientific name of the order in which the taxon is classified.</td></tr>
<tr><td>Comment:</td><td>Examples: "Carnivora", "Monocleales"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/order">order</a></td></tr>
<tr><th colspan="2" id="family">Term Name: family</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/family</td></tr>
<tr><td>Class:</td><td>Taxon</td></tr>
<tr><td>Definition:</td><td>The full scientific name of the family in which the taxon is classified.</td></tr>
<tr><td>Comment:</td><td>Examples: "Felidae", "Monocleaceae"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/family">family</a></td></tr>
<tr><th colspan="2" id="genus">Term Name: genus</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/genus</td></tr>
<tr><td>Class:</td><td>Taxon</td></tr>
<tr><td>Definition:</td><td>The full scientific name of the genus in which the taxon is classified.</td></tr>
<tr><td>Comment:</td><td>Examples: "Puma", "Monoclea"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/genus">genus</a></td></tr>
<tr><th colspan="2" id="subgenus">Term Name: subgenus</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/subgenus</td></tr>
<tr><td>Class:</td><td>Taxon</td></tr>
<tr><td>Definition:</td><td>The full scientific name of the subgenus in which the taxon is classified. Values should include the genus to avoid homonym confusion.</td></tr>
<tr><td>Comment:</td><td>Examples: "Strobus (Pinus)", "Puma (Puma)" "Loligo (Amerigo)", "Hieracium subgen. Pilosella"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/subgenus">subgenus</a></td></tr>
<tr><th colspan="2" id="specificEpithet">Term Name: specificEpithet</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/specificEpithet</td></tr>
<tr><td>Class:</td><td>Taxon</td></tr>
<tr><td>Definition:</td><td>The name of the first or species epithet of the scientificName.</td></tr>
<tr><td>Comment:</td><td>Examples: "concolor", "gottschei"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/specificEpithet">specificEpithet</a></td></tr>
<tr><th colspan="2" id="infraspecificEpithet">Term Name: infraspecificEpithet</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/infraspecificEpithet</td></tr>
<tr><td>Class:</td><td>Taxon</td></tr>
<tr><td>Definition:</td><td>The name of the lowest or terminal infraspecific epithet of the scientificName, excluding any rank designation.</td></tr>
<tr><td>Comment:</td><td>Examples: "concolor", "oxyadenia", "sayi"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/infraspecificEpithet">infraspecificEpithet</a></td></tr>
<tr><th colspan="2" id="taxonRank">Term Name: taxonRank</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/taxonRank</td></tr>
<tr><td>Class:</td><td>Taxon</td></tr>
<tr><td>Definition:</td><td>The taxonomic rank of the most specific name in the scientificName. Recommended best practice is to use a controlled vocabulary.</td></tr>
<tr><td>Comment:</td><td>Examples: "subspecies", "varietas", "forma", "species", "genus"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/taxonRank">taxonRank</a></td></tr>
<tr><th colspan="2" id="verbatimTaxonRank">Term Name: verbatimTaxonRank</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/verbatimTaxonRank</td></tr>
<tr><td>Class:</td><td>Taxon</td></tr>
<tr><td>Definition:</td><td>The taxonomic rank of the most specific name in the scientificName as it appears in the original record.</td></tr>
<tr><td>Comment:</td><td>Examples: "Agamospecies", "sub-lesus", "prole", "apomict", "nothogrex", "sp.", "subsp.", "var."</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/verbatimTaxonRank">verbatimTaxonRank</a></td></tr>
<tr><th colspan="2" id="scientificNameAuthorship">Term Name: scientificNameAuthorship</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/scientificNameAuthorship</td></tr>
<tr><td>Class:</td><td>Taxon</td></tr>
<tr><td>Definition:</td><td>The authorship information for the scientificName formatted according to the conventions of the applicable nomenclaturalCode.</td></tr>
<tr><td>Comment:</td><td>Example: "(Torr.) J.T. Howell", "(Martinovský) Tzvelev", "(Györfi, 1952)"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/scientificNameAuthorship">scientificNameAuthorship</a></td></tr>
<tr><th colspan="2" id="vernacularName">Term Name: vernacularName</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/vernacularName</td></tr>
<tr><td>Class:</td><td>Taxon</td></tr>
<tr><td>Definition:</td><td>A common or vernacular name.</td></tr>
<tr><td>Comment:</td><td>Examples: "Andean Condor", "Condor Andino", "American Eagle", "Gänsegeier"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/vernacularName">vernacularName</a></td></tr>
<tr><th colspan="2" id="nomenclaturalCode">Term Name: nomenclaturalCode</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/nomenclaturalCode</td></tr>
<tr><td>Class:</td><td>Taxon</td></tr>
<tr><td>Definition:</td><td>The nomenclatural code (or codes in the case of an ambiregnal name) under which the scientificName is constructed. Recommended best practice is to use a controlled vocabulary.</td></tr>
<tr><td>Comment:</td><td>Examples: "ICBN", "ICZN", "BC", "ICNCP", "BioCode", "ICZN; ICBN"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/nomenclaturalCode">nomenclaturalCode</a></td></tr>
<tr><th colspan="2" id="taxonomicStatus">Term Name: taxonomicStatus</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/taxonomicStatus</td></tr>
<tr><td>Class:</td><td>Taxon</td></tr>
<tr><td>Definition:</td><td>The status of the use of the scientificName as a label for a taxon. Requires taxonomic opinion to define the scope of a taxon. Rules of priority then are used to define the taxonomic status of the nomenclature contained in that scope, combined with the experts opinion. It must be linked to a specific taxonomic reference that defines the concept. Recommended best practice is to use a controlled vocabulary.</td></tr>
<tr><td>Comment:</td><td>Examples: "invalid", "misapplied", "homotypic synonym", "accepted"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/taxonomicStatus">taxonomicStatus</a></td></tr>
<tr><th colspan="2" id="nomenclaturalStatus">Term Name: nomenclaturalStatus</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/nomenclaturalStatus</td></tr>
<tr><td>Class:</td><td>Taxon</td></tr>
<tr><td>Definition:</td><td>The status related to the original publication of the name and its conformance to the relevant rules of nomenclature. It is based essentially on an algorithm according to the business rules of the code. It requires no taxonomic opinion.</td></tr>
<tr><td>Comment:</td><td>Examples: "nom. ambig.", "nom. illeg.", "nom. subnud."</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/nomenclaturalStatus">nomenclaturalStatus</a></td></tr>
<tr><th colspan="2" id="taxonRemarks">Term Name: taxonRemarks</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/taxonRemarks</td></tr>
<tr><td>Class:</td><td>Taxon</td></tr>
<tr><td>Definition:</td><td>Comments or notes about the taxon or name.</td></tr>
<tr><td>Comment:</td><td>Example: "this name is a misspelling in common use"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/taxonRemarks">taxonRemarks</a></td></tr>
<tr><th colspan="2" id="resourceRelationshipID">Term Name: resourceRelationshipID</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/resourceRelationshipID</td></tr>
<tr><td>Class:</td><td>ResourceRelationship</td></tr>
<tr><td>Definition:</td><td>An identifier for an instance of relationship between one resource (the subject) and another (relatedResource, the object).</td></tr>
<tr><td>Comment:</td><td></td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/resourceRelationshipID">resourceRelationshipID</a></td></tr>
<tr><th colspan="2" id="resourceID">Term Name: resourceID</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/resourceID</td></tr>
<tr><td>Class:</td><td>ResourceRelationship</td></tr>
<tr><td>Definition:</td><td>An identifier for the resource that is the subject of the relationship.</td></tr>
<tr><td>Comment:</td><td></td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/resourceID">resourceID</a></td></tr>
<tr><th colspan="2" id="relatedResourceID">Term Name: relatedResourceID</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/relatedResourceID</td></tr>
<tr><td>Class:</td><td>ResourceRelationship</td></tr>
<tr><td>Definition:</td><td>An identifier for a related resource (the object, rather than the subject of the relationship).</td></tr>
<tr><td>Comment:</td><td></td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/relatedResourceID">relatedResourceID</a></td></tr>
<tr><th colspan="2" id="relationshipOfResource">Term Name: relationshipOfResource</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/relationshipOfResource</td></tr>
<tr><td>Class:</td><td>ResourceRelationship</td></tr>
<tr><td>Definition:</td><td>The relationship of the resource identified by relatedResourceID to the subject (optionally identified by the resourceID). Recommended best practice is to use a controlled vocabulary.</td></tr>
<tr><td>Comment:</td><td>Examples: "duplicate of", "mother of", "endoparasite of", "host to", "sibling of", "valid synonym of", "located within"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/relationshipOfResource">relationshipOfResource</a></td></tr>
<tr><th colspan="2" id="relationshipAccordingTo">Term Name: relationshipAccordingTo</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/relationshipAccordingTo</td></tr>
<tr><td>Class:</td><td>ResourceRelationship</td></tr>
<tr><td>Definition:</td><td>The source (person, organization, publication, reference) establishing the relationship between the two resources.</td></tr>
<tr><td>Comment:</td><td>Example: "Julie Woodruff"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/relationshipAccordingTo">relationshipAccordingTo</a></td></tr>
<tr><th colspan="2" id="relationshipEstablishedDate">Term Name: relationshipEstablishedDate</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/relationshipEstablishedDate</td></tr>
<tr><td>Class:</td><td>ResourceRelationship</td></tr>
<tr><td>Definition:</td><td>The date-time on which the relationship between the two resources was established. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).</td></tr>
<tr><td>Comment:</td><td>Examples: "1963-03-08T14:07-0600" is 8 Mar 1963 2:07pm in the time zone six hours earlier than UTC, "2009-02-20T08:40Z" is 20 Feb 2009 8:40am UTC, "1809-02-12" is 12 Feb 1809, "1906-06" is Jun 1906, "1971" is just that year, "2007-03-01T13:00:00Z/2008-05-11T15:30:00Z" is the interval between 1 Mar 2007 1pm UTC and 11 May 2008 3:30pm UTC, "2007-11-13/15" is the interval between 13 Nov 2007 and 15 Nov 2007.</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/relationshipEstablishedDate">relationshipEstablishedDate</a></td></tr>
<tr><th colspan="2" id="relationshipRemarks">Term Name: relationshipRemarks</th></tr>
<tr><td>Identifier:</td><td>http://rs.tdwg.org/dwc/terms/relationshipRemarks</td></tr>
<tr><td>Class:</td><td>ResourceRelationship</td></tr>
<tr><td>Definition:</td><td>Comments or notes about the relationship between the two resources.</td></tr>
<tr><td>Comment:</td><td>Examples: "mother and offspring collected from the same nest", "pollinator captured in the act"</td></tr>
<tr><td>Details:</td><td><a href="http://ethoinformatics.org/ethocore/relationshipRemarks">relationshipRemarks</a></td></tr>
</table>