-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathterms.rdf
1352 lines (1351 loc) · 105 KB
/
terms.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"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:dc="http://purl.org/dc/elements/1.1/#"
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:dwc="http://rs.tdwg.org/dwc/terms/#"
xmlns:dwcattributes="http://rs.tdwg.org/dwc/terms/attributes/"
xmlns:abcd="http://rs.tdwg.org/abcd/2.06/b/ABCD_2.06b.xsd#"
xmlns:hispid5="http://hiscom.rbg.vic.gov.au/hispid/5/terms/"
xmlns:hispid4="http://hiscom.rbg.vic.gov.au/hispid/4/terms/"
xmlns:hispid3="http://hiscom.rbg.vic.gov.au/hispid/3/terms/"
xml:base="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#">
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#">
<dc:title>HISPID Terms 1.0-SNAPSHOT</dc:title>
<rdfs:comment>This document represents a sea-change in the way Australian Herbaria manage their data standards. HISPID until now was a data format. From now, it is a list of terms and definitions ready for use by any data standard.</rdfs:comment>
<dc:publisher>Herbarium Information Systems Committee (HISCOM), Australia</dc:publisher>
<dc:modified>2015-06-15</dc:modified>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#CollectionObject">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<skos:definition>Group for CollectionObject-level terms</skos:definition>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>2015-06-15</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#CollectionObject"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#cultivatedPlantProvenance">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:definition>Descriptive and coded information that describes the geographic position from which the source material of the cultivated plant from which the collection object was taken was collected.</skos:definition>
<skos:scopeNote>Preferrably this information is databased and delivered as a related resource, using all relevant elements from the relevant standard; if this is not feasible, the information can be delivered as free text, providing as much detail as possible.</skos:scopeNote>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>2015-06-15</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#cultivatedPlantProvenance"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#CollectionObject"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#exsiccataFascicle">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:definition>Fascicle in exsiccata series</skos:definition>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>2015-06-15</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#exsiccataFascicle"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#CollectionObject"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#exsiccataNumber">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:definition>Number in exsiccata series</skos:definition>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>2015-06-15</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#exsiccataNumber"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#CollectionObject"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#exsiccataSeries">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:definition>Exsiccata series</skos:definition>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>2015-06-15</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#exsiccataSeries"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#CollectionObject"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#miscellaneousRemarks">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dwcattributes:abcdEquivalence>//Unit/Notes</dwcattributes:abcdEquivalence>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/misc"/>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/misc"/>
<skos:definition>Any additional information to be transferred pertaining to the collection object.</skos:definition>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>1996-01-01</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/misc"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#CollectionObject"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#provenanceTypeFlag">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dwcattributes:abcdEquivalence>//Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised[Parameter="provenanceTypeFlag"]/LowerValue</dwcattributes:abcdEquivalence>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/5/terms///Unit/UnitExtension/hispid:HispidUnit/hispid:ProvenanceType"/>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/prot"/>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/prot"/>
<skos:definition>Code to indicate the type of provenance of the cultivated material from which this collection object was taken.</skos:definition>
<skos:scopeNote>Use ITF2 codes</skos:scopeNote>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>1996-01-01</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/prot"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#CollectionObject"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#voucherFor">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dwcattributes:abcdEquivalence>//Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised[Parameter="voucher"]/LowerValue</dwcattributes:abcdEquivalence>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/vou"/>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/vou"/>
<skos:definition>Term to indicate the collection object has served as a voucher for a special purpose.</skos:definition>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>1996-01-01</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/vou"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#CollectionObject"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Event">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<skos:definition>Group for Event-level terms</skos:definition>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>2015-06-15</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Event"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#eventDate">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#eventDate"/>
<dwcattributes:abcdEquivalence>//Unit/Gathering/DateTime/ISODateTimeBegin, //Unit/Gathering/DateTime/ISODateTimeEnd</dwcattributes:abcdEquivalence>
<skos:relatedMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/cdat"/>
<skos:relatedMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/cdat2"/>
<skos:relatedMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/cdat"/>
<skos:relatedMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/cdat2"/>
<skos:definition>The date or period when the specimen was collected</skos:definition>
<skos:scopeNote>ISO-8601</skos:scopeNote>
<skos:example>2014-10-03</skos:example>
<skos:example>1954-11</skos:example>
<skos:example>1872</skos:example>
<skos:example>1971-02-03/1971-02-05</skos:example>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>1996-01-01</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/cdat"/>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/cdat2"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Event"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#habitat">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#habitat"/>
<dwcattributes:abcdEquivalence>//Unit/Gathering/Biotope/Text</dwcattributes:abcdEquivalence>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/hab"/>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/hab"/>
<skos:definition>Description of the habitat from where the collection object was collected, including geology and soil type, as well as the associated species.</skos:definition>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>1996-01-01</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/hab"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Event"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#verbatimEventDate">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#verbatimEventDate"/>
<dwcattributes:abcdEquivalence>//Unit/Gathering/DateTime/DateText</dwcattributes:abcdEquivalence>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/texcdat"/>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/texcdat"/>
<skos:definition>The verbatim date information of when the specimen was collected</skos:definition>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>1996-01-01</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/texcdat"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Event"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Identification">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<skos:definition>Group for Identification-level terms</skos:definition>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>2015-06-15</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Identification"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#dateIdentified">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#dateIdentified"/>
<dwcattributes:abcdEquivalence>//Unit/Identifications/Identification/Date/ISODateTimeBegin</dwcattributes:abcdEquivalence>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/vdat"/>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/vdat"/>
<skos:definition>The date on which the collection object was identified.</skos:definition>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>1996-01-01</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/vdat"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Identification"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#identificationID">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#identificationID"/>
<skos:definition>Identifier for the Identification</skos:definition>
<skos:scopeNote>Use of a UUID is recommended.</skos:scopeNote>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>2015-06-15</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#identificationID"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Identification"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#identificationQualifier">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#identificationQualifier"/>
<dwcattributes:abcdEquivalence>//Unit/Identifications/Identification[PreferredFlag="true"]/Result/TaxonIdentified/ScientificName/IdentificationQualifier, //Unit/Identifications/Identification[PreferredFlag="true"]/Result/TaxonIdentified/ScientificName/IdentificationQualifier[@insertionpoint]</dwcattributes:abcdEquivalence>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/idql"/>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/idql"/>
<skos:definition>A brief phrase or standard term to express doubt about an identification.</skos:definition>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>1996-01-01</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/idql"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Identification"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#identificationQualifierRank">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#identificationQualifier"/>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/rkql"/>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/rkql"/>
<skos:definition>Rank at which the identificationQualifier applies</skos:definition>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>1996-01-01</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/rkql"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Identification"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#identificationReferences">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#identificationReferences"/>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/vlit"/>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/vlit"/>
<skos:definition>References used for the Identification.</skos:definition>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>1996-01-01</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/vlit"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Identification"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#identificationRemarks">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#identificationRemarks"/>
<dwcattributes:abcdEquivalence>//Unit/Identifications/Identification/Notes</dwcattributes:abcdEquivalence>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/idcom"/>
<skos:definition>Any additional comments made by the determiner as part of the Identification.</skos:definition>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>1999-08-01</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/idcom"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Identification"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#identifiedBy">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#identifiedBy"/>
<dwcattributes:abcdEquivalence>//Unit/Identifications/Identification/Identifiers/IdentifiersText</dwcattributes:abcdEquivalence>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/vnam"/>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/vnam"/>
<skos:definition>The name(s) of people, groups, or organisations who identified the collection object.</skos:definition>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>1996-01-01</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/vnam"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Identification"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#identifierRole">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dwcattributes:abcdEquivalence>//Unit/Identifications/Identification/Identifiers/IdentifierRole</dwcattributes:abcdEquivalence>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/det"/>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/det"/>
<skos:definition>Categorical indicator of the type of contribution made by the determiner.</skos:definition>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>1996-01-01</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/det"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Identification"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#nameAddendum">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dwcattributes:abcdEquivalence>//Unit/Identifications/Identification[PreferredFlag="true"]/Result/TaxonIdentified/ScientificName/NameAddendum</dwcattributes:abcdEquivalence>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/spql"/>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/spql"/>
<skos:definition>A suffix added after the scientific name to indicate aggregate taxa or more or less inclusive taxon concepts</skos:definition>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>1996-01-01</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/spql"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Identification"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#previousIdentifications">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#previousIdentifications"/>
<dwcattributes:abcdEquivalence>//Unit/Identifications/Identification[PreferredFlag="FALSE"]/*, //Unit/Identifications/IdentificationHistory</dwcattributes:abcdEquivalence>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/vhist"/>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/vhist"/>
<skos:definition>Previous identifications of the collection object.</skos:definition>
<skos:scopeNote>It is preferrable to use the repeatable Identification elements in ABCD or the Identification extension in Darwin Core.</skos:scopeNote>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>1996-01-01</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/vhist"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Identification"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#typeStatus">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#typeStatus"/>
<dwcattributes:abcdEquivalence>//Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeDesignation[0]/TypeStatus</dwcattributes:abcdEquivalence>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/tsta"/>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/tsta"/>
<skos:definition>Code indicating the type status of the collection object.</skos:definition>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>1996-01-01</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/tsta"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Identification"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#typeStatusQualifier">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dwcattributes:abcdEquivalence>//Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeDesignation[0]/DoubtfulFlag</dwcattributes:abcdEquivalence>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/tql"/>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/tql"/>
<skos:definition>Standard term to qualify the type status designation.</skos:definition>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>1996-01-01</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/tql"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Identification"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#typifiedName">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dwcattributes:abcdEquivalence>//Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeDesignation[0]/TypifiedName/FullScientificNameString</dwcattributes:abcdEquivalence>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/basnam"/>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/basnam"/>
<skos:definition>The scientific name of which the collection object is a type.</skos:definition>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>1996-01-01</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/basnam"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Identification"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#verbatimDateIdentified">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dwcattributes:abcdEquivalence>//Unit/Identifications/Identification/Date/DateText</dwcattributes:abcdEquivalence>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/textvdat"/>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/textvdat"/>
<skos:definition>The verbatim date of the Identification.</skos:definition>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>1996-01-01</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/textvdat"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Identification"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Location">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<skos:definition>Group for Location-level terms</skos:definition>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>2015-06-15</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#continent">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#continent"/>
<dwcattributes:abcdEquivalence>//Unit/Gathering/NamedAreas/NamedArea[AreaClass="continent"]/AreaName</dwcattributes:abcdEquivalence>
<skos:definition>The name of the continent in which the collecting locality is situated.</skos:definition>
<skos:example>Australia</skos:example>
<skos:example>South America</skos:example>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>2015-06-15</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#continent"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#coordinatePrecision">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#coordinatePrecision"/>
<skos:definition>A decimal representation of the precision of the coordinates given in the decimalLatitude and decimalLongitude</skos:definition>
<skos:example>0.016667</skos:example>
<skos:example>0.0002778</skos:example>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>2015-06-15</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#coordinatePrecision"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#coordinateUncertaintyInMeters">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#coordinateUncertaintyInMeters"/>
<dwcattributes:abcdEquivalence>//Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLong/CoordinateErrorDistanceInMeters</dwcattributes:abcdEquivalence>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/geoacy"/>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/geoacy"/>
<skos:definition>Estimate of the maximum horizontal distance between the point referenced by the decimalLatitude and decimalLongitude and the actual location the collection took place.</skos:definition>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>1996-01-01</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/geoacy"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#country">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#country"/>
<dwcattributes:abcdEquivalence>//Unit/Gathering/Country/Name</dwcattributes:abcdEquivalence>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/cou"/>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/cou"/>
<skos:definition>The name of the country in which the collecting locality is situated</skos:definition>
<skos:example>Australia</skos:example>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>1996-01-01</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/cou"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#countryCode">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#countryCode"/>
<dwcattributes:abcdEquivalence>//Unit/Gathering/Country/ISO3166Code</dwcattributes:abcdEquivalence>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/iso"/>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/iso"/>
<skos:definition>The standard ISO-3166 code for the country in which the collecting locality is situated.</skos:definition>
<skos:scopeNote>ISO-3166</skos:scopeNote>
<skos:example>AU</skos:example>
<skos:example>NZ</skos:example>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>1996-01-01</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/iso"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#county">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#county"/>
<dwcattributes:abcdEquivalence>//Unit/Gathering/NamedAreas/NamedArea[AreaClass="county"]/AreaName</dwcattributes:abcdEquivalence>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/sru"/>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/sru"/>
<skos:definition>The name of the next smaller administrative region after stateProvince in which the collecting locality is situated.</skos:definition>
<skos:example>Communa Cabo de Hornos</skos:example>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>1996-01-01</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/sru"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#decimalLatitude">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#decimalLatitude"/>
<dwcattributes:abcdEquivalence>//Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLong/LatitudeDecimal</dwcattributes:abcdEquivalence>
<skos:definition>The geographic latitude of the collecting locality</skos:definition>
<skos:example>-27.8566666667</skos:example>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>2015-06-15</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#decimalLatitude"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#decimalLongitude">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#decimalLongitude"/>
<dwcattributes:abcdEquivalence>//Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLong/LongitudeDecimal</dwcattributes:abcdEquivalence>
<skos:definition>The geodetic longitude of the collecting locality</skos:definition>
<skos:example>153.4422222222</skos:example>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>2015-06-15</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#decimalLongitude"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#elevationMethod">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/altdet"/>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/altdet"/>
<skos:definition>Method by which the elevation was determined.</skos:definition>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>1996-01-01</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/altdet"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#geodeticDatum">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#geodeticDatum"/>
<dwcattributes:abcdEquivalence>//Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLong/SpatialDatum</dwcattributes:abcdEquivalence>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/spadat"/>
<skos:definition>The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which the geographic coordinates given in decimalLatitude and decimalLongitude are based.</skos:definition>
<skos:scopeNote>Use of EPSG codes is recommended.</skos:scopeNote>
<skos:example>EPSG:4326</skos:example>
<skos:example>EPSG:4283</skos:example>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>1999-08-01</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/spadat"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#georeferenceProtocol">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#georeferenceProtocol"/>
<dwcattributes:abcdEquivalence>//Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinateMethod</dwcattributes:abcdEquivalence>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/geosou p.p."/>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/geosou p.p."/>
<skos:definition>A description of or reference to the methods used to determine the geographic coordinates of the Location.</skos:definition>
<skos:example>GEOLocate</skos:example>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>1996-01-01</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/geosou p.p."/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#georeferenceRemarks">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#georeferenceRemarks"/>
<dwcattributes:abcdEquivalence>//Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceRemarks</dwcattributes:abcdEquivalence>
<skos:definition>Notes or comments about the spatial description determination, explaining assumptions made in addition or opposition to the those formalised in the method referred to in georeferenceProtocol.</skos:definition>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>2015-06-15</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#georeferenceRemarks"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#georeferenceSources">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#georeferenceSources"/>
<dwcattributes:abcdEquivalence>//Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceSources</dwcattributes:abcdEquivalence>
<skos:definition>A list of maps, gazetteers, or other resources used to georeference the Location, described specifically enough to allow anyone in the future to use the same resource.</skos:definition>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>2015-06-15</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#georeferenceSources"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#georeferenceVerificationStatus">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#georeferenceVerificationStatus"/>
<dwcattributes:abcdEquivalence>//Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceVerificationStatus</dwcattributes:abcdEquivalence>
<skos:definition>A categorical description of the extent to which the georeference has been verified to represent the best possible spatial descript</skos:definition>
<skos:scopeNote>Recommended best practice is to use a controlled vocabulary.</skos:scopeNote>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>2015-06-15</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#georeferenceVerificationStatus"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#georeferencedBy">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#georeferencedBy"/>
<dwcattributes:abcdEquivalence>//Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised[Parameter="georeferencedBy"]/LowerValue</dwcattributes:abcdEquivalence>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/geosou p.p."/>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/geosou p.p."/>
<skos:definition>Name(s) of person(s), group(s) or organisation(s) who took the georeference of the Location</skos:definition>
<skos:example>National Herbarium of Victoria (MEL)</skos:example>
<skos:example>Walsh, N.G.</skos:example>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>1996-01-01</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/geosou p.p."/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#georeferencedDate">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#georeferencedDate"/>
<dwcattributes:abcdEquivalence>//Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised[Parameter="georeferencedDate"]/LowerValue</dwcattributes:abcdEquivalence>
<skos:definition>The date on which the Location was georeferenced.</skos:definition>
<skos:scopeNote>Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).</skos:scopeNote>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>2015-06-15</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#georeferencedDate"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#island">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#island"/>
<dwcattributes:abcdEquivalence>//Unit/Gathering/NamedAreas/NamedArea[AreaClass="island"]/AreaName</dwcattributes:abcdEquivalence>
<skos:definition>The name of the island on or near which the Location occurs.</skos:definition>
<skos:example>Macquarie Island</skos:example>
<skos:example>Flinders Island</skos:example>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>2015-06-15</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#island"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#islandGroup">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#islandGroup"/>
<dwcattributes:abcdEquivalence>//Unit/Gathering/NamedAreas/NamedArea[AreaClass="islandGroup"]/AreaName</dwcattributes:abcdEquivalence>
<skos:definition>The name of the island group in which the Location occurs.</skos:definition>
<skos:example>Cocos Islands</skos:example>
<skos:example>Auckland Islands</skos:example>
<skos:example>Furneaux Islands</skos:example>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>2015-06-15</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#islandGroup"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#locality">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#locality"/>
<dwcattributes:abcdEquivalence>//Unit/Gathering/LocalityText</dwcattributes:abcdEquivalence>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/loc"/>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/loc"/>
<skos:definition>Description of the locality from where the specimen was collected.</skos:definition>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>1996-01-01</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/loc"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#maximumDepthInMeters">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#maximumDepthInMeters"/>
<dwcattributes:abcdEquivalence>//Unit/Gathering/Depth/MeasurementOrFactAtomised/UpperValue, //Unit/Gathering/Depth/MeasurementOrFactAtomised/UnitOfMeasurement = 'metres'</dwcattributes:abcdEquivalence>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/depx"/>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/depx"/>
<skos:definition>The greater of a range of depths below the local surface in metres.</skos:definition>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>1996-01-01</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/depx"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#maximumElevationInMeters">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#maximumElevationInMeters"/>
<dwcattributes:abcdEquivalence>//Unit/Gathering/Altitude/MeasurementOrFactAtomised[UnitOfMeasurement="metres"]/UpperValue</dwcattributes:abcdEquivalence>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/altx"/>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/altx"/>
<skos:definition>Higher value of the range of elevation in metres.</skos:definition>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>1996-01-01</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/altx"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#minimumDepthInMeters">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#minimumDepthInMeters"/>
<dwcattributes:abcdEquivalence>//Unit/Gathering/Depth/MeasurementOrFactAtomised/LowerValue, //Unit/Gathering/Depth/MeasurementOrFactAtomised/UnitOfMeasurement = 'metres'</dwcattributes:abcdEquivalence>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/dep"/>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/dep"/>
<skos:definition>Depth or the lesser of a range of depth below the local surface in metres.</skos:definition>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>1996-01-01</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/dep"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#minimumElevationInMeters">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#minimumElevationInMeters"/>
<dwcattributes:abcdEquivalence>//Unit/Gathering/Altitude/MeasurementOrFactAtomised[UnitOfMeasurement="metres"]/LowerValue</dwcattributes:abcdEquivalence>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/alt"/>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/alt"/>
<skos:definition>Elevation or lower value of a range of elevation in metres.</skos:definition>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>1996-01-01</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/alt"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#stateProvince">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#stateProvince"/>
<dwcattributes:abcdEquivalence>//Unit/Gathering/NamedAreas/NamedArea[AreaClass="stateProvince"]/AreaName</dwcattributes:abcdEquivalence>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/5/terms///Unit/UnitExtension/hispid:HispidGathering/hispid:PrimaryRecordingUnit"/>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/pru"/>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/pru"/>
<skos:definition>The name of the next smaller administrative region after country in which the collecting locality is situated.</skos:definition>
<skos:example>New South Wales</skos:example>
<skos:example>Kalimantan Barat</skos:example>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>1996-01-01</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/pru"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#verbatimCoordinateSystem">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#verbatimCoordinateSystem"/>
<skos:definition>The spatial coordinate system for the verbatimLatitude and verbatimLongitude or the verbatimCoordinates of the Location.</skos:definition>
<skos:scopeNote>Recommended best practice is to use a controlled vocabulary.</skos:scopeNote>
<skos:example>decimal degrees</skos:example>
<skos:example>UTM</skos:example>
<skos:example>NZMG</skos:example>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>2015-06-15</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#verbatimCoordinateSystem"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#verbatimCoordinates">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#verbatimCoordinates"/>
<dwcattributes:abcdEquivalence>//Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesUTM/UTMZone, //Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesUTM/UTMEasting, //Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesUTM/UTMNorthing</dwcattributes:abcdEquivalence>
<skos:relatedMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/sqz"/>
<skos:relatedMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/sge"/>
<skos:relatedMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/sgn"/>
<skos:definition>The verbatim original geographic coordinates for the Location</skos:definition>
<skos:scopeNote>Use for UTM type coordinates. 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.</skos:scopeNote>
<skos:example>MGA 55 568183 5288204</skos:example>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>1999-08-01</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/sqz"/>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/sge"/>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/sgn"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#verbatimDepth">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#verbatimDepth"/>
<dwcattributes:abcdEquivalence>//Unit/Gathering/Depth/MeasurementOrFactText</dwcattributes:abcdEquivalence>
<skos:definition>Verbatim description of the depth, as provided by the collector.</skos:definition>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>2015-06-15</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#verbatimDepth"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#verbatimElevation">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#verbatimElevation"/>
<dwcattributes:abcdEquivalence>//Unit/Gathering/Altitude/MeasurementOrFactText</dwcattributes:abcdEquivalence>
<skos:definition>The original description of the elevation as provided by the collector.</skos:definition>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>2015-06-15</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#verbatimElevation"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#verbatimLatitude">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#verbatimLatitude"/>
<dwcattributes:abcdEquivalence>//Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLong/VerbatimLatitude</dwcattributes:abcdEquivalence>
<skos:relatedMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/latdeg"/>
<skos:relatedMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/latmin"/>
<skos:relatedMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/latsec"/>
<skos:relatedMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/latdir"/>
<skos:relatedMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/latdeg"/>
<skos:relatedMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/latmin"/>
<skos:relatedMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/latsec"/>
<skos:relatedMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/latdir"/>
<skos:definition>The verbatim original latitude for the Location</skos:definition>
<skos:scopeNote>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.</skos:scopeNote>
<skos:example>15° 5' 59" S</skos:example>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>1996-01-01</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/latdeg"/>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/latmin"/>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/latsec"/>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/latdir"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#verbatimLocality">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#verbatimLocality"/>
<dwcattributes:abcdEquivalence>//Unit/Gathering/LocalityText</dwcattributes:abcdEquivalence>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/loc"/>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/loc"/>
<skos:definition>Verbatim locality description</skos:definition>
<skos:scopeNote>Locality should always be delivered; only deliver verbatimLocality if stored separately from the locality.</skos:scopeNote>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>1996-01-01</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/loc"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#verbatimLongitude">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#verbatimLongitude"/>
<dwcattributes:abcdEquivalence>//Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLong/VerbatimLongitude</dwcattributes:abcdEquivalence>
<skos:relatedMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/londeg"/>
<skos:relatedMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/lonmin"/>
<skos:relatedMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/lonsec"/>
<skos:relatedMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/londir"/>
<skos:relatedMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/londeg"/>
<skos:relatedMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/lonmin"/>
<skos:relatedMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/lonsec"/>
<skos:relatedMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/londir"/>
<skos:definition>The verbatim original longitude for the Location</skos:definition>
<skos:scopeNote>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.</skos:scopeNote>
<skos:example>153° 26' 32" E</skos:example>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>1996-01-01</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/londeg"/>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/lonmin"/>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/lonsec"/>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/londir"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#verbatimSRS">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#verbatimSRS"/>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/spapro"/>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/sgp"/>
<skos:definition>The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which coordinates given in verbatimLatitude and verbatimLongitude, or verbatimCoordinates are based</skos:definition>
<skos:scopeNote>Recommended best practice is use the EPSG code as a controlled vocabulary to provide an SRS, if know</skos:scopeNote>
<skos:example>EPSG:28352</skos:example>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>1996-01-01</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/sgp"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#waterBody">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#waterBody"/>
<dwcattributes:abcdEquivalence>//Unit/Gathering/NamedAreas/NamedArea[AreaClass="waterBody"]/AreaName</dwcattributes:abcdEquivalence>
<skos:definition>The name of the water body in which the Location occurs.</skos:definition>
<skos:example>Indian Ocean</skos:example>
<skos:example>Bass Strait</skos:example>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>2015-06-15</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#waterBody"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Location"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#MediaItem">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<skos:definition>Group for MediaItem-level terms</skos:definition>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>2015-06-15</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#MediaItem"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Occurrence">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<skos:definition>Group for Occurrence-level terms</skos:definition>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>2015-06-15</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Occurrence"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#associatedSequences">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<dwcattributes:abcdEquivalence>//Sequences/Sequence/ID-in-Database</dwcattributes:abcdEquivalence>
<skos:definition>List of identifiers for sequences associated with the collection object.</skos:definition>
<skos:scopeNote>Use Genbank accession numbers.</skos:scopeNote>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>2015-06-15</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#associatedSequences"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Occurrence"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#associatedTaxa">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#associatedTaxa"/>
<dwcattributes:abcdEquivalence>//Unit/Gathering/Synecology/AssociatedTaxa/TaxonIdentified/ScientificName/FullScientificNameString, //Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised[Parameter="host"]/LowerValue</dwcattributes:abcdEquivalence>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/asspp"/>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/asspp"/>
<skos:definition>A list of names of taxa and their associations with the Occurrence.</skos:definition>
<skos:example>host:Nothofagus cunninghamii</skos:example>
<skos:example>growingWith:Eucalyptus regnans|growingWith:Atherospermum moschatum</skos:example>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>1996-01-01</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/asspp"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Occurrence"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#associatedTaxon">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:definition>Nameof associated taxon</skos:definition>
<skos:scopeNote>To be used in combination with hispid:associationType to make up list for associatedTaxa</skos:scopeNote>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>2015-06-15</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#associatedTaxon"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Occurrence"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#associationType">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:definition>Type of association</skos:definition>
<skos:scopeNote>To be used in combination with hispid:associatedTaxon to make up list for associatedTaxa</skos:scopeNote>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>2015-06-15</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#associationType"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Occurrence"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#catalogNumber">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#catalogNumber"/>
<dwcattributes:abcdEquivalence>//Unit/UnitID</dwcattributes:abcdEquivalence>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/accid"/>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/accid"/>
<skos:definition>The unique identifier for each collection object, including the acronym</skos:definition>
<skos:example>MEL 12345</skos:example>
<skos:example>CANB 78021.1</skos:example>
<skos:example>PERTH 08444595</skos:example>
<skos:example>CHR 1234 A</skos:example>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>1996-01-01</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/accid"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Occurrence"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#establishmentMeans">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#establishmentMeans"/>
<dwcattributes:abcdEquivalence>//Unit/Gathering/EstablishmentMeans</dwcattributes:abcdEquivalence>
<skos:relatedMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/posnat"/>
<skos:relatedMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/poscul"/>
<skos:relatedMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/posnat"/>
<skos:relatedMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/poscul"/>
<skos:definition>The process by which the individual(s) represented in the Occurrence became established at the location.</skos:definition>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>1996-01-01</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/posnat"/>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/poscul"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Occurrence"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#occurrenceID">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#occurrenceID"/>
<skos:definition>A globally unique identifier for the collection object record.</skos:definition>
<skos:scopeNote>Preferrably use a UUID. If this is not feasible an identifier can be created based on a unique field in the database, for example the catalogNumber. If doing so, the identifier must be stored in the database and cannot be changed or used for another record.</skos:scopeNote>
<skos:example>1cf74f91-e991-4382-8b20-42d2d8e6076a</skos:example>
<skos:example>URN:catalog:PERTH:WAHERB:08444595</skos:example>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>2015-06-15</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#occurrenceID"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Occurrence"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#occurrenceRemarks">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#occurrenceRemarks"/>
<dwcattributes:abcdEquivalence>//Unit/Gathering/Notes</dwcattributes:abcdEquivalence>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/cnot"/>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/cnot"/>
<skos:definition>Any additional information provided by the collector.</skos:definition>
<skos:scopeNote>This may contain information about the collecting event/gathering, or descriptive information about the organism.</skos:scopeNote>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>1996-01-01</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/cnot"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Occurrence"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#otherCatalogNumbers">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#otherCatalogNumbers"/>
<dwcattributes:abcdEquivalence>//Unit/SpecimenUnit/History/PreviousUnits/PreviousUnit/PreviousUnitID</dwcattributes:abcdEquivalence>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/donacc"/>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/donacc"/>
<skos:definition>A list of previous or alternate catalog numbers for the same Occurrence.</skos:definition>
<skos:scopeNote>e.g., for the catalogue numbers for exchanged specimens when known or of multisheets.</skos:scopeNote>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>1996-01-01</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/donacc"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Occurrence"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#preparations">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#preparations"/>
<dwcattributes:abcdEquivalence>//Unit/KindOfUnit</dwcattributes:abcdEquivalence>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/ckin"/>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/ckin"/>
<skos:definition>List of preparations from a specimen</skos:definition>
<skos:example>sheet</skos:example>
<skos:example>alcohol</skos:example>
<skos:example>sheet|slide</skos:example>
<skos:example>sheet|silica gel|molecular isolate</skos:example>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>1996-01-01</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/ckin"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Occurrence"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#recordNumber">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#recordNumber"/>
<dwcattributes:abcdEquivalence>//Unit/CollectorsFieldNumber</dwcattributes:abcdEquivalence>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/cid"/>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/cid"/>
<skos:definition>The verbatim collecting number</skos:definition>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>1996-01-01</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/cid"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Occurrence"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#recordedBy">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#recordedBy"/>
<dwcattributes:abcdEquivalence>//Unit/Gathering/Agents/GatheringAgentsText, //Unit/Gathering/Agents/GatheringAgent/AgentText (+)</dwcattributes:abcdEquivalence>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/cnam"/>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/cnam"/>
<skos:definition>The name(s) of the person or persons who made the collection on which this record is based</skos:definition>
<skos:scopeNote>Any valid collector's name, collector's family name (surname) followed by comma and space (", ") then initials (all in uppercase and separated by fullstops).</skos:scopeNote>
<skos:example>Steenis, C.G.G.J. van</skos:example>
<skos:example>Wilson, Peter G.</skos:example>
<skos:example>Streimann, H.|Mundua, A.</skos:example>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>1996-01-01</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/cnam"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Occurrence"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#reproductiveCondition">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:exactMatch rdf:resource="http://rs.tdwg.org/dwc/terms/#reproductiveCondition"/>
<dwcattributes:abcdEquivalence>//Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised[Parameter="reproductiveCondition"]/LowerValue</dwcattributes:abcdEquivalence>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/5/terms///Unit/UnitExtension/hispid:HispidUnit/hispid:Phenology"/>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/4/terms/phe"/>
<skos:exactMatch rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/phe"/>
<skos:definition>Reproductive condition(s) of the individual represented by the collection object.</skos:definition>
<skos:example>flowers</skos:example>
<skos:example>flowers|fruit</skos:example>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>1996-01-01</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://hiscom.rbg.vic.gov.au/hispid/3/terms/phe"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Occurrence"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Permit">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<skos:definition>Group for Permit-level terms</skos:definition>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>2015-06-15</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Permit"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#permitConditions">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:definition>Conditions on the permit, which may affect how the specimens collected under the permit may be used or distributed.</skos:definition>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>2015-06-15</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#permitConditions"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Permit"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#permitIssuedBy">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:definition>Name of the authority by whom the permit was issued.</skos:definition>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>2015-06-15</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#permitIssuedBy"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Permit"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#permitIssuedDate">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:definition>Date the permit was issued.</skos:definition>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>2015-06-15</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#permitIssuedDate"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Permit"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#permitIssuedTo">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:definition>Name(s) of the person(s) or organisation to whom the permit was issued.</skos:definition>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>2015-06-15</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#permitIssuedTo"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Permit"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#permitLink">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:definition>The link to an electronic version of the permit.</skos:definition>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>2015-06-15</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#permitLink"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Permit"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#permitReferenceNumber">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:definition>Reference number allocated to the permit by the issuing authority.</skos:definition>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>2015-06-15</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#permitReferenceNumber"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Permit"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#permitRemarks">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:definition>Any additional comments pertaining to the permit.</skos:definition>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>2015-06-15</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#permitRemarks"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Permit"/>
</rdf:Description>
<rdf:Description rdf:about="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#permitStatus">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<skos:definition>Status of the permit.</skos:definition>
<dwcattributes:status>recommended</dwcattributes:status>
<dcterms:issued>2015-06-15</dcterms:issued>
<dcterms:hasVersion rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#permitStatus"/>
<dwcattributes:organizedInClass rdf:resource="http://chah.org.au/hispid/terms/1.0-SNAPSHOT/#Permit"/>
</rdf:Description>