-
Notifications
You must be signed in to change notification settings - Fork 4
/
dwcterms.rdf
2771 lines (2579 loc) · 222 KB
/
dwcterms.rdf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<!--
To use the stylesheet to make the RDF more readable in a web browser,
uncomment one of the the following stylesheet references:
<?xml-stylesheet type="text/xsl" href="human.xsl"?>
<?xml-stylesheet type="text/xsl" href="http://rs.tdwg.org/dwc/rdf/human.xsl"?>
-->
<!DOCTYPE rdf:RDF [
<!ENTITY rdfns "http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<!ENTITY rdfsns "http://www.w3.org/2000/01/rdf-schema#">
<!ENTITY dctermsns "http://purl.org/dc/terms/">
<!ENTITY dctypens "http://purl.org/dc/dcmitype/">
<!ENTITY dwcattributesns "http://rs.tdwg.org/dwc/terms/attributes/">
<!--
<!ENTITY skosns 'http://www.w3.org/2004/02/skos/core#'>
<!ENTITY vsns 'http://www.w3.org/2003/06/sw-vocab-status/ns#'>
-->]>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dwcattributes="http://rs.tdwg.org/dwc/terms/attributes/"
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/">
<dcterms:title xml:lang="en">Darwin Core Recommended Terms</dcterms:title>
<rdfs:comment>This document contains a list of Darwin Core terms that have the dwcattributes:status equal to "recommended". For the full normative RDF document of all Darwin Core terms, see dwctermshistory.rdf. To comment on this schema, please create a new issue in https://github.com/tdwg/dwc/issues</rdfs:comment>
<dcterms:publisher xml:lang="en">Biodiversity Information Standards (TDWG)</dcterms:publisher>
<dcterms:modified>2016-04-25</dcterms:modified>
</rdf:Description>
<!--
Each RDF description uses the following:
rdfs:label
rdfs:comment
dcterms:description
rdfs:isDefinedBy
dcterms:issued
dcterms:modified
rdf:type
dcterms:hasVersion
rdfs:subPropertyOf
dcterms:replaces
rdfs:seeAlso (for ABCD mapping)
dwcattributes:status
dwcattributes:decision
dwcattributes:abcdEquivalence
dwcattributes:organizedInClass
-->
<!-- Mutable RDF goes here -->
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/acceptedNameUsage">
<rdfs:comment xml:lang="en">The full name, with authorship and date information if known, of the currently valid (zoological) or accepted (botanical) taxon.</rdfs:comment>
<dcterms:modified>2009-09-21</dcterms:modified>
<rdfs:label xml:lang="en">Accepted Name Usage</rdfs:label>
<dcterms:description xml:lang="en">Example: "Tamias minimus" valid name for "Eutamias minimus"</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2008-11-19</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/acceptedNameUsage-2009-09-21"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>not in ABCD</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://rs.tdwg.org/dwc/terms/Taxon"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/acceptedNameUsageID">
<rdfs:comment xml:lang="en">An identifier for the name usage (documented meaning of the name according to a source) of the currently valid (zoological) or accepted (botanical) taxon.</rdfs:comment>
<dcterms:modified>2009-09-21</dcterms:modified>
<rdfs:label xml:lang="en">Accepted Name Usage ID</rdfs:label>
<dcterms:description xml:lang="en">Example: "8fa58e08-08de-4ac1-b69c-1235340b7001"</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2009-01-21</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/acceptedNameUsageID-2009-09-21"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>not in ABCD</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://rs.tdwg.org/dwc/terms/Taxon"/>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/identifier"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/accordingTo">
<rdfs:comment xml:lang="en">Abstract term to attribute information to a source.</rdfs:comment>
<dcterms:modified>2009-01-21</dcterms:modified>
<rdfs:label xml:lang="en">According To</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2009-01-21</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/accordingTo-2009-01-21"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>not in ABCD</dwcattributes:abcdEquivalence>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/associatedMedia">
<rdfs:comment xml:lang="en">A list (concatenated and separated) of identifiers (publication, global unique identifier, URI) of media associated with the Occurrence.</rdfs:comment>
<dcterms:modified>2014-10-23</dcterms:modified>
<rdfs:label xml:lang="en">Associated Media</rdfs:label>
<dcterms:description xml:lang="en">The recommended best practice is to separate the values with a vertical bar (' | '). Examples: "http://arctos.database.museum/SpecimenImages/UAMObs/Mamm/2/P7291179.JPG", "http://204.140.246.24/Fish/Collection%20Pictures/10118-00.jpg | http://204.140.246.24/Fish/Collection%20Pictures/10118-00a.jpg".</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2008-11-19</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/associatedMedia-2014-10-23"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>DataSets/DataSet/Units/Unit/MultimediaObjects</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://rs.tdwg.org/dwc/terms/Occurrence"/>
<dwcattributes:decision rdf:resource="http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-30_16"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/associatedOccurrences">
<rdfs:comment xml:lang="en">A list (concatenated and separated) of identifiers of other Occurrence records and their associations to this Occurrence.</rdfs:comment>
<dcterms:modified>2014-10-23</dcterms:modified>
<rdfs:label xml:lang="en">Associated Occurrences</rdfs:label>
<dcterms:description xml:lang="en">The recommended best practice is to separate the values with a vertical bar (' | ').</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2008-11-19</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/associatedOccurrences-2014-10-23"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceInstitutionCode + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceName + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitID</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://rs.tdwg.org/dwc/terms/Organism"/>
<dwcattributes:decision rdf:resource="http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-30_16"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/associatedOrganisms">
<rdfs:comment xml:lang="en">A list (concatenated and separated) of identifiers of other Organisms and their associations to this Organism.</rdfs:comment>
<dcterms:modified>2014-10-23</dcterms:modified>
<rdfs:label xml:lang="en">Associated Organisms</rdfs:label>
<dcterms:description xml:lang="en">The recommended best practice is to separate the values with a vertical bar (' | '). Examples: "sibling of MXA-232", "mother of MXA-231 | mother of MXA-232"</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2014-10-23</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/associatedOrganisms-2014-10-23"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>not in ABCD</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://rs.tdwg.org/dwc/terms/Organism"/>
<dwcattributes:decision rdf:resource="http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-26_14"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/associatedReferences">
<rdfs:comment xml:lang="en">A list (concatenated and separated) of identifiers (publication, bibliographic reference, global unique identifier, URI) of literature associated with the Occurrence.</rdfs:comment>
<dcterms:modified>2014-10-23</dcterms:modified>
<rdfs:label xml:lang="en">Associated References</rdfs:label>
<dcterms:description xml:lang="en">The recommended best practice is to separate the values with a vertical bar (' | '). Examples: "http://www.sciencemag.org/cgi/content/abstract/322/5899/261", "Christopher J. Conroy, Jennifer L. Neuwald. 2008. Phylogeographic study of the California vole, Microtus californicus Journal of Mammalogy, 89(3):755-767.", "Steven R. Hoofer and Ronald A. Van Den Bussche. 2001. Phylogenetic Relationships of Plecotine Bats and Allies Based on Mitochondrial Ribosomal Sequences. Journal of Mammalogy 82(1):131-137. | Walker, Faith M., Jeffrey T. Foster, Kevin P. Drees, Carol L. Chambers. 2014. Spotted bat (Euderma maculatum) microsatellite discovery using illumina sequencing. Conservation Genetics Resources.".</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2008-11-19</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/associatedReferences-2014-10-23"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>DataSets/DataSet/Units/Unit/UnitReferences</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://rs.tdwg.org/dwc/terms/Occurrence"/>
<dwcattributes:decision rdf:resource="http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-30_16"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/associatedSequences">
<rdfs:comment xml:lang="en">A list (concatenated and separated) of identifiers (publication, global unique identifier, URI) of genetic sequence information associated with the Occurrence.</rdfs:comment>
<dcterms:modified>2014-10-23</dcterms:modified>
<rdfs:label xml:lang="en">Associated Sequences</rdfs:label>
<dcterms:description xml:lang="en">The recommended best practice is to separate the values with a vertical bar (' | '). Examples: "http://www.ncbi.nlm.nih.gov/nuccore/U34853.1", "http://www.ncbi.nlm.nih.gov/nuccore/GU328060 | http://www.ncbi.nlm.nih.gov/nuccore/AF326093".</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2008-11-19</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/associatedSequences-2014-10-23"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>DataSets/DataSet/Units/Unit/Sequences/Sequence/ID-in-Database + constant</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://rs.tdwg.org/dwc/terms/Occurrence"/>
<dwcattributes:decision rdf:resource="http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-30_16"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/associatedTaxa">
<rdfs:comment xml:lang="en">A list (concatenated and separated) of identifiers or names of taxa and their associations with the Occurrence.</rdfs:comment>
<dcterms:modified>2014-10-23</dcterms:modified>
<rdfs:label xml:lang="en">Associated Taxa</rdfs:label>
<dcterms:description xml:lang="en">The recommended best practice is to separate the values with a vertical bar (' | '), and to separate the relationship from the taxon with a colon (':'). Examples: "host: Quercus alba", "parasitoid of:Cyclocephala signaticollis | predator of Apis mellifera".</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2008-11-19</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/associatedTaxa-2014-10-23"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>DataSets/DataSet/Units/Unit/Gathering/Synecology/AssociatedTaxa</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://rs.tdwg.org/dwc/terms/Occurrence"/>
<dwcattributes:decision rdf:resource="http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-30_16"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/basisOfRecord">
<rdfs:comment xml:lang="en">The specific nature of the data record.</rdfs:comment>
<dcterms:modified>2014-10-23</dcterms:modified>
<rdfs:label xml:lang="en">Basis of Record</rdfs:label>
<dcterms:description xml:lang="en">Recommended best practice is to use a controlled vocabulary such as the list of Darwin Core classes. Examples: "PreservedSpecimen", "FossilSpecimen", "LivingSpecimen", "HumanObservation", "MachineObservation"</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2008-11-19</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/basisOfRecord-2014-10-23"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>DataSets/DataSet/Units/Unit/RecordBasis</dwcattributes:abcdEquivalence>
<dwcattributes:decision rdf:resource="http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-26_15"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/bed">
<rdfs:comment xml:lang="en">The full name of the lithostratigraphic bed from which the cataloged item was collected.</rdfs:comment>
<dcterms:modified>2009-07-06</dcterms:modified>
<rdfs:label xml:lang="en">Bed</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2009-04-24</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/bed-2009-04-24"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>not in ABCD</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://rs.tdwg.org/dwc/terms/GeologicalContext"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/behavior">
<rdfs:comment xml:lang="en">A description of the behavior shown by the subject at the time the Occurrence was recorded. Recommended best practice is to use a controlled vocabulary.</rdfs:comment>
<dcterms:modified>2009-04-24</dcterms:modified>
<rdfs:label xml:lang="en">Behavior</rdfs:label>
<dcterms:description xml:lang="en">Examples: "roosting", "foraging", "running"</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2009-03-06</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/behavior-2009-04-24"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>not in ABCD</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://rs.tdwg.org/dwc/terms/Occurrence"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/catalogNumber">
<rdfs:comment xml:lang="en">An identifier (preferably unique) for the record within the data set or collection.</rdfs:comment>
<dcterms:modified>2009-04-24</dcterms:modified>
<rdfs:label xml:lang="en">Catalog Number</rdfs:label>
<dcterms:description xml:lang="en">Examples: "2008.1334", "145732a", "145732"</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2008-11-19</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/catalogNumber-2009-04-24"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>DataSets/DataSet/Units/Unit/UnitID</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://rs.tdwg.org/dwc/terms/Occurrence"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/class">
<rdfs:comment xml:lang="en">The full scientific name of the class in which the taxon is classified.</rdfs:comment>
<dcterms:modified>2009-08-24</dcterms:modified>
<rdfs:label xml:lang="en">Class</rdfs:label>
<dcterms:description xml:lang="en">Examples: "Mammalia", "Hepaticopsida"</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2008-11-19</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/class-2009-08-24"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = classis</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://rs.tdwg.org/dwc/terms/Taxon"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/collectionCode">
<rdfs:comment xml:lang="en">The name, acronym, coden, or initialism identifying the collection or data set from which the record was derived.</rdfs:comment>
<dcterms:modified>2013-10-04</dcterms:modified>
<rdfs:label xml:lang="en">Collection Code</rdfs:label>
<dcterms:description xml:lang="en">Examples: "Mammals", "Hildebrandt", "eBird"</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2008-11-19</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/collectionCode-2009-09-11"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>DataSets/DataSet/Units/Unit/SourceID</dwcattributes:abcdEquivalence>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/collectionID">
<rdfs:comment xml:lang="en">An identifier for the collection or dataset from which the record was derived.</rdfs:comment>
<dcterms:modified>2014-10-23</dcterms:modified>
<rdfs:label xml:lang="en">Collection ID</rdfs:label>
<dcterms:description xml:lang="en">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".</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2008-11-19</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/collectionID-2009-09-11"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>DataSets/DataSet/Units/Unit/SourceID</dwcattributes:abcdEquivalence>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/continent">
<rdfs:comment xml:lang="en">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.</rdfs:comment>
<dcterms:modified>2013-10-04</dcterms:modified>
<rdfs:label xml:lang="en">Continent</rdfs:label>
<dcterms:description xml:lang="en">Examples: "Africa", "Antarctica", "Asia", "Europe", "North America", "Oceania", "South America"</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2008-11-19</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/continent-2009-04-24"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Continent</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://purl.org/dc/terms/Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/coordinatePrecision">
<rdfs:comment xml:lang="en">A decimal representation of the precision of the coordinates given in the decimalLatitude and decimalLongitude.</rdfs:comment>
<dcterms:modified>2009-04-24</dcterms:modified>
<rdfs:label xml:lang="en">Coordinate Precision</rdfs:label>
<dcterms:description xml:lang="en">Examples: "0.00001" (normal GPS limit for decimal degrees), "0.000278" (nearest second), "0.01667" (nearest minute), "1.0" (nearest degree)</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2008-11-19</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/coordinatePrecision-2009-04-24"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLong/ISOAccuracy or DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLong/AccuracyStatement</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://purl.org/dc/terms/Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/coordinateUncertaintyInMeters">
<rdfs:comment xml:lang="en">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.</rdfs:comment>
<dcterms:modified>2009-04-24</dcterms:modified>
<rdfs:label xml:lang="en">Coordinate Uncertainty In Meters</rdfs:label>
<dcterms:description xml:lang="en">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).</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2008-11-19</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/coordinateUncertaintyInMeters-2009-04-24"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/CoordinateErrorDistanceInMeters</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://purl.org/dc/terms/Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/country">
<rdfs:comment xml:lang="en">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.</rdfs:comment>
<dcterms:modified>2009-04-24</dcterms:modified>
<rdfs:label xml:lang="en">Country</rdfs:label>
<dcterms:description xml:lang="en">Examples: "Denmark", "Colombia", "España"</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2008-11-19</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/country-2009-04-24"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>DataSets/DataSet/Units/Unit/Gathering/Country/Name</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://purl.org/dc/terms/Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/countryCode">
<rdfs:comment xml:lang="en">The standard code for the country in which the Location occurs. Recommended best practice is to use ISO 3166-1-alpha-2 country codes.</rdfs:comment>
<dcterms:modified>2009-04-24</dcterms:modified>
<rdfs:label xml:lang="en">Country Code</rdfs:label>
<dcterms:description xml:lang="en">Examples: "AR" for Argentina, "SV" for El Salvador</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2008-11-19</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/countryCode-2009-04-24"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>DataSets/DataSet/Units/Unit/Gathering/Country/ISO3166Code</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://purl.org/dc/terms/Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/county">
<rdfs:comment xml:lang="en">The full, unabbreviated name of the next smaller administrative region than stateProvince (county, shire, department, etc.) in which the Location occurs.</rdfs:comment>
<dcterms:modified>2009-04-24</dcterms:modified>
<rdfs:label xml:lang="en">County</rdfs:label>
<dcterms:description xml:lang="en">Examples: "Missoula", "Los Lagos", "Mataró"</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2008-11-19</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/county-2009-04-24"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= County</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://purl.org/dc/terms/Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/dataGeneralizations">
<rdfs:comment xml:lang="en">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.</rdfs:comment>
<dcterms:modified>2009-04-24</dcterms:modified>
<rdfs:label xml:lang="en">Data Generalizations</rdfs:label>
<dcterms:description xml:lang="en">Example: "Coordinates generalized from original GPS coordinates to the nearest half degree grid cell"</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2008-11-19</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/dataGeneralizations-2009-04-24"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>not in ABCD</dwcattributes:abcdEquivalence>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/datasetID">
<rdfs:comment xml:lang="en">An identifier for the set of data. May be a global unique identifier or an identifier specific to a collection or institution.</rdfs:comment>
<dcterms:modified>2009-09-11</dcterms:modified>
<rdfs:label xml:lang="en">Dataset ID</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2008-11-19</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/datasetID-2009-09-11"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>DataSets/DataSet/DataSetGUID</dwcattributes:abcdEquivalence>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/identifier"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/datasetName">
<rdfs:comment xml:lang="en">The name identifying the data set from which the record was derived.</rdfs:comment>
<dcterms:modified>2009-09-11</dcterms:modified>
<rdfs:label xml:lang="en">Dataset Name</rdfs:label>
<dcterms:description xml:lang="en">Examples: "Grinnell Resurvey Mammals", "Lacey Ctenomys Recaptures"</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2009-09-11</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/datasetName-2009-09-11"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>DataSets/DataSet/Units/Unit/SourceID</dwcattributes:abcdEquivalence>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/dateIdentified">
<rdfs:comment xml:lang="en">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).</rdfs:comment>
<dcterms:modified>2009-08-24</dcterms:modified>
<rdfs:label xml:lang="en">Date Identified</rdfs:label>
<dcterms:description xml:lang="en">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.</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2008-11-19</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/dateIdentified-2009-08-24"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>DataSets/DataSet/Units/Unit/Identifications/Identification/Date/DateText</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://rs.tdwg.org/dwc/terms/Identification"/>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/date"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/day">
<rdfs:comment xml:lang="en">The integer day of the month on which the Event occurred.</rdfs:comment>
<dcterms:modified>2009-04-24</dcterms:modified>
<rdfs:label xml:lang="en">Day</rdfs:label>
<dcterms:description xml:lang="en">Examples: "9", "28"</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2008-11-19</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/day-2009-04-24"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://rs.tdwg.org/dwc/terms/Event"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/decimalLatitude">
<rdfs:comment xml:lang="en">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.</rdfs:comment>
<dcterms:modified>2009-07-06</dcterms:modified>
<rdfs:label xml:lang="en">Decimal Latitude</rdfs:label>
<dcterms:description xml:lang="en">Example: "-41.0983423"</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2008-11-19</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/decimalLatitude-2009-04-24"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/LatitudeDecimal</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://purl.org/dc/terms/Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/decimalLongitude">
<rdfs:comment xml:lang="en">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.</rdfs:comment>
<dcterms:modified>2009-07-06</dcterms:modified>
<rdfs:label xml:lang="en">Decimal Longitude</rdfs:label>
<dcterms:description xml:lang="en">Example: "-121.1761111"</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2008-11-19</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/decimalLongitude-2009-04-24"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/LongitudeDecimal</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://purl.org/dc/terms/Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/disposition">
<rdfs:comment xml:lang="en">The current state of a specimen with respect to the collection identified in collectionCode or collectionID. Recommended best practice is to use a controlled vocabulary.</rdfs:comment>
<dcterms:modified>2009-04-24</dcterms:modified>
<rdfs:label xml:lang="en">Disposition</rdfs:label>
<dcterms:description xml:lang="en">Examples: "in collection", "missing", "voucher elsewhere", "duplicates elsewhere"</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2008-11-19</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/disposition-2009-04-24"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>DataSets/DataSet/Units/Unit/SpecimenUnit/Disposition</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://rs.tdwg.org/dwc/terms/Occurrence"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/dynamicProperties">
<rdfs:comment xml:lang="en">A list of additional measurements, facts, characteristics, or assertions about the record. Meant to provide a mechanism for structured content.</rdfs:comment>
<dcterms:modified>2014-10-23</dcterms:modified>
<rdfs:label xml:lang="en">Dynamic Properties</rdfs:label>
<dcterms:description xml:lang="en">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"}".</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2008-11-19</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/dynamicProperties-2014-10-23"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>not in ABCD</dwcattributes:abcdEquivalence>
<dwcattributes:decision rdf:resource="http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-30_16"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/earliestAgeOrLowestStage">
<rdfs:comment xml:lang="en">The full name of the earliest possible geochronologic age or lowest chronostratigraphic stage attributable to the stratigraphic horizon from which the cataloged item was collected.</rdfs:comment>
<dcterms:modified>2009-07-06</dcterms:modified>
<rdfs:label xml:lang="en">Earliest Age Or Lowest Stage</rdfs:label>
<dcterms:description xml:lang="en">Examples: "Atlantic", "Boreal", "Skullrockian"</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2009-04-24</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/earliestAgeOrLowestStage-2009-04-24"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>not in ABCD</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://rs.tdwg.org/dwc/terms/GeologicalContext"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/earliestEonOrLowestEonothem">
<rdfs:comment xml:lang="en">The full name of the earliest possible geochronologic eon or lowest chrono-stratigraphic eonothem or the informal name ("Precambrian") attributable to the stratigraphic horizon from which the cataloged item was collected.</rdfs:comment>
<dcterms:modified>2009-07-06</dcterms:modified>
<rdfs:label xml:lang="en">Earliest Eon Or Lowest Eonothem</rdfs:label>
<dcterms:description xml:lang="en">Examples: "Phanerozoic", "Proterozoic"</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2009-04-24</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/earliestEonOrLowestEonothem-2009-04-24"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>not in ABCD</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://rs.tdwg.org/dwc/terms/GeologicalContext"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/earliestEpochOrLowestSeries">
<rdfs:comment xml:lang="en">The full name of the earliest possible geochronologic epoch or lowest chronostratigraphic series attributable to the stratigraphic horizon from which the cataloged item was collected.</rdfs:comment>
<dcterms:modified>2009-07-06</dcterms:modified>
<rdfs:label xml:lang="en">Earliest Epoch Or Lowest Series</rdfs:label>
<dcterms:description xml:lang="en">Examples: "Holocene", "Pleistocene", "Ibexian Series"</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2009-04-24</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/earliestEpochOrLowestSeries-2009-04-24"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>not in ABCD</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://rs.tdwg.org/dwc/terms/GeologicalContext"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/earliestEraOrLowestErathem">
<rdfs:comment xml:lang="en">The full name of the earliest possible geochronologic era or lowest chronostratigraphic erathem attributable to the stratigraphic horizon from which the cataloged item was collected.</rdfs:comment>
<dcterms:modified>2009-07-06</dcterms:modified>
<rdfs:label xml:lang="en">Earliest Era Or Lowest Erathem</rdfs:label>
<dcterms:description xml:lang="en">Examples: "Cenozoic", "Mesozoic"</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2009-04-24</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/earliestEraOrLowestErathem-2009-04-24"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>not in ABCD</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://rs.tdwg.org/dwc/terms/GeologicalContext"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/earliestPeriodOrLowestSystem">
<rdfs:comment xml:lang="en">The full name of the earliest possible geochronologic period or lowest chronostratigraphic system attributable to the stratigraphic horizon from which the cataloged item was collected.</rdfs:comment>
<dcterms:modified>2009-07-06</dcterms:modified>
<rdfs:label xml:lang="en">Earliest Period Or Lowest System</rdfs:label>
<dcterms:description xml:lang="en">Examples: "Neogene", "Tertiary", "Quaternary"</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2009-04-24</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/earliestPeriodOrLowestSystem-2009-04-24"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>not in ABCD</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://rs.tdwg.org/dwc/terms/GeologicalContext"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/endDayOfYear">
<rdfs:comment xml:lang="en">The latest ordinal day of the year on which the Event occurred (1 for January 1, 365 for December 31, except in a leap year, in which case it is 366).</rdfs:comment>
<dcterms:modified>2009-04-24</dcterms:modified>
<rdfs:label xml:lang="en">End Day Of Year</rdfs:label>
<dcterms:description xml:lang="en">Examples: "1" (=1 Jan), "366" (=31 Dec), "365" (=30 Dec in a leap year, 31 Dec in a non-leap year)</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2008-11-19</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/endDayOfYear-2009-04-24"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>DataSets/DataSet/Units/Unit/Gathering/DateTime/DayNumberEnd</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://rs.tdwg.org/dwc/terms/Event"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/establishmentMeans">
<rdfs:comment xml:lang="en">The process by which the biological individual(s) represented in the Occurrence became established at the location. Recommended best practice is to use a controlled vocabulary.</rdfs:comment>
<dcterms:modified>2009-04-24</dcterms:modified>
<rdfs:label xml:lang="en">Establishment Means</rdfs:label>
<dcterms:description xml:lang="en">Examples: "native", "introduced", "naturalised", "invasive", "managed"</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2008-11-19</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/establishmentMeans-2009-04-24"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>DataSets/DataSet/Units/Unit/Gathering/EstablishmentMeans</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://rs.tdwg.org/dwc/terms/Occurrence"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/Event">
<rdfs:comment xml:lang="en">An action that occurs at some location during some time.</rdfs:comment>
<dcterms:modified>2014-10-23</dcterms:modified>
<rdfs:label xml:lang="en">Event</rdfs:label>
<dcterms:description xml:lang="en">Examples: A specimen collection process. A machine observation.</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2008-11-19</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/Event-2014-10-23"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>DataSets/DataSet/Units/Unit/Gathering</dwcattributes:abcdEquivalence>
<dwcattributes:decision rdf:resource="http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-26_15"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/eventDate">
<rdfs:comment xml:lang="en">The date-time or interval during which an Event occurred. For occurrences, this is the date-time when the event was recorded. Not suitable for a time in a geological context. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).</rdfs:comment>
<dcterms:modified>2009-07-01</dcterms:modified>
<rdfs:label xml:lang="en">Event Date</rdfs:label>
<dcterms:description xml:lang="en">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.</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2009-04-24</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/eventDate-2009-04-24"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://rs.tdwg.org/dwc/terms/Event"/>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/date"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/eventID">
<rdfs:comment xml:lang="en">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.</rdfs:comment>
<dcterms:modified>2009-04-24</dcterms:modified>
<rdfs:label xml:lang="en">Event ID</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2008-11-19</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/eventID-2009-04-24"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>DataSets/DataSet/Units/Unit/Gathering/Code</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://rs.tdwg.org/dwc/terms/Event"/>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/identifier"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/eventRemarks">
<rdfs:comment xml:lang="en">Comments or notes about the Event.</rdfs:comment>
<dcterms:modified>2009-04-24</dcterms:modified>
<rdfs:label xml:lang="en">Event Remarks</rdfs:label>
<dcterms:description xml:lang="en">Example: "after the recent rains the river is nearly at flood stage"</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2009-01-18</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/eventRemarks-2009-04-24"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>DataSets/DataSet/Units/Unit/Gathering/Notes</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://rs.tdwg.org/dwc/terms/Event"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/eventTime">
<rdfs:comment xml:lang="en">The time or interval during which an Event occurred. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).</rdfs:comment>
<dcterms:modified>2009-04-24</dcterms:modified>
<rdfs:label xml:lang="en">Event Time</rdfs:label>
<dcterms:description xml:lang="en">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.</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2009-04-24</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/eventTime-2009-04-24"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin and DataSets/DataSet/Units/Unit/Gathering/ISODateTimeEnd</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://rs.tdwg.org/dwc/terms/Event"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/family">
<rdfs:comment xml:lang="en">The full scientific name of the family in which the taxon is classified.</rdfs:comment>
<dcterms:modified>2009-08-24</dcterms:modified>
<rdfs:label xml:lang="en">Family</rdfs:label>
<dcterms:description xml:lang="en">Examples: "Felidae", "Monocleaceae"</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2008-11-19</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/family-2009-08-24"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = familia</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://rs.tdwg.org/dwc/terms/Taxon"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/fieldNotes">
<rdfs:comment xml:lang="en">One of a) an indicator of the existence of, b) a reference to (publication, URI), or c) the text of notes taken in the field about the Event.</rdfs:comment>
<dcterms:modified>2009-04-24</dcterms:modified>
<rdfs:label xml:lang="en">Field Notes</rdfs:label>
<dcterms:description xml:lang="en">Example: "notes available in Grinnell-Miller Library"</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2008-11-19</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/fieldNotes-2009-04-24"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>DataSets/DataSet/Units/Unit/FieldNotes</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://rs.tdwg.org/dwc/terms/Event"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/fieldNumber">
<rdfs:comment xml:lang="en">An identifier given to the event in the field. Often serves as a link between field notes and the Event.</rdfs:comment>
<dcterms:modified>2009-04-24</dcterms:modified>
<rdfs:label xml:lang="en">Field Number</rdfs:label>
<dcterms:description xml:lang="en">Example: "RV Sol 87-03-08"</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2008-11-19</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/fieldNumber-2009-04-24"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>DataSets/DataSet/Units/Unit/Gathering/Code</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://rs.tdwg.org/dwc/terms/Event"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/footprintSpatialFit">
<rdfs:comment xml:lang="en">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.</rdfs:comment>
<dcterms:modified>2014-10-23</dcterms:modified>
<rdfs:label xml:lang="en">Footprint Spatial Fit</rdfs:label>
<dcterms:description xml:lang="en">Detailed explanations with graphical examples can be found in the "Guide to Best Practices for Georeferencing", Chapman and Wieczorek, eds. 2006.</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2008-11-19</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/footprintSpatialFit-2009-04-24"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>DataSets/DataSet/Units/Unit/Gathering/FootprintSpatialFit (ABCD v2.06b)</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://purl.org/dc/terms/Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/footprintSRS">
<rdfs:comment xml:lang="en">A Well-Known Text (WKT) representation of the Spatial Reference System (SRS) for the footprintWKT 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 footprintWKT - use the geodeticDatum instead.</rdfs:comment>
<dcterms:modified>2009-07-06</dcterms:modified>
<rdfs:label xml:lang="en">Footprint SRS</rdfs:label>
<dcterms:description xml:lang="en">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.</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2009-07-06</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/footprintSRS-2009-07-06"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>not in ABCD</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://purl.org/dc/terms/Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/footprintWKT">
<rdfs:comment xml:lang="en">A Well-Known Text (WKT) 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.</rdfs:comment>
<dcterms:modified>2009-04-24</dcterms:modified>
<rdfs:label xml:lang="en">Footprint WKT</rdfs:label>
<dcterms:description xml:lang="en">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))</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2008-11-19</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/footprintWKT-2009-04-24"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>DataSets/DataSet/Units/Unit/Gathering/FootprintWKT (ABCD v2.06b)</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://purl.org/dc/terms/Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/formation">
<rdfs:comment xml:lang="en">The full name of the lithostratigraphic formation from which the cataloged item was collected.</rdfs:comment>
<dcterms:modified>2009-07-06</dcterms:modified>
<rdfs:label xml:lang="en">Formation</rdfs:label>
<dcterms:description xml:lang="en">Examples: "Notch Peak Fromation", "House Limestone", "Fillmore Formation"</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2009-04-24</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/formation-2009-04-24"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>not in ABCD</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://rs.tdwg.org/dwc/terms/GeologicalContext"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/FossilSpecimen">
<rdfs:comment xml:lang="en">A preserved specimen that is a fossil.</rdfs:comment>
<dcterms:modified>2014-10-23</dcterms:modified>
<rdfs:label xml:lang="en">Fossil Specimen</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2014-10-23</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/FossilSpecimen-2014-10-23"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>RecordBasisEnum/FossileSpecimen</dwcattributes:abcdEquivalence>
<dwcattributes:decision rdf:resource="http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-26_15"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/genus">
<rdfs:comment xml:lang="en">The full scientific name of the genus in which the taxon is classified.</rdfs:comment>
<dcterms:modified>2009-08-24</dcterms:modified>
<rdfs:label xml:lang="en">Genus</rdfs:label>
<dcterms:description xml:lang="en">Examples: "Puma", "Monoclea"</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2008-11-19</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/genus-2009-08-24"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Viral/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/GenusOrMonomial}</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://rs.tdwg.org/dwc/terms/Taxon"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/geodeticDatum">
<rdfs:comment xml:lang="en">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".</rdfs:comment>
<dcterms:modified>2009-07-06</dcterms:modified>
<rdfs:label xml:lang="en">Geodetic Datum</rdfs:label>
<dcterms:description xml:lang="en">Examples: "EPSG:4326", "WGS84", "NAD27", "Campo Inchauspe", "European 1950", "Clarke 1866"</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2008-11-19</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/geodeticDatum-2009-04-24"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/SpatialDatum</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://purl.org/dc/terms/Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/GeologicalContext">
<rdfs:comment xml:lang="en">Geological information, such as stratigraphy, that qualifies a region or place.</rdfs:comment>
<dcterms:modified>2014-10-23</dcterms:modified>
<rdfs:label xml:lang="en">Geological Context</rdfs:label>
<dcterms:description xml:lang="en">Example: A lithostratigraphic layer.</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2009-07-06</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/GeologicalContext-2014-10-23"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>DataSets/DataSet/Units/Unit/Gathering/Stratigraphy</dwcattributes:abcdEquivalence>
<dwcattributes:decision rdf:resource="http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-26_15"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/geologicalContextID">
<rdfs:comment xml:lang="en">An identifier for the set of information associated with a GeologicalContext (the location within a geological context, such as stratigraphy). May be a global unique identifier or an identifier specific to the data set.</rdfs:comment>
<dcterms:modified>2009-07-06</dcterms:modified>
<rdfs:label xml:lang="en">Geological Context ID</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2009-07-06</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/geologicalContextID-2009-07-06"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>not in ABCD</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://rs.tdwg.org/dwc/terms/GeologicalContext"/>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/identifier"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/georeferencedBy">
<rdfs:comment xml:lang="en">A list (concatenated and separated) of names of people, groups, or organizations who determined the georeference (spatial representation) for the Location.</rdfs:comment>
<dcterms:modified>2014-10-23</dcterms:modified>
<rdfs:label xml:lang="en">Georeferenced By</rdfs:label>
<dcterms:description xml:lang="en">The recommended best practice is to separate the values with a vertical bar (' | '). Examples: "Brad Millen (ROM)", "Kristina Yamamoto (MVZ) | Janet Fang (MVZ)".</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2009-01-21</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/georeferencedBy-2014-10-23"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>not in ABCD</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://purl.org/dc/terms/Location"/>
<rdfs:subPropertyOf rdf:resource="http://rs.tdwg.org/dwc/terms/accordingTo"/>
<dwcattributes:decision rdf:resource="http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-30_16"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/georeferencedDate">
<rdfs:comment xml:lang="en">The date on which the Location was georeferenced. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).</rdfs:comment>
<dcterms:modified>2011-10-16</dcterms:modified>
<rdfs:label xml:lang="en">Georeferenced Date</rdfs:label>
<dcterms:description xml:lang="en">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.</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2011-10-16</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/georeferencedDate-2011-10-16"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>not in ABCD</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://purl.org/dc/terms/Location"/>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/date"/>
<dwcattributes:decision rdf:resource="http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2011-10-16_9"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/georeferenceProtocol">
<rdfs:comment xml:lang="en">A description or reference to the methods used to determine the spatial footprint, coordinates, and uncertainties.</rdfs:comment>
<dcterms:modified>2009-04-24</dcterms:modified>
<rdfs:label xml:lang="en">Georeference Protocol</rdfs:label>
<dcterms:description xml:lang="en">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"</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2008-11-19</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/georeferenceProtocol-2009-04-24"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinateMethod</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://purl.org/dc/terms/Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/georeferenceRemarks">
<rdfs:comment xml:lang="en">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.</rdfs:comment>
<dcterms:modified>2009-04-24</dcterms:modified>
<rdfs:label xml:lang="en">Georeference Remarks</rdfs:label>
<dcterms:description xml:lang="en">Example: "assumed distance by road (Hwy. 101)"</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2008-11-19</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/georeferenceRemarks-2009-04-24"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceRemarks</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://purl.org/dc/terms/Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/georeferenceSources">
<rdfs:comment xml:lang="en">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.</rdfs:comment>
<dcterms:modified>2014-10-23</dcterms:modified>
<rdfs:label xml:lang="en">Georeference Sources</rdfs:label>
<dcterms:description xml:lang="en">The recommended best practice is to separate the values with a vertical bar (' | '). Examples: "GeoLocate", "USGS 1:24000 Florence Montana Quad | Terrametrics 2008 on Google Earth".</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2008-11-19</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/georeferenceSources-2014-10-23"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceSources</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://purl.org/dc/terms/Location"/>
<dwcattributes:decision rdf:resource="http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-30_16"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/georeferenceVerificationStatus">
<rdfs:comment xml:lang="en">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.</rdfs:comment>
<dcterms:modified>2009-04-24</dcterms:modified>
<rdfs:label xml:lang="en">Georeference Verification Status</rdfs:label>
<dcterms:description xml:lang="en">Examples: "requires verification", "verified by collector", "verified by curator".</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2008-11-19</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/georeferenceVerificationStatus-2009-04-24"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceVerificationStatus</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://purl.org/dc/terms/Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/group">
<rdfs:comment xml:lang="en">The full name of the lithostratigraphic group from which the cataloged item was collected.</rdfs:comment>
<dcterms:modified>2009-07-06</dcterms:modified>
<rdfs:label xml:lang="en">Group</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2009-04-24</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/group-2009-04-24"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>not in ABCD</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://rs.tdwg.org/dwc/terms/GeologicalContext"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/habitat">
<rdfs:comment xml:lang="en">A category or description of the habitat in which the Event occurred.</rdfs:comment>
<dcterms:modified>2009-05-17</dcterms:modified>
<rdfs:label xml:lang="en">Habitat</rdfs:label>
<dcterms:description xml:lang="en">Examples: "oak savanna", "pre-cordilleran steppe"</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2008-11-19</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/habitat-2009-04-24"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>DataSets/DataSet/Units/Unit/Gathering/Biotope/Text</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://rs.tdwg.org/dwc/terms/Event"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/higherClassification">
<rdfs:comment xml:lang="en">A list (concatenated and separated) of taxa names terminating at the rank immediately superior to the taxon referenced in the taxon record.</rdfs:comment>
<dcterms:modified>2014-10-23</dcterms:modified>
<rdfs:label xml:lang="en">Higher Classification</rdfs:label>
<dcterms:description xml:lang="en">The recommended best practice is to separate the values with a vertical bar (' | '), with terms in order from the highest taxonomic rank to the lowest. Examples: "Animalia", "Animalia | Chordata | Vertebrata | Mammalia | Theria | Eutheria | Rodentia | Hystricognatha | Hystricognathi | Ctenomyidae | Ctenomyini | Ctenomys".</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2008-11-19</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/higherClassification-2014-10-23"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>not in ABCD</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://rs.tdwg.org/dwc/terms/Taxon"/>
<dwcattributes:decision rdf:resource="http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-30_16"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/higherGeography">
<rdfs:comment xml:lang="en">A list (concatenated and separated) of geographic names less specific than the information captured in the locality term.</rdfs:comment>
<dcterms:modified>2014-10-23</dcterms:modified>
<rdfs:label xml:lang="en">Higher Geography</rdfs:label>
<dcterms:description xml:lang="en">The recommended best practice is to separate the values with a vertical bar (' | '), with terms in order from least specific to most specific. Examples: "North Atlantic Ocean", "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.</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2008-11-19</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/higherGeography-2014-10-23"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>{DataSets/DataSet/Units/Unit/Gathering/LocalityText or DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName}</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://purl.org/dc/terms/Location"/>
<dwcattributes:decision rdf:resource="http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2014-10-30_16"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/higherGeographyID">
<rdfs:comment xml:lang="en">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.</rdfs:comment>
<dcterms:modified>2009-04-24</dcterms:modified>
<rdfs:label xml:lang="en">Higher Geography ID</rdfs:label>
<dcterms:description xml:lang="en">Example: "TGN: 1002002" for Prov. Tierra del Fuego, Argentina</dcterms:description>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2009-01-21</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/higherGeographyID-2009-04-24"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>not in ABCD</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://purl.org/dc/terms/Location"/>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/identifier"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/highestBiostratigraphicZone">
<rdfs:comment xml:lang="en">The full name of the highest possible geological biostratigraphic zone of the stratigraphic horizon from which the cataloged item was collected.</rdfs:comment>
<dcterms:modified>2009-07-06</dcterms:modified>
<rdfs:label xml:lang="en">Highest Biostratigraphic Zone</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2009-04-24</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/highestBiostratigraphicZone-2009-04-24"/>
<dwcattributes:status>recommended</dwcattributes:status>
<dwcattributes:abcdEquivalence>not in ABCD</dwcattributes:abcdEquivalence>
<dwcattributes:organizedInClass rdf:resource="http://rs.tdwg.org/dwc/terms/GeologicalContext"/>
</rdf:Description>
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/HumanObservation">
<rdfs:comment xml:lang="en">An output of a human observation process.</rdfs:comment>
<dcterms:modified>2014-10-23</dcterms:modified>
<rdfs:label xml:lang="en">Human Observation</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<dcterms:issued>2014-10-23</dcterms:issued>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>