rdf-vocab 3.1.2 → 3.1.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +1 -1
- data/README.md +69 -45
- data/VERSION +1 -1
- data/lib/rdf/vocab.rb +60 -40
- data/lib/rdf/vocab/acl.rb +104 -61
- data/lib/rdf/vocab/as.rb +556 -91
- data/lib/rdf/vocab/bf2.rb +1791 -475
- data/lib/rdf/vocab/bibframe.rb +1 -2
- data/lib/rdf/vocab/bibo.rb +616 -124
- data/lib/rdf/vocab/cc.rb +125 -48
- data/lib/rdf/vocab/cert.rb +68 -1
- data/lib/rdf/vocab/cnt.rb +79 -1
- data/lib/rdf/vocab/crm.rb +1543 -776
- data/lib/rdf/vocab/datacite.rb +1 -1
- data/lib/rdf/vocab/dbo.rb +10463 -1
- data/lib/rdf/vocab/dc.rb +485 -99
- data/lib/rdf/vocab/dc11.rb +93 -31
- data/lib/rdf/vocab/dcat.rb +236 -88
- data/lib/rdf/vocab/dcmitype.rb +63 -13
- data/lib/rdf/vocab/disco.rb +286 -59
- data/lib/rdf/vocab/doap.rb +175 -1
- data/lib/rdf/vocab/dwc.rb +941 -189
- data/lib/rdf/vocab/earl.rb +324 -0
- data/lib/rdf/vocab/ebucore.rb +7255 -2184
- data/lib/rdf/vocab/edm.rb +202 -76
- data/lib/rdf/vocab/exif.rb +650 -1
- data/lib/rdf/vocab/extensions.rb +257 -203
- data/lib/rdf/vocab/fcrepo4.rb +398 -22
- data/lib/rdf/vocab/foaf.rb +380 -76
- data/lib/rdf/vocab/geo.rb +47 -110
- data/lib/rdf/vocab/geojson.rb +82 -17
- data/lib/rdf/vocab/geonames.rb +1508 -1351
- data/lib/rdf/vocab/gr.rb +861 -565
- data/lib/rdf/vocab/gs1.rb +1597 -1
- data/lib/rdf/vocab/ht.rb +204 -41
- data/lib/rdf/vocab/hydra.rb +335 -60
- data/lib/rdf/vocab/iana.rb +301 -114
- data/lib/rdf/vocab/ical.rb +534 -121
- data/lib/rdf/vocab/identifiers.rb +459 -499
- data/lib/rdf/vocab/iiif.rb +161 -26
- data/lib/rdf/vocab/jsonld.rb +179 -53
- data/lib/rdf/vocab/ldp.rb +130 -1
- data/lib/rdf/vocab/lrmi.rb +85 -17
- data/lib/rdf/vocab/ma.rb +460 -80
- data/lib/rdf/vocab/mads.rb +610 -22
- data/lib/rdf/vocab/{marc_relators.rb → marcrelators.rb} +813 -4
- data/lib/rdf/vocab/mo.rb +1115 -540
- data/lib/rdf/vocab/mods.rb +635 -124
- data/lib/rdf/vocab/nfo.rb +1 -1
- data/lib/rdf/vocab/oa.rb +343 -73
- data/lib/rdf/vocab/og.rb +100 -1
- data/lib/rdf/vocab/ogc.rb +42 -9
- data/lib/rdf/vocab/ore.rb +69 -14
- data/lib/rdf/vocab/org.rb +235 -47
- data/lib/rdf/vocab/pcdm.rb +58 -34
- data/lib/rdf/vocab/pplan.rb +21 -136
- data/lib/rdf/vocab/premis.rb +1171 -779
- data/lib/rdf/vocab/{premis_event_type.rb → premiseventtype.rb} +156 -2
- data/lib/rdf/vocab/prov.rb +700 -107
- data/lib/rdf/vocab/ptr.rb +172 -37
- data/lib/rdf/vocab/rightsstatements.rb +17 -13
- data/lib/rdf/vocab/rsa.rb +30 -1
- data/lib/rdf/vocab/rss.rb +52 -11
- data/lib/rdf/vocab/schema.rb +14970 -3993
- data/lib/rdf/vocab/schemas.rb +27066 -0
- data/lib/rdf/vocab/sd.rb +372 -0
- data/lib/rdf/vocab/sh.rb +919 -184
- data/lib/rdf/vocab/sioc.rb +498 -98
- data/lib/rdf/vocab/{sioc_services.rb → siocservices.rb} +46 -9
- data/lib/rdf/vocab/sioctypes.rb +434 -0
- data/lib/rdf/vocab/skos.rb +160 -44
- data/lib/rdf/vocab/skosxl.rb +40 -11
- data/lib/rdf/vocab/v.rb +323 -37
- data/lib/rdf/vocab/vcard.rb +625 -119
- data/lib/rdf/vocab/vmd.rb +323 -37
- data/lib/rdf/vocab/void.rb +147 -27
- data/lib/rdf/vocab/vs.rb +23 -5
- data/lib/rdf/vocab/wdrs.rb +112 -23
- data/lib/rdf/vocab/wot.rb +96 -19
- data/lib/rdf/vocab/xhtml.rb +2 -1
- data/lib/rdf/vocab/xhv.rb +422 -201
- data/lib/rdf/vocab/xkos.rb +156 -7
- data/spec/extensions_spec.rb +68 -0
- data/spec/vocab_spec.rb +10 -0
- metadata +20 -11
- data/lib/rdf/vocab/sioct.rb +0 -277
data/lib/rdf/vocab/doap.rb
CHANGED
@@ -5,9 +5,183 @@ require 'rdf'
|
|
5
5
|
module RDF::Vocab
|
6
6
|
# @!parse
|
7
7
|
# # Vocabulary for <http://usefulinc.com/ns/doap#>
|
8
|
+
# #
|
9
|
+
# # Description of a Project (DOAP) vocabulary
|
10
|
+
# #
|
11
|
+
# # The Description of a Project (DOAP) vocabulary, described using W3C RDF Schema and the Web Ontology Language.
|
8
12
|
# class DOAP < RDF::StrictVocabulary
|
13
|
+
# # GNU Arch source code repository.
|
14
|
+
# # @return [RDF::Vocabulary::Term]
|
15
|
+
# attr_reader :ArchRepository
|
16
|
+
#
|
17
|
+
# # BitKeeper source code repository.
|
18
|
+
# # @return [RDF::Vocabulary::Term]
|
19
|
+
# attr_reader :BKRepository
|
20
|
+
#
|
21
|
+
# # Bazaar source code branch.
|
22
|
+
# # @return [RDF::Vocabulary::Term]
|
23
|
+
# attr_reader :BazaarBranch
|
24
|
+
#
|
25
|
+
# # CVS source code repository.
|
26
|
+
# # @return [RDF::Vocabulary::Term]
|
27
|
+
# attr_reader :CVSRepository
|
28
|
+
#
|
29
|
+
# # darcs source code repository.
|
30
|
+
# # @return [RDF::Vocabulary::Term]
|
31
|
+
# attr_reader :DarcsRepository
|
32
|
+
#
|
33
|
+
# # Git source code branch.
|
34
|
+
# # @return [RDF::Vocabulary::Term]
|
35
|
+
# attr_reader :GitBranch
|
36
|
+
#
|
37
|
+
# # Git source code repository.
|
38
|
+
# # @return [RDF::Vocabulary::Term]
|
39
|
+
# attr_reader :GitRepository
|
40
|
+
#
|
41
|
+
# # Mercurial source code repository.
|
42
|
+
# # @return [RDF::Vocabulary::Term]
|
43
|
+
# attr_reader :HgRepository
|
44
|
+
#
|
45
|
+
# # A project.
|
46
|
+
# # @return [RDF::Vocabulary::Term]
|
47
|
+
# attr_reader :Project
|
48
|
+
#
|
49
|
+
# # Source code repository.
|
50
|
+
# # @return [RDF::Vocabulary::Term]
|
51
|
+
# attr_reader :Repository
|
52
|
+
#
|
53
|
+
# # Subversion source code repository.
|
54
|
+
# # @return [RDF::Vocabulary::Term]
|
55
|
+
# attr_reader :SVNRepository
|
56
|
+
#
|
57
|
+
# # A specification of a system's aspects, technical or otherwise.
|
58
|
+
# # @return [RDF::Vocabulary::Term]
|
59
|
+
# attr_reader :Specification
|
60
|
+
#
|
61
|
+
# # Version information of a project release.
|
62
|
+
# # @return [RDF::Vocabulary::Term]
|
63
|
+
# attr_reader :Version
|
64
|
+
#
|
65
|
+
# # Description of target user base
|
66
|
+
# # @return [RDF::Vocabulary::Term]
|
67
|
+
# attr_reader :audience
|
68
|
+
#
|
69
|
+
# # URI of a blog related to a project
|
70
|
+
# # @return [RDF::Vocabulary::Term]
|
71
|
+
# attr_reader :blog
|
72
|
+
#
|
73
|
+
# # Web browser interface to repository.
|
74
|
+
# # @return [RDF::Vocabulary::Term]
|
75
|
+
# attr_reader :browse
|
76
|
+
#
|
77
|
+
# # A category of project.
|
78
|
+
# # @return [RDF::Vocabulary::Term]
|
79
|
+
# attr_reader :category
|
80
|
+
#
|
81
|
+
# # Date when something was created, in YYYY-MM-DD form. e.g. 2004-04-05
|
82
|
+
# # @return [RDF::Vocabulary::Term]
|
83
|
+
# attr_reader :created
|
84
|
+
#
|
85
|
+
# # Plain text description of a project, of 2-4 sentences in length.
|
86
|
+
# # @return [RDF::Vocabulary::Term]
|
87
|
+
# attr_reader :description
|
88
|
+
#
|
89
|
+
# # Developer of software for the project.
|
90
|
+
# # @return [RDF::Vocabulary::Term]
|
91
|
+
# attr_reader :developer
|
92
|
+
#
|
93
|
+
# # Contributor of documentation to the project.
|
94
|
+
# # @return [RDF::Vocabulary::Term]
|
95
|
+
# attr_reader :documenter
|
96
|
+
#
|
97
|
+
# # Project contributor.
|
98
|
+
# # @return [RDF::Vocabulary::Term]
|
99
|
+
# attr_reader :helper
|
100
|
+
#
|
101
|
+
# # URL of a project's homepage, associated with exactly one project.
|
102
|
+
# # @return [RDF::Vocabulary::Term]
|
103
|
+
# attr_reader :homepage
|
104
|
+
#
|
105
|
+
# # A specification that a project implements. Could be a standard, API or legally defined level of conformance.
|
106
|
+
# # @return [RDF::Vocabulary::Term]
|
107
|
+
# attr_reader :implements
|
108
|
+
#
|
109
|
+
# # ISO language code a project has been translated into
|
110
|
+
# # @return [RDF::Vocabulary::Term]
|
111
|
+
# attr_reader :language
|
112
|
+
#
|
113
|
+
# # The URI of an RDF description of the license the software is distributed under. E.g. a SPDX reference
|
114
|
+
# # @return [RDF::Vocabulary::Term]
|
115
|
+
# attr_reader :license
|
116
|
+
#
|
117
|
+
# # Location of a repository.
|
118
|
+
# # @return [RDF::Vocabulary::Term]
|
119
|
+
# attr_reader :location
|
120
|
+
#
|
121
|
+
# # Maintainer of a project, a project leader.
|
122
|
+
# # @return [RDF::Vocabulary::Term]
|
123
|
+
# attr_reader :maintainer
|
124
|
+
#
|
125
|
+
# # Module name of a Subversion, CVS, BitKeeper or Arch repository.
|
126
|
+
# # @return [RDF::Vocabulary::Term]
|
127
|
+
# attr_reader :module
|
128
|
+
#
|
129
|
+
# # A name of something.
|
130
|
+
# # @return [RDF::Vocabulary::Term]
|
131
|
+
# attr_reader :name
|
132
|
+
#
|
133
|
+
# # Operating system that a project is limited to. Omit this property if the project is not OS-specific.
|
134
|
+
# #
|
135
|
+
# # Sistema operativo a que o projeto está limitado. Omita esta propriedade se o projeto não é condicionado pelo SO usado.
|
136
|
+
# # @return [RDF::Vocabulary::Term]
|
137
|
+
# attr_reader :os
|
138
|
+
#
|
139
|
+
# # Indicator of software platform (non-OS specific), e.g. Java, Firefox, ECMA CLR
|
140
|
+
# # @return [RDF::Vocabulary::Term]
|
141
|
+
# attr_reader :platform
|
142
|
+
#
|
143
|
+
# # A project release.
|
144
|
+
# # @return [RDF::Vocabulary::Term]
|
145
|
+
# attr_reader :release
|
146
|
+
#
|
147
|
+
# # Source code repository.
|
148
|
+
# # @return [RDF::Vocabulary::Term]
|
149
|
+
# attr_reader :repository
|
150
|
+
#
|
151
|
+
# # The project that uses a repository.
|
152
|
+
# # @return [RDF::Vocabulary::Term]
|
153
|
+
# attr_reader :repositoryOf
|
154
|
+
#
|
155
|
+
# # Revision identifier of a software release.
|
156
|
+
# # @return [RDF::Vocabulary::Term]
|
157
|
+
# attr_reader :revision
|
158
|
+
#
|
159
|
+
# # Web page with screenshots of project.
|
160
|
+
# # @return [RDF::Vocabulary::Term]
|
161
|
+
# attr_reader :screenshots
|
162
|
+
#
|
163
|
+
# # Short (8 or 9 words) plain text description of a project.
|
164
|
+
# # @return [RDF::Vocabulary::Term]
|
165
|
+
# attr_reader :shortdesc
|
166
|
+
#
|
167
|
+
# # A tester or other quality control contributor.
|
168
|
+
# # @return [RDF::Vocabulary::Term]
|
169
|
+
# attr_reader :tester
|
170
|
+
#
|
171
|
+
# # Contributor of translations to the project.
|
172
|
+
# # @return [RDF::Vocabulary::Term]
|
173
|
+
# attr_reader :translator
|
174
|
+
#
|
175
|
+
# # Vendor organization: commercial, free or otherwise
|
176
|
+
# # @return [RDF::Vocabulary::Term]
|
177
|
+
# attr_reader :vendor
|
178
|
+
#
|
179
|
+
# # URL of Wiki for collaborative discussion of project.
|
180
|
+
# # @return [RDF::Vocabulary::Term]
|
181
|
+
# attr_reader :wiki
|
182
|
+
#
|
9
183
|
# end
|
10
|
-
|
184
|
+
DOAP = Class.new(RDF::StrictVocabulary("http://usefulinc.com/ns/doap#")) do
|
11
185
|
|
12
186
|
# Ontology definition
|
13
187
|
ontology :"http://usefulinc.com/ns/doap#",
|
data/lib/rdf/vocab/dwc.rb
CHANGED
@@ -5,20 +5,772 @@ require 'rdf'
|
|
5
5
|
module RDF::Vocab
|
6
6
|
# @!parse
|
7
7
|
# # Vocabulary for <http://rs.tdwg.org/dwc/terms/>
|
8
|
+
# #
|
9
|
+
# # Darwin Core Recommended Terms
|
10
|
+
# #
|
11
|
+
# # 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
|
8
12
|
# class DWC < RDF::Vocabulary
|
13
|
+
# # An action that occurs at some location during some time.
|
14
|
+
# # @return [RDF::Vocabulary::Term]
|
15
|
+
# attr_reader :Event
|
16
|
+
#
|
17
|
+
# # A preserved specimen that is a fossil.
|
18
|
+
# # @return [RDF::Vocabulary::Term]
|
19
|
+
# attr_reader :FossilSpecimen
|
20
|
+
#
|
21
|
+
# # Geological information, such as stratigraphy, that qualifies a region or place.
|
22
|
+
# # @return [RDF::Vocabulary::Term]
|
23
|
+
# attr_reader :GeologicalContext
|
24
|
+
#
|
25
|
+
# # An output of a human observation process.
|
26
|
+
# # @return [RDF::Vocabulary::Term]
|
27
|
+
# attr_reader :HumanObservation
|
28
|
+
#
|
29
|
+
# # A taxonomic determination (e.g., the assignment to a taxon).
|
30
|
+
# # @return [RDF::Vocabulary::Term]
|
31
|
+
# attr_reader :Identification
|
32
|
+
#
|
33
|
+
# # A specimen that is alive.
|
34
|
+
# # @return [RDF::Vocabulary::Term]
|
35
|
+
# attr_reader :LivingSpecimen
|
36
|
+
#
|
37
|
+
# # An output of a machine observation process.
|
38
|
+
# # @return [RDF::Vocabulary::Term]
|
39
|
+
# attr_reader :MachineObservation
|
40
|
+
#
|
41
|
+
# # A physical results of a sampling (or subsampling) event. In biological collections, the material sample is typically collected, and either preserved or destructively processed.
|
42
|
+
# # @return [RDF::Vocabulary::Term]
|
43
|
+
# attr_reader :MaterialSample
|
44
|
+
#
|
45
|
+
# # A measurement of or fact about an rdfs:Resource (http://www.w3.org/2000/01/rdf-schema#Resource).
|
46
|
+
# # @return [RDF::Vocabulary::Term]
|
47
|
+
# attr_reader :MeasurementOrFact
|
48
|
+
#
|
49
|
+
# # An existence of an Organism (sensu http://rs.tdwg.org/dwc/terms/Organism) at a particular place at a particular time.
|
50
|
+
# # @return [RDF::Vocabulary::Term]
|
51
|
+
# attr_reader :Occurrence
|
52
|
+
#
|
53
|
+
# # A particular organism or defined group of organisms considered to be taxonomically homogeneous.
|
54
|
+
# # @return [RDF::Vocabulary::Term]
|
55
|
+
# attr_reader :Organism
|
56
|
+
#
|
57
|
+
# # A specimen that has been preserved.
|
58
|
+
# # @return [RDF::Vocabulary::Term]
|
59
|
+
# attr_reader :PreservedSpecimen
|
60
|
+
#
|
61
|
+
# # A relationship of one rdfs:Resource (http://www.w3.org/2000/01/rdf-schema#Resource) to another.
|
62
|
+
# # @return [RDF::Vocabulary::Term]
|
63
|
+
# attr_reader :ResourceRelationship
|
64
|
+
#
|
65
|
+
# # A group of organisms (sensu http://purl.obolibrary.org/obo/OBI_0100026) considered by taxonomists to form a homogeneous unit.
|
66
|
+
# # @return [RDF::Vocabulary::Term]
|
67
|
+
# attr_reader :Taxon
|
68
|
+
#
|
69
|
+
# # The full name, with authorship and date information if known, of the currently valid (zoological) or accepted (botanical) taxon.
|
70
|
+
# # @return [RDF::Vocabulary::Term]
|
71
|
+
# attr_reader :acceptedNameUsage
|
72
|
+
#
|
73
|
+
# # An identifier for the name usage (documented meaning of the name according to a source) of the currently valid (zoological) or accepted (botanical) taxon.
|
74
|
+
# # @return [RDF::Vocabulary::Term]
|
75
|
+
# attr_reader :acceptedNameUsageID
|
76
|
+
#
|
77
|
+
# # Abstract term to attribute information to a source.
|
78
|
+
# # @return [RDF::Vocabulary::Term]
|
79
|
+
# attr_reader :accordingTo
|
80
|
+
#
|
81
|
+
# # A list (concatenated and separated) of identifiers (publication, global unique identifier, URI) of media associated with the Occurrence.
|
82
|
+
# # @return [RDF::Vocabulary::Term]
|
83
|
+
# attr_reader :associatedMedia
|
84
|
+
#
|
85
|
+
# # A list (concatenated and separated) of identifiers of other Occurrence records and their associations to this Occurrence.
|
86
|
+
# # @return [RDF::Vocabulary::Term]
|
87
|
+
# attr_reader :associatedOccurrences
|
88
|
+
#
|
89
|
+
# # A list (concatenated and separated) of identifiers of other Organisms and their associations to this Organism.
|
90
|
+
# # @return [RDF::Vocabulary::Term]
|
91
|
+
# attr_reader :associatedOrganisms
|
92
|
+
#
|
93
|
+
# # A list (concatenated and separated) of identifiers (publication, bibliographic reference, global unique identifier, URI) of literature associated with the Occurrence.
|
94
|
+
# # @return [RDF::Vocabulary::Term]
|
95
|
+
# attr_reader :associatedReferences
|
96
|
+
#
|
97
|
+
# # A list (concatenated and separated) of identifiers (publication, global unique identifier, URI) of genetic sequence information associated with the Occurrence.
|
98
|
+
# # @return [RDF::Vocabulary::Term]
|
99
|
+
# attr_reader :associatedSequences
|
100
|
+
#
|
101
|
+
# # A list (concatenated and separated) of identifiers or names of taxa and their associations with the Occurrence.
|
102
|
+
# # @return [RDF::Vocabulary::Term]
|
103
|
+
# attr_reader :associatedTaxa
|
104
|
+
#
|
105
|
+
# # The specific nature of the data record.
|
106
|
+
# # @return [RDF::Vocabulary::Term]
|
107
|
+
# attr_reader :basisOfRecord
|
108
|
+
#
|
109
|
+
# # The full name of the lithostratigraphic bed from which the cataloged item was collected.
|
110
|
+
# # @return [RDF::Vocabulary::Term]
|
111
|
+
# attr_reader :bed
|
112
|
+
#
|
113
|
+
# # 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.
|
114
|
+
# # @return [RDF::Vocabulary::Term]
|
115
|
+
# attr_reader :behavior
|
116
|
+
#
|
117
|
+
# # An identifier (preferably unique) for the record within the data set or collection.
|
118
|
+
# # @return [RDF::Vocabulary::Term]
|
119
|
+
# attr_reader :catalogNumber
|
120
|
+
#
|
121
|
+
# # The full scientific name of the class in which the taxon is classified.
|
122
|
+
# # @return [RDF::Vocabulary::Term]
|
123
|
+
# attr_reader :class
|
124
|
+
#
|
125
|
+
# # The name, acronym, coden, or initialism identifying the collection or data set from which the record was derived.
|
126
|
+
# # @return [RDF::Vocabulary::Term]
|
127
|
+
# attr_reader :collectionCode
|
128
|
+
#
|
129
|
+
# # An identifier for the collection or dataset from which the record was derived.
|
130
|
+
# # @return [RDF::Vocabulary::Term]
|
131
|
+
# attr_reader :collectionID
|
132
|
+
#
|
133
|
+
# # 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.
|
134
|
+
# # @return [RDF::Vocabulary::Term]
|
135
|
+
# attr_reader :continent
|
136
|
+
#
|
137
|
+
# # A decimal representation of the precision of the coordinates given in the decimalLatitude and decimalLongitude.
|
138
|
+
# # @return [RDF::Vocabulary::Term]
|
139
|
+
# attr_reader :coordinatePrecision
|
140
|
+
#
|
141
|
+
# # 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.
|
142
|
+
# # @return [RDF::Vocabulary::Term]
|
143
|
+
# attr_reader :coordinateUncertaintyInMeters
|
144
|
+
#
|
145
|
+
# # 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.
|
146
|
+
# # @return [RDF::Vocabulary::Term]
|
147
|
+
# attr_reader :country
|
148
|
+
#
|
149
|
+
# # The standard code for the country in which the Location occurs. Recommended best practice is to use ISO 3166-1-alpha-2 country codes.
|
150
|
+
# # @return [RDF::Vocabulary::Term]
|
151
|
+
# attr_reader :countryCode
|
152
|
+
#
|
153
|
+
# # The full, unabbreviated name of the next smaller administrative region than stateProvince (county, shire, department, etc.) in which the Location occurs.
|
154
|
+
# # @return [RDF::Vocabulary::Term]
|
155
|
+
# attr_reader :county
|
156
|
+
#
|
157
|
+
# # 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.
|
158
|
+
# # @return [RDF::Vocabulary::Term]
|
159
|
+
# attr_reader :dataGeneralizations
|
160
|
+
#
|
161
|
+
# # An identifier for the set of data. May be a global unique identifier or an identifier specific to a collection or institution.
|
162
|
+
# # @return [RDF::Vocabulary::Term]
|
163
|
+
# attr_reader :datasetID
|
164
|
+
#
|
165
|
+
# # The name identifying the data set from which the record was derived.
|
166
|
+
# # @return [RDF::Vocabulary::Term]
|
167
|
+
# attr_reader :datasetName
|
168
|
+
#
|
169
|
+
# # 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).
|
170
|
+
# # @return [RDF::Vocabulary::Term]
|
171
|
+
# attr_reader :dateIdentified
|
172
|
+
#
|
173
|
+
# # The integer day of the month on which the Event occurred.
|
174
|
+
# # @return [RDF::Vocabulary::Term]
|
175
|
+
# attr_reader :day
|
176
|
+
#
|
177
|
+
# # 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.
|
178
|
+
# # @return [RDF::Vocabulary::Term]
|
179
|
+
# attr_reader :decimalLatitude
|
180
|
+
#
|
181
|
+
# # 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.
|
182
|
+
# # @return [RDF::Vocabulary::Term]
|
183
|
+
# attr_reader :decimalLongitude
|
184
|
+
#
|
185
|
+
# # 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.
|
186
|
+
# # @return [RDF::Vocabulary::Term]
|
187
|
+
# attr_reader :disposition
|
188
|
+
#
|
189
|
+
# # A list of additional measurements, facts, characteristics, or assertions about the record. Meant to provide a mechanism for structured content.
|
190
|
+
# # @return [RDF::Vocabulary::Term]
|
191
|
+
# attr_reader :dynamicProperties
|
192
|
+
#
|
193
|
+
# # 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.
|
194
|
+
# # @return [RDF::Vocabulary::Term]
|
195
|
+
# attr_reader :earliestAgeOrLowestStage
|
196
|
+
#
|
197
|
+
# # 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.
|
198
|
+
# # @return [RDF::Vocabulary::Term]
|
199
|
+
# attr_reader :earliestEonOrLowestEonothem
|
200
|
+
#
|
201
|
+
# # 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.
|
202
|
+
# # @return [RDF::Vocabulary::Term]
|
203
|
+
# attr_reader :earliestEpochOrLowestSeries
|
204
|
+
#
|
205
|
+
# # 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.
|
206
|
+
# # @return [RDF::Vocabulary::Term]
|
207
|
+
# attr_reader :earliestEraOrLowestErathem
|
208
|
+
#
|
209
|
+
# # 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.
|
210
|
+
# # @return [RDF::Vocabulary::Term]
|
211
|
+
# attr_reader :earliestPeriodOrLowestSystem
|
212
|
+
#
|
213
|
+
# # 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).
|
214
|
+
# # @return [RDF::Vocabulary::Term]
|
215
|
+
# attr_reader :endDayOfYear
|
216
|
+
#
|
217
|
+
# # 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.
|
218
|
+
# # @return [RDF::Vocabulary::Term]
|
219
|
+
# attr_reader :establishmentMeans
|
220
|
+
#
|
221
|
+
# # 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).
|
222
|
+
# # @return [RDF::Vocabulary::Term]
|
223
|
+
# attr_reader :eventDate
|
224
|
+
#
|
225
|
+
# # 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.
|
226
|
+
# # @return [RDF::Vocabulary::Term]
|
227
|
+
# attr_reader :eventID
|
228
|
+
#
|
229
|
+
# # Comments or notes about the Event.
|
230
|
+
# # @return [RDF::Vocabulary::Term]
|
231
|
+
# attr_reader :eventRemarks
|
232
|
+
#
|
233
|
+
# # The time or interval during which an Event occurred. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).
|
234
|
+
# # @return [RDF::Vocabulary::Term]
|
235
|
+
# attr_reader :eventTime
|
236
|
+
#
|
237
|
+
# # The full scientific name of the family in which the taxon is classified.
|
238
|
+
# # @return [RDF::Vocabulary::Term]
|
239
|
+
# attr_reader :family
|
240
|
+
#
|
241
|
+
# # 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.
|
242
|
+
# # @return [RDF::Vocabulary::Term]
|
243
|
+
# attr_reader :fieldNotes
|
244
|
+
#
|
245
|
+
# # An identifier given to the event in the field. Often serves as a link between field notes and the Event.
|
246
|
+
# # @return [RDF::Vocabulary::Term]
|
247
|
+
# attr_reader :fieldNumber
|
248
|
+
#
|
249
|
+
# # 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.
|
250
|
+
# # @return [RDF::Vocabulary::Term]
|
251
|
+
# attr_reader :footprintSRS
|
252
|
+
#
|
253
|
+
# # 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.
|
254
|
+
# # @return [RDF::Vocabulary::Term]
|
255
|
+
# attr_reader :footprintSpatialFit
|
256
|
+
#
|
257
|
+
# # 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.
|
258
|
+
# # @return [RDF::Vocabulary::Term]
|
259
|
+
# attr_reader :footprintWKT
|
260
|
+
#
|
261
|
+
# # The full name of the lithostratigraphic formation from which the cataloged item was collected.
|
262
|
+
# # @return [RDF::Vocabulary::Term]
|
263
|
+
# attr_reader :formation
|
264
|
+
#
|
265
|
+
# # The full scientific name of the genus in which the taxon is classified.
|
266
|
+
# # @return [RDF::Vocabulary::Term]
|
267
|
+
# attr_reader :genus
|
268
|
+
#
|
269
|
+
# # 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".
|
270
|
+
# # @return [RDF::Vocabulary::Term]
|
271
|
+
# attr_reader :geodeticDatum
|
272
|
+
#
|
273
|
+
# # 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.
|
274
|
+
# # @return [RDF::Vocabulary::Term]
|
275
|
+
# attr_reader :geologicalContextID
|
276
|
+
#
|
277
|
+
# # A description or reference to the methods used to determine the spatial footprint, coordinates, and uncertainties.
|
278
|
+
# # @return [RDF::Vocabulary::Term]
|
279
|
+
# attr_reader :georeferenceProtocol
|
280
|
+
#
|
281
|
+
# # 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.
|
282
|
+
# # @return [RDF::Vocabulary::Term]
|
283
|
+
# attr_reader :georeferenceRemarks
|
284
|
+
#
|
285
|
+
# # 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.
|
286
|
+
# # @return [RDF::Vocabulary::Term]
|
287
|
+
# attr_reader :georeferenceSources
|
288
|
+
#
|
289
|
+
# # 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.
|
290
|
+
# # @return [RDF::Vocabulary::Term]
|
291
|
+
# attr_reader :georeferenceVerificationStatus
|
292
|
+
#
|
293
|
+
# # A list (concatenated and separated) of names of people, groups, or organizations who determined the georeference (spatial representation) for the Location.
|
294
|
+
# # @return [RDF::Vocabulary::Term]
|
295
|
+
# attr_reader :georeferencedBy
|
296
|
+
#
|
297
|
+
# # The date on which the Location was georeferenced. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).
|
298
|
+
# # @return [RDF::Vocabulary::Term]
|
299
|
+
# attr_reader :georeferencedDate
|
300
|
+
#
|
301
|
+
# # The full name of the lithostratigraphic group from which the cataloged item was collected.
|
302
|
+
# # @return [RDF::Vocabulary::Term]
|
303
|
+
# attr_reader :group
|
304
|
+
#
|
305
|
+
# # A category or description of the habitat in which the Event occurred.
|
306
|
+
# # @return [RDF::Vocabulary::Term]
|
307
|
+
# attr_reader :habitat
|
308
|
+
#
|
309
|
+
# # A list (concatenated and separated) of taxa names terminating at the rank immediately superior to the taxon referenced in the taxon record.
|
310
|
+
# # @return [RDF::Vocabulary::Term]
|
311
|
+
# attr_reader :higherClassification
|
312
|
+
#
|
313
|
+
# # A list (concatenated and separated) of geographic names less specific than the information captured in the locality term.
|
314
|
+
# # @return [RDF::Vocabulary::Term]
|
315
|
+
# attr_reader :higherGeography
|
316
|
+
#
|
317
|
+
# # 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.
|
318
|
+
# # @return [RDF::Vocabulary::Term]
|
319
|
+
# attr_reader :higherGeographyID
|
320
|
+
#
|
321
|
+
# # The full name of the highest possible geological biostratigraphic zone of the stratigraphic horizon from which the cataloged item was collected.
|
322
|
+
# # @return [RDF::Vocabulary::Term]
|
323
|
+
# attr_reader :highestBiostratigraphicZone
|
324
|
+
#
|
325
|
+
# # An identifier for the Identification (the body of information associated with the assignment of a scientific name). May be a global unique identifier or an identifier specific to the data set.
|
326
|
+
# # @return [RDF::Vocabulary::Term]
|
327
|
+
# attr_reader :identificationID
|
328
|
+
#
|
329
|
+
# # A brief phrase or a standard term ("cf.", "aff.") to express the determiner's doubts about the Identification.
|
330
|
+
# # @return [RDF::Vocabulary::Term]
|
331
|
+
# attr_reader :identificationQualifier
|
332
|
+
#
|
333
|
+
# # A list (concatenated and separated) of references (publication, global unique identifier, URI) used in the Identification.
|
334
|
+
# # @return [RDF::Vocabulary::Term]
|
335
|
+
# attr_reader :identificationReferences
|
336
|
+
#
|
337
|
+
# # Comments or notes about the Identification.
|
338
|
+
# # @return [RDF::Vocabulary::Term]
|
339
|
+
# attr_reader :identificationRemarks
|
340
|
+
#
|
341
|
+
# # A categorical indicator of the extent to which the taxonomic identification has been verified to be correct. Recommended best practice is to use a controlled vocabulary such as that used in HISPID/ABCD.
|
342
|
+
# # @return [RDF::Vocabulary::Term]
|
343
|
+
# attr_reader :identificationVerificationStatus
|
344
|
+
#
|
345
|
+
# # A list (concatenated and separated) of names of people, groups, or organizations who assigned the Taxon to the subject.
|
346
|
+
# # @return [RDF::Vocabulary::Term]
|
347
|
+
# attr_reader :identifiedBy
|
348
|
+
#
|
349
|
+
# # The number of individuals represented present at the time of the Occurrence.
|
350
|
+
# # @return [RDF::Vocabulary::Term]
|
351
|
+
# attr_reader :individualCount
|
352
|
+
#
|
353
|
+
# # Additional information that exists, but that has not been shared in the given record.
|
354
|
+
# # @return [RDF::Vocabulary::Term]
|
355
|
+
# attr_reader :informationWithheld
|
356
|
+
#
|
357
|
+
# # The name of the lowest or terminal infraspecific epithet of the scientificName, excluding any rank designation.
|
358
|
+
# # @return [RDF::Vocabulary::Term]
|
359
|
+
# attr_reader :infraspecificEpithet
|
360
|
+
#
|
361
|
+
# # The name (or acronym) in use by the institution having custody of the object(s) or information referred to in the record.
|
362
|
+
# # @return [RDF::Vocabulary::Term]
|
363
|
+
# attr_reader :institutionCode
|
364
|
+
#
|
365
|
+
# # An identifier for the institution having custody of the object(s) or information referred to in the record.
|
366
|
+
# # @return [RDF::Vocabulary::Term]
|
367
|
+
# attr_reader :institutionID
|
368
|
+
#
|
369
|
+
# # The name of the island on or near which the Location occurs. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.
|
370
|
+
# # @return [RDF::Vocabulary::Term]
|
371
|
+
# attr_reader :island
|
372
|
+
#
|
373
|
+
# # The name of the island group in which the Location occurs. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.
|
374
|
+
# # @return [RDF::Vocabulary::Term]
|
375
|
+
# attr_reader :islandGroup
|
376
|
+
#
|
377
|
+
# # The full scientific name of the kingdom in which the taxon is classified.
|
378
|
+
# # @return [RDF::Vocabulary::Term]
|
379
|
+
# attr_reader :kingdom
|
380
|
+
#
|
381
|
+
# # The full name of the latest possible geochronologic age or highest chronostratigraphic stage attributable to the stratigraphic horizon from which the cataloged item was collected.
|
382
|
+
# # @return [RDF::Vocabulary::Term]
|
383
|
+
# attr_reader :latestAgeOrHighestStage
|
384
|
+
#
|
385
|
+
# # The full name of the latest possible geochronologic eon or highest chrono-stratigraphic eonothem or the informal name ("Precambrian") attributable to the stratigraphic horizon from which the cataloged item was collected.
|
386
|
+
# # @return [RDF::Vocabulary::Term]
|
387
|
+
# attr_reader :latestEonOrHighestEonothem
|
388
|
+
#
|
389
|
+
# # The full name of the latest possible geochronologic epoch or highest chronostratigraphic series attributable to the stratigraphic horizon from which the cataloged item was collected.
|
390
|
+
# # @return [RDF::Vocabulary::Term]
|
391
|
+
# attr_reader :latestEpochOrHighestSeries
|
392
|
+
#
|
393
|
+
# # The full name of the latest possible geochronologic era or highest chronostratigraphic erathem attributable to the stratigraphic horizon from which the cataloged item was collected.
|
394
|
+
# # @return [RDF::Vocabulary::Term]
|
395
|
+
# attr_reader :latestEraOrHighestErathem
|
396
|
+
#
|
397
|
+
# # The full name of the latest possible geochronologic period or highest chronostratigraphic system attributable to the stratigraphic horizon from which the cataloged item was collected.
|
398
|
+
# # @return [RDF::Vocabulary::Term]
|
399
|
+
# attr_reader :latestPeriodOrHighestSystem
|
400
|
+
#
|
401
|
+
# # The age class or life stage of the biological individual(s) at the time the Occurrence was recorded. Recommended best practice is to use a controlled vocabulary.
|
402
|
+
# # @return [RDF::Vocabulary::Term]
|
403
|
+
# attr_reader :lifeStage
|
404
|
+
#
|
405
|
+
# # The combination of all litho-stratigraphic names for the rock from which the cataloged item was collected.
|
406
|
+
# # @return [RDF::Vocabulary::Term]
|
407
|
+
# attr_reader :lithostratigraphicTerms
|
408
|
+
#
|
409
|
+
# # The specific description of the place. Less specific geographic information can be provided in other geographic terms (higherGeography, continent, country, stateProvince, county, municipality, waterBody, island, islandGroup). This term may contain information modified from the original to correct perceived errors or standardize the description.
|
410
|
+
# # @return [RDF::Vocabulary::Term]
|
411
|
+
# attr_reader :locality
|
412
|
+
#
|
413
|
+
# # Information about the source of this Location information. Could be a publication (gazetteer), institution, or team of individuals.
|
414
|
+
# # @return [RDF::Vocabulary::Term]
|
415
|
+
# attr_reader :locationAccordingTo
|
416
|
+
#
|
417
|
+
# # An identifier for the set of location information (data associated with dcterms:Location). May be a global unique identifier or an identifier specific to the data set.
|
418
|
+
# # @return [RDF::Vocabulary::Term]
|
419
|
+
# attr_reader :locationID
|
420
|
+
#
|
421
|
+
# # Comments or notes about the Location.
|
422
|
+
# # @return [RDF::Vocabulary::Term]
|
423
|
+
# attr_reader :locationRemarks
|
424
|
+
#
|
425
|
+
# # The full name of the lowest possible geological biostratigraphic zone of the stratigraphic horizon from which the cataloged item was collected.
|
426
|
+
# # @return [RDF::Vocabulary::Term]
|
427
|
+
# attr_reader :lowestBiostratigraphicZone
|
428
|
+
#
|
429
|
+
# # An identifier for the MaterialSample (as opposed to a particular digital record of the material sample). In the absence of a persistent global unique identifier, construct one from a combination of identifiers in the record that will most closely make the materialSampleID globally unique.
|
430
|
+
# # @return [RDF::Vocabulary::Term]
|
431
|
+
# attr_reader :materialSampleID
|
432
|
+
#
|
433
|
+
# # The greater depth of a range of depth below the local surface, in meters.
|
434
|
+
# # @return [RDF::Vocabulary::Term]
|
435
|
+
# attr_reader :maximumDepthInMeters
|
436
|
+
#
|
437
|
+
# # The greater distance in a range of distance from a reference surface in the vertical direction, in meters. Use positive values for locations above the surface, negative values for locations below. If depth measures are given, the reference surface is the location given by the depth, otherwise the reference surface is the location given by the elevation.
|
438
|
+
# # @return [RDF::Vocabulary::Term]
|
439
|
+
# attr_reader :maximumDistanceAboveSurfaceInMeters
|
440
|
+
#
|
441
|
+
# # The upper limit of the range of elevation (altitude, usually above sea level), in meters.
|
442
|
+
# # @return [RDF::Vocabulary::Term]
|
443
|
+
# attr_reader :maximumElevationInMeters
|
444
|
+
#
|
445
|
+
# # The description of the potential error associated with the measurementValue.
|
446
|
+
# # @return [RDF::Vocabulary::Term]
|
447
|
+
# attr_reader :measurementAccuracy
|
448
|
+
#
|
449
|
+
# # A list (concatenated and separated) of names of people, groups, or organizations who determined the value of the MeasurementOrFact.
|
450
|
+
# # @return [RDF::Vocabulary::Term]
|
451
|
+
# attr_reader :measurementDeterminedBy
|
452
|
+
#
|
453
|
+
# # The date on which the MeasurementOrFact was made. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).
|
454
|
+
# # @return [RDF::Vocabulary::Term]
|
455
|
+
# attr_reader :measurementDeterminedDate
|
456
|
+
#
|
457
|
+
# # An identifier for the MeasurementOrFact (information pertaining to measurements, facts, characteristics, or assertions). May be a global unique identifier or an identifier specific to the data set.
|
458
|
+
# # @return [RDF::Vocabulary::Term]
|
459
|
+
# attr_reader :measurementID
|
460
|
+
#
|
461
|
+
# # A description of or reference to (publication, URI) the method or protocol used to determine the measurement, fact, characteristic, or assertion.
|
462
|
+
# # @return [RDF::Vocabulary::Term]
|
463
|
+
# attr_reader :measurementMethod
|
464
|
+
#
|
465
|
+
# # Comments or notes accompanying the MeasurementOrFact.
|
466
|
+
# # @return [RDF::Vocabulary::Term]
|
467
|
+
# attr_reader :measurementRemarks
|
468
|
+
#
|
469
|
+
# # The nature of the measurement, fact, characteristic, or assertion. Recommended best practice is to use a controlled vocabulary.
|
470
|
+
# # @return [RDF::Vocabulary::Term]
|
471
|
+
# attr_reader :measurementType
|
472
|
+
#
|
473
|
+
# # The units associated with the measurementValue. Recommended best practice is to use the International System of Units (SI).
|
474
|
+
# # @return [RDF::Vocabulary::Term]
|
475
|
+
# attr_reader :measurementUnit
|
476
|
+
#
|
477
|
+
# # The value of the measurement, fact, characteristic, or assertion.
|
478
|
+
# # @return [RDF::Vocabulary::Term]
|
479
|
+
# attr_reader :measurementValue
|
480
|
+
#
|
481
|
+
# # The full name of the lithostratigraphic member from which the cataloged item was collected.
|
482
|
+
# # @return [RDF::Vocabulary::Term]
|
483
|
+
# attr_reader :member
|
484
|
+
#
|
485
|
+
# # The lesser depth of a range of depth below the local surface, in meters.
|
486
|
+
# # @return [RDF::Vocabulary::Term]
|
487
|
+
# attr_reader :minimumDepthInMeters
|
488
|
+
#
|
489
|
+
# # The lesser distance in a range of distance from a reference surface in the vertical direction, in meters. Use positive values for locations above the surface, negative values for locations below. If depth measures are given, the reference surface is the location given by the depth, otherwise the reference surface is the location given by the elevation.
|
490
|
+
# # @return [RDF::Vocabulary::Term]
|
491
|
+
# attr_reader :minimumDistanceAboveSurfaceInMeters
|
492
|
+
#
|
493
|
+
# # The lower limit of the range of elevation (altitude, usually above sea level), in meters.
|
494
|
+
# # @return [RDF::Vocabulary::Term]
|
495
|
+
# attr_reader :minimumElevationInMeters
|
496
|
+
#
|
497
|
+
# # The ordinal month in which the Event occurred.
|
498
|
+
# # @return [RDF::Vocabulary::Term]
|
499
|
+
# attr_reader :month
|
500
|
+
#
|
501
|
+
# # The full, unabbreviated name of the next smaller administrative region than county (city, municipality, etc.) in which the Location occurs. Do not use this term for a nearby named place that does not contain the actual location.
|
502
|
+
# # @return [RDF::Vocabulary::Term]
|
503
|
+
# attr_reader :municipality
|
504
|
+
#
|
505
|
+
# # The reference to the source in which the specific taxon concept circumscription is defined or implied - traditionally signified by the Latin "sensu" or "sec." (from secundum, meaning "according to"). For taxa that result from identifications, a reference to the keys, monographs, experts and other sources should be given.
|
506
|
+
# # @return [RDF::Vocabulary::Term]
|
507
|
+
# attr_reader :nameAccordingTo
|
508
|
+
#
|
509
|
+
# # An identifier for the source in which the specific taxon concept circumscription is defined or implied. See nameAccordingTo.
|
510
|
+
# # @return [RDF::Vocabulary::Term]
|
511
|
+
# attr_reader :nameAccordingToID
|
512
|
+
#
|
513
|
+
# # A reference for the publication in which the scientificName was originally established under the rules of the associated nomenclaturalCode.
|
514
|
+
# # @return [RDF::Vocabulary::Term]
|
515
|
+
# attr_reader :namePublishedIn
|
516
|
+
#
|
517
|
+
# # An identifier for the publication in which the scientificName was originally established under the rules of the associated nomenclaturalCode.
|
518
|
+
# # @return [RDF::Vocabulary::Term]
|
519
|
+
# attr_reader :namePublishedInID
|
520
|
+
#
|
521
|
+
# # The four-digit year in which the scientificName was published.
|
522
|
+
# # @return [RDF::Vocabulary::Term]
|
523
|
+
# attr_reader :namePublishedInYear
|
524
|
+
#
|
525
|
+
# # The nomenclatural code (or codes in the case of an ambiregnal name) under which the scientificName is constructed. Recommended best practice is to use a controlled vocabulary.
|
526
|
+
# # @return [RDF::Vocabulary::Term]
|
527
|
+
# attr_reader :nomenclaturalCode
|
528
|
+
#
|
529
|
+
# # The status related to the original publication of the name and its conformance to the relevant rules of nomenclature. It is based essentially on an algorithm according to the business rules of the code. It requires no taxonomic opinion.
|
530
|
+
# # @return [RDF::Vocabulary::Term]
|
531
|
+
# attr_reader :nomenclaturalStatus
|
532
|
+
#
|
533
|
+
# # An identifier for the Occurrence (as opposed to a particular digital record of the occurrence). In the absence of a persistent global unique identifier, construct one from a combination of identifiers in the record that will most closely make the occurrenceID globally unique.
|
534
|
+
# # @return [RDF::Vocabulary::Term]
|
535
|
+
# attr_reader :occurrenceID
|
536
|
+
#
|
537
|
+
# # Comments or notes about the Occurrence.
|
538
|
+
# # @return [RDF::Vocabulary::Term]
|
539
|
+
# attr_reader :occurrenceRemarks
|
540
|
+
#
|
541
|
+
# # A statement about the presence or absence of a Taxon at a Location. Recommended best practice is to use a controlled vocabulary.
|
542
|
+
# # @return [RDF::Vocabulary::Term]
|
543
|
+
# attr_reader :occurrenceStatus
|
544
|
+
#
|
545
|
+
# # The full scientific name of the order in which the taxon is classified.
|
546
|
+
# # @return [RDF::Vocabulary::Term]
|
547
|
+
# attr_reader :order
|
548
|
+
#
|
549
|
+
# # An identifier for the Organism instance (as opposed to a particular digital record of the Organism). May be a globally unique identifier or an identifier specific to the data set.
|
550
|
+
# # @return [RDF::Vocabulary::Term]
|
551
|
+
# attr_reader :organismID
|
552
|
+
#
|
553
|
+
# # A textual name or label assigned to an Organism instance.
|
554
|
+
# # @return [RDF::Vocabulary::Term]
|
555
|
+
# attr_reader :organismName
|
556
|
+
#
|
557
|
+
# # Comments or notes about the Organism instance.
|
558
|
+
# # @return [RDF::Vocabulary::Term]
|
559
|
+
# attr_reader :organismRemarks
|
560
|
+
#
|
561
|
+
# # A description of the kind of Organism instance. Can be used to indicate whether the Organism instance represents a discrete organism or if it represents a particular type of aggregation. Recommended best practice is to use a controlled vocabulary.
|
562
|
+
# # @return [RDF::Vocabulary::Term]
|
563
|
+
# attr_reader :organismScope
|
564
|
+
#
|
565
|
+
# # The taxon name, with authorship and date information if known, as it originally appeared when first established under the rules of the associated nomenclaturalCode. The basionym (botany) or basonym (bacteriology) of the scientificName or the senior/earlier homonym for replaced names.
|
566
|
+
# # @return [RDF::Vocabulary::Term]
|
567
|
+
# attr_reader :originalNameUsage
|
568
|
+
#
|
569
|
+
# # An identifier for the name usage (documented meaning of the name according to a source) in which the terminal element of the scientificName was originally established under the rules of the associated nomenclaturalCode.
|
570
|
+
# # @return [RDF::Vocabulary::Term]
|
571
|
+
# attr_reader :originalNameUsageID
|
572
|
+
#
|
573
|
+
# # A list (concatenated and separated) of previous or alternate fully qualified catalog numbers or other human-used identifiers for the same Occurrence, whether in the current or any other data set or collection.
|
574
|
+
# # @return [RDF::Vocabulary::Term]
|
575
|
+
# attr_reader :otherCatalogNumbers
|
576
|
+
#
|
577
|
+
# # The name (or acronym) in use by the institution having ownership of the object(s) or information referred to in the record.
|
578
|
+
# # @return [RDF::Vocabulary::Term]
|
579
|
+
# attr_reader :ownerInstitutionCode
|
580
|
+
#
|
581
|
+
# # The full name, with authorship and date information if known, of the direct, most proximate higher-rank parent taxon (in a classification) of the most specific element of the scientificName.
|
582
|
+
# # @return [RDF::Vocabulary::Term]
|
583
|
+
# attr_reader :parentNameUsage
|
584
|
+
#
|
585
|
+
# # An identifier for the name usage (documented meaning of the name according to a source) of the direct, most proximate higher-rank parent taxon (in a classification) of the most specific element of the scientificName.
|
586
|
+
# # @return [RDF::Vocabulary::Term]
|
587
|
+
# attr_reader :parentNameUsageID
|
588
|
+
#
|
589
|
+
# # The full scientific name of the phylum or division in which the taxon is classified.
|
590
|
+
# # @return [RDF::Vocabulary::Term]
|
591
|
+
# attr_reader :phylum
|
592
|
+
#
|
593
|
+
# # The ratio of the area of the point-radius (decimalLatitude, decimalLongitude, coordinateUncertaintyInMeters) to the area of the true (original, or most specific) spatial representation of the Location. Legal values are 0, greater than or equal to 1, or undefined. A value of 1 is an exact match or 100% overlap. A value of 0 should be used if the given point-radius does not completely contain the original representation. The pointRadiusSpatialFit is undefined (and should be left blank) if the original representation is a point without uncertainty and the given georeference is not that same point (without uncertainty). If both the original and the given georeference are the same point, the pointRadiusSpatialFit is 1.
|
594
|
+
# # @return [RDF::Vocabulary::Term]
|
595
|
+
# attr_reader :pointRadiusSpatialFit
|
596
|
+
#
|
597
|
+
# # A list (concatenated and separated) of preparations and preservation methods for a specimen.
|
598
|
+
# # @return [RDF::Vocabulary::Term]
|
599
|
+
# attr_reader :preparations
|
600
|
+
#
|
601
|
+
# # A list (concatenated and separated) of previous assignments of names to the Organism.
|
602
|
+
# # @return [RDF::Vocabulary::Term]
|
603
|
+
# attr_reader :previousIdentifications
|
604
|
+
#
|
605
|
+
# # An identifier given to the Occurrence at the time it was recorded. Often serves as a link between field notes and an Occurrence record, such as a specimen collector's number.
|
606
|
+
# # @return [RDF::Vocabulary::Term]
|
607
|
+
# attr_reader :recordNumber
|
608
|
+
#
|
609
|
+
# # A list (concatenated and separated) of names of people, groups, or organizations responsible for recording the original Occurrence. The primary collector or observer, especially one who applies a personal identifier (recordNumber), should be listed first.
|
610
|
+
# # @return [RDF::Vocabulary::Term]
|
611
|
+
# attr_reader :recordedBy
|
612
|
+
#
|
613
|
+
# # An identifier for a related resource (the object, rather than the subject of the relationship).
|
614
|
+
# # @return [RDF::Vocabulary::Term]
|
615
|
+
# attr_reader :relatedResourceID
|
616
|
+
#
|
617
|
+
# # The source (person, organization, publication, reference) establishing the relationship between the two resources.
|
618
|
+
# # @return [RDF::Vocabulary::Term]
|
619
|
+
# attr_reader :relationshipAccordingTo
|
620
|
+
#
|
621
|
+
# # The date-time on which the relationship between the two resources was established. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).
|
622
|
+
# # @return [RDF::Vocabulary::Term]
|
623
|
+
# attr_reader :relationshipEstablishedDate
|
624
|
+
#
|
625
|
+
# # The relationship of the resource identified by relatedResourceID to the subject (optionally identified by the resourceID). Recommended best practice is to use a controlled vocabulary.
|
626
|
+
# # @return [RDF::Vocabulary::Term]
|
627
|
+
# attr_reader :relationshipOfResource
|
628
|
+
#
|
629
|
+
# # Comments or notes about the relationship between the two resources.
|
630
|
+
# # @return [RDF::Vocabulary::Term]
|
631
|
+
# attr_reader :relationshipRemarks
|
632
|
+
#
|
633
|
+
# # The reproductive condition of the biological individual(s) represented in the Occurrence. Recommended best practice is to use a controlled vocabulary.
|
634
|
+
# # @return [RDF::Vocabulary::Term]
|
635
|
+
# attr_reader :reproductiveCondition
|
636
|
+
#
|
637
|
+
# # An identifier for the resource that is the subject of the relationship.
|
638
|
+
# # @return [RDF::Vocabulary::Term]
|
639
|
+
# attr_reader :resourceID
|
640
|
+
#
|
641
|
+
# # An identifier for an instance of relationship between one resource (the subject) and another (relatedResource, the object).
|
642
|
+
# # @return [RDF::Vocabulary::Term]
|
643
|
+
# attr_reader :resourceRelationshipID
|
644
|
+
#
|
645
|
+
# # The amount of effort expended during an Event.
|
646
|
+
# # @return [RDF::Vocabulary::Term]
|
647
|
+
# attr_reader :samplingEffort
|
648
|
+
#
|
649
|
+
# # The name of, reference to, or description of the method or protocol used during an Event.
|
650
|
+
# # @return [RDF::Vocabulary::Term]
|
651
|
+
# attr_reader :samplingProtocol
|
652
|
+
#
|
653
|
+
# # The full scientific name, with authorship and date information if known. When forming part of an Identification, this should be the name in lowest level taxonomic rank that can be determined. This term should not contain identification qualifications, which should instead be supplied in the IdentificationQualifier term.
|
654
|
+
# # @return [RDF::Vocabulary::Term]
|
655
|
+
# attr_reader :scientificName
|
656
|
+
#
|
657
|
+
# # The authorship information for the scientificName formatted according to the conventions of the applicable nomenclaturalCode.
|
658
|
+
# # @return [RDF::Vocabulary::Term]
|
659
|
+
# attr_reader :scientificNameAuthorship
|
660
|
+
#
|
661
|
+
# # An identifier for the nomenclatural (not taxonomic) details of a scientific name.
|
662
|
+
# # @return [RDF::Vocabulary::Term]
|
663
|
+
# attr_reader :scientificNameID
|
664
|
+
#
|
665
|
+
# # The sex of the biological individual(s) represented in the Occurrence. Recommended best practice is to use a controlled vocabulary.
|
666
|
+
# # @return [RDF::Vocabulary::Term]
|
667
|
+
# attr_reader :sex
|
668
|
+
#
|
669
|
+
# # The name of the first or species epithet of the scientificName.
|
670
|
+
# # @return [RDF::Vocabulary::Term]
|
671
|
+
# attr_reader :specificEpithet
|
672
|
+
#
|
673
|
+
# # The earliest 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).
|
674
|
+
# # @return [RDF::Vocabulary::Term]
|
675
|
+
# attr_reader :startDayOfYear
|
676
|
+
#
|
677
|
+
# # The name of the next smaller administrative region than country (state, province, canton, department, region, etc.) in which the Location occurs.
|
678
|
+
# # @return [RDF::Vocabulary::Term]
|
679
|
+
# attr_reader :stateProvince
|
680
|
+
#
|
681
|
+
# # The full scientific name of the subgenus in which the taxon is classified. Values should include the genus to avoid homonym confusion.
|
682
|
+
# # @return [RDF::Vocabulary::Term]
|
683
|
+
# attr_reader :subgenus
|
684
|
+
#
|
685
|
+
# # An identifier for the taxonomic concept to which the record refers - not for the nomenclatural details of a taxon.
|
686
|
+
# # @return [RDF::Vocabulary::Term]
|
687
|
+
# attr_reader :taxonConceptID
|
688
|
+
#
|
689
|
+
# # An identifier for the set of taxon information (data associated with the Taxon class). May be a global unique identifier or an identifier specific to the data set.
|
690
|
+
# # @return [RDF::Vocabulary::Term]
|
691
|
+
# attr_reader :taxonID
|
692
|
+
#
|
693
|
+
# # The taxonomic rank of the most specific name in the scientificName. Recommended best practice is to use a controlled vocabulary.
|
694
|
+
# # @return [RDF::Vocabulary::Term]
|
695
|
+
# attr_reader :taxonRank
|
696
|
+
#
|
697
|
+
# # Comments or notes about the taxon or name.
|
698
|
+
# # @return [RDF::Vocabulary::Term]
|
699
|
+
# attr_reader :taxonRemarks
|
700
|
+
#
|
701
|
+
# # The status of the use of the scientificName as a label for a taxon. Requires taxonomic opinion to define the scope of a taxon. Rules of priority then are used to define the taxonomic status of the nomenclature contained in that scope, combined with the experts opinion. It must be linked to a specific taxonomic reference that defines the concept. Recommended best practice is to use a controlled vocabulary.
|
702
|
+
# # @return [RDF::Vocabulary::Term]
|
703
|
+
# attr_reader :taxonomicStatus
|
704
|
+
#
|
705
|
+
# # A list (concatenated and separated) of nomenclatural types (type status, typified scientific name, publication) applied to the subject.
|
706
|
+
# # @return [RDF::Vocabulary::Term]
|
707
|
+
# attr_reader :typeStatus
|
708
|
+
#
|
709
|
+
# # The spatial coordinate system for the verbatimLatitude and verbatimLongitude or the verbatimCoordinates of the Location. Recommended best practice is to use a controlled vocabulary.
|
710
|
+
# # @return [RDF::Vocabulary::Term]
|
711
|
+
# attr_reader :verbatimCoordinateSystem
|
712
|
+
#
|
713
|
+
# # The verbatim original spatial coordinates of the Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in verbatimSRS and the coordinate system should be stored in verbatimCoordinateSystem.
|
714
|
+
# # @return [RDF::Vocabulary::Term]
|
715
|
+
# attr_reader :verbatimCoordinates
|
716
|
+
#
|
717
|
+
# # The original description of the depth below the local surface.
|
718
|
+
# # @return [RDF::Vocabulary::Term]
|
719
|
+
# attr_reader :verbatimDepth
|
720
|
+
#
|
721
|
+
# # The original description of the elevation (altitude, usually above sea level) of the Location.
|
722
|
+
# # @return [RDF::Vocabulary::Term]
|
723
|
+
# attr_reader :verbatimElevation
|
724
|
+
#
|
725
|
+
# # The verbatim original representation of the date and time information for an Event.
|
726
|
+
# # @return [RDF::Vocabulary::Term]
|
727
|
+
# attr_reader :verbatimEventDate
|
728
|
+
#
|
729
|
+
# # The verbatim original latitude of the Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in verbatimSRS and the coordinate system should be stored in verbatimCoordinateSystem.
|
730
|
+
# # @return [RDF::Vocabulary::Term]
|
731
|
+
# attr_reader :verbatimLatitude
|
732
|
+
#
|
733
|
+
# # The original textual description of the place.
|
734
|
+
# # @return [RDF::Vocabulary::Term]
|
735
|
+
# attr_reader :verbatimLocality
|
736
|
+
#
|
737
|
+
# # The verbatim original longitude of the Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in verbatimSRS and the coordinate system should be stored in verbatimCoordinateSystem.
|
738
|
+
# # @return [RDF::Vocabulary::Term]
|
739
|
+
# attr_reader :verbatimLongitude
|
740
|
+
#
|
741
|
+
# # The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which coordinates given in verbatimLatitude and verbatimLongitude, or verbatimCoordinates are based. Recommended best practice is use the EPSG code as a controlled vocabulary to provide an SRS, if known. Otherwise use a controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value "unknown".
|
742
|
+
# # @return [RDF::Vocabulary::Term]
|
743
|
+
# attr_reader :verbatimSRS
|
744
|
+
#
|
745
|
+
# # The taxonomic rank of the most specific name in the scientificName as it appears in the original record.
|
746
|
+
# # @return [RDF::Vocabulary::Term]
|
747
|
+
# attr_reader :verbatimTaxonRank
|
748
|
+
#
|
749
|
+
# # A common or vernacular name.
|
750
|
+
# # @return [RDF::Vocabulary::Term]
|
751
|
+
# attr_reader :vernacularName
|
752
|
+
#
|
753
|
+
# # The name of the water body in which the Location occurs. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.
|
754
|
+
# # @return [RDF::Vocabulary::Term]
|
755
|
+
# attr_reader :waterBody
|
756
|
+
#
|
757
|
+
# # The four-digit year in which the Event occurred, according to the Common Era Calendar.
|
758
|
+
# # @return [RDF::Vocabulary::Term]
|
759
|
+
# attr_reader :year
|
760
|
+
#
|
9
761
|
# end
|
10
|
-
|
762
|
+
DWC = Class.new(RDF::Vocabulary("http://rs.tdwg.org/dwc/terms/")) do
|
11
763
|
|
12
764
|
# Ontology definition
|
13
765
|
ontology :"http://rs.tdwg.org/dwc/terms/",
|
14
|
-
comment:
|
766
|
+
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".freeze,
|
15
767
|
"dc:modified": "2014-12-05".freeze,
|
16
768
|
"dc:publisher": "Biodiversity Information Standards (TDWG)".freeze,
|
17
769
|
"dc:title": "Darwin Core Recommended Terms".freeze
|
18
770
|
|
19
771
|
# Class definitions
|
20
772
|
term :Event,
|
21
|
-
comment:
|
773
|
+
comment: "An action that occurs at some location during some time.".freeze,
|
22
774
|
"dc:description": "Examples: A specimen collection process. A machine observation.".freeze,
|
23
775
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#Event-2014-10-23".freeze,
|
24
776
|
"dc:issued": "2008-11-19".freeze,
|
@@ -31,7 +783,7 @@ module RDF::Vocab
|
|
31
783
|
label: "Event".freeze,
|
32
784
|
type: "rdfs:Class".freeze
|
33
785
|
term :FossilSpecimen,
|
34
|
-
comment:
|
786
|
+
comment: "A preserved specimen that is a fossil.".freeze,
|
35
787
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#FossilSpecimen-2014-10-23".freeze,
|
36
788
|
"dc:issued": "2014-10-23".freeze,
|
37
789
|
"dc:modified": "2014-10-23".freeze,
|
@@ -43,7 +795,7 @@ module RDF::Vocab
|
|
43
795
|
label: "Fossil Specimen".freeze,
|
44
796
|
type: "rdfs:Class".freeze
|
45
797
|
term :GeologicalContext,
|
46
|
-
comment:
|
798
|
+
comment: "Geological information, such as stratigraphy, that qualifies a region or place.".freeze,
|
47
799
|
"dc:description": "Example: A lithostratigraphic layer.".freeze,
|
48
800
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#GeologicalContext-2014-10-23".freeze,
|
49
801
|
"dc:issued": "2009-07-06".freeze,
|
@@ -56,7 +808,7 @@ module RDF::Vocab
|
|
56
808
|
label: "Geological Context".freeze,
|
57
809
|
type: "rdfs:Class".freeze
|
58
810
|
term :HumanObservation,
|
59
|
-
comment:
|
811
|
+
comment: "An output of a human observation process.".freeze,
|
60
812
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#HumanObservation-2014-10-23".freeze,
|
61
813
|
"dc:issued": "2014-10-23".freeze,
|
62
814
|
"dc:modified": "2014-10-23".freeze,
|
@@ -68,7 +820,7 @@ module RDF::Vocab
|
|
68
820
|
label: "Human Observation".freeze,
|
69
821
|
type: "rdfs:Class".freeze
|
70
822
|
term :Identification,
|
71
|
-
comment:
|
823
|
+
comment: "A taxonomic determination (e.g., the assignment to a taxon).".freeze,
|
72
824
|
"dc:description": "Example: A subspecies determination of an organism.".freeze,
|
73
825
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#Identification-2014-10-23".freeze,
|
74
826
|
"dc:issued": "2008-11-19".freeze,
|
@@ -81,7 +833,7 @@ module RDF::Vocab
|
|
81
833
|
label: "Identification".freeze,
|
82
834
|
type: "rdfs:Class".freeze
|
83
835
|
term :LivingSpecimen,
|
84
|
-
comment:
|
836
|
+
comment: "A specimen that is alive.".freeze,
|
85
837
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#LivingSpecimen-2014-10-23".freeze,
|
86
838
|
"dc:issued": "2014-10-23".freeze,
|
87
839
|
"dc:modified": "2014-10-23".freeze,
|
@@ -93,7 +845,7 @@ module RDF::Vocab
|
|
93
845
|
label: "Living Specimen".freeze,
|
94
846
|
type: "rdfs:Class".freeze
|
95
847
|
term :MachineObservation,
|
96
|
-
comment:
|
848
|
+
comment: "An output of a machine observation process.".freeze,
|
97
849
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#MachineObservation-2014-10-23".freeze,
|
98
850
|
"dc:issued": "2014-10-23".freeze,
|
99
851
|
"dc:modified": "2014-10-23".freeze,
|
@@ -105,7 +857,7 @@ module RDF::Vocab
|
|
105
857
|
label: "Machine Observation".freeze,
|
106
858
|
type: "rdfs:Class".freeze
|
107
859
|
term :MaterialSample,
|
108
|
-
comment:
|
860
|
+
comment: "A physical results of a sampling (or subsampling) event. In biological collections, the material sample is typically collected, and either preserved or destructively processed.".freeze,
|
109
861
|
"dc:description": "Examples: A whole organism preserved in a collection. A part of an organism isolated for some purpose. A soil sample. A marine microbial sample.".freeze,
|
110
862
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#MaterialSample-2014-10-23".freeze,
|
111
863
|
"dc:issued": "2013-03-28".freeze,
|
@@ -118,7 +870,7 @@ module RDF::Vocab
|
|
118
870
|
label: "Material Sample".freeze,
|
119
871
|
type: "rdfs:Class".freeze
|
120
872
|
term :MeasurementOrFact,
|
121
|
-
comment:
|
873
|
+
comment: "A measurement of or fact about an rdfs:Resource (http://www.w3.org/2000/01/rdf-schema#Resource).".freeze,
|
122
874
|
"dc:description": "Resources can be thought of as identifiable records or instances of classes and may include, but need not be limited to Occurrences, Organisms, MaterialSamples, Events, Locations, GeologicalContexts, Identifications, or Taxa. Examples: The weight of an organism in grams. The number of placental scars.".freeze,
|
123
875
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#MeasurementOrFact-2014-10-23".freeze,
|
124
876
|
"dc:issued": "2009-04-24".freeze,
|
@@ -131,7 +883,7 @@ module RDF::Vocab
|
|
131
883
|
label: "Measurement or Fact".freeze,
|
132
884
|
type: "rdfs:Class".freeze
|
133
885
|
term :Occurrence,
|
134
|
-
comment:
|
886
|
+
comment: "An existence of an Organism (sensu http://rs.tdwg.org/dwc/terms/Organism) at a particular place at a particular time.".freeze,
|
135
887
|
"dc:description": "Examples: A wolf pack on the shore of Kluane Lake in 1988. A virus in a plant leaf in a the New York Botanical Garden at 15:29 on 2014-10-23. A fungus in Central Park in the summer of 1929.".freeze,
|
136
888
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#Occurrence-2014-10-23".freeze,
|
137
889
|
"dc:issued": "2008-11-19".freeze,
|
@@ -144,7 +896,7 @@ module RDF::Vocab
|
|
144
896
|
label: "Occurrence".freeze,
|
145
897
|
type: "rdfs:Class".freeze
|
146
898
|
term :Organism,
|
147
|
-
comment:
|
899
|
+
comment: "A particular organism or defined group of organisms considered to be taxonomically homogeneous.".freeze,
|
148
900
|
"dc:description": "Instances of the Organism class are intended to facilitate linking of one or more Identification instances to one or more Occurrence instances. Therefore, things that are typically assigned scientific names (such as viruses, hybrids, and lichens) and aggregates whose occurrences are typically recorded (such as packs, clones, and colonies) are included in the scope of this class.".freeze,
|
149
901
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#Organism-2014-10-23".freeze,
|
150
902
|
"dc:issued": "2014-10-23".freeze,
|
@@ -156,7 +908,7 @@ module RDF::Vocab
|
|
156
908
|
label: "Organism".freeze,
|
157
909
|
type: "rdfs:Class".freeze
|
158
910
|
term :PreservedSpecimen,
|
159
|
-
comment:
|
911
|
+
comment: "A specimen that has been preserved.".freeze,
|
160
912
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#PreservedSpecimen-2014-10-23".freeze,
|
161
913
|
"dc:issued": "2014-10-23".freeze,
|
162
914
|
"dc:modified": "2014-10-23".freeze,
|
@@ -168,7 +920,7 @@ module RDF::Vocab
|
|
168
920
|
label: "Preserved Specimen".freeze,
|
169
921
|
type: "rdfs:Class".freeze
|
170
922
|
term :ResourceRelationship,
|
171
|
-
comment:
|
923
|
+
comment: "A relationship of one rdfs:Resource (http://www.w3.org/2000/01/rdf-schema#Resource) to another.".freeze,
|
172
924
|
"dc:description": "Resources can be thought of as identifiable records or instances of classes and may include, but need not be limited to Occurrences, Organisms, MaterialSamples, Events, Locations, GeologicalContexts, Identifications, or Taxa. Example: An instance of an Organism is the mother of another instance of an Organism.".freeze,
|
173
925
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#ResourceRelationship-2014-10-23".freeze,
|
174
926
|
"dc:issued": "2008-11-19".freeze,
|
@@ -181,7 +933,7 @@ module RDF::Vocab
|
|
181
933
|
label: "Resource Relationship".freeze,
|
182
934
|
type: "rdfs:Class".freeze
|
183
935
|
term :Taxon,
|
184
|
-
comment:
|
936
|
+
comment: "A group of organisms (sensu http://purl.obolibrary.org/obo/OBI_0100026) considered by taxonomists to form a homogeneous unit.".freeze,
|
185
937
|
"dc:description": "Example: The genus Truncorotaloides as published by Brönnimann et al. in 1953 in the Journal of Paleontology Vol. 27(6) p. 817-820.".freeze,
|
186
938
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#Taxon-2014-10-23".freeze,
|
187
939
|
"dc:issued": "2008-11-19".freeze,
|
@@ -196,7 +948,7 @@ module RDF::Vocab
|
|
196
948
|
|
197
949
|
# Property definitions
|
198
950
|
property :acceptedNameUsage,
|
199
|
-
comment:
|
951
|
+
comment: "The full name, with authorship and date information if known, of the currently valid (zoological) or accepted (botanical) taxon.".freeze,
|
200
952
|
"dc:description": "Example: \"Tamias minimus\" valid name for \"Eutamias minimus\"".freeze,
|
201
953
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#acceptedNameUsage-2009-09-21".freeze,
|
202
954
|
"dc:issued": "2008-11-19".freeze,
|
@@ -209,7 +961,7 @@ module RDF::Vocab
|
|
209
961
|
label: "Accepted Name Usage".freeze,
|
210
962
|
type: "rdf:Property".freeze
|
211
963
|
property :acceptedNameUsageID,
|
212
|
-
comment:
|
964
|
+
comment: "An identifier for the name usage (documented meaning of the name according to a source) of the currently valid (zoological) or accepted (botanical) taxon.".freeze,
|
213
965
|
"dc:description": "Example: \"8fa58e08-08de-4ac1-b69c-1235340b7001\"".freeze,
|
214
966
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#acceptedNameUsageID-2009-09-21".freeze,
|
215
967
|
"dc:issued": "2009-01-21".freeze,
|
@@ -223,7 +975,7 @@ module RDF::Vocab
|
|
223
975
|
subPropertyOf: "dc:identifier".freeze,
|
224
976
|
type: "rdf:Property".freeze
|
225
977
|
property :accordingTo,
|
226
|
-
comment:
|
978
|
+
comment: "Abstract term to attribute information to a source.".freeze,
|
227
979
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#accordingTo-2009-01-21".freeze,
|
228
980
|
"dc:issued": "2009-01-21".freeze,
|
229
981
|
"dc:modified": "2009-01-21".freeze,
|
@@ -233,7 +985,7 @@ module RDF::Vocab
|
|
233
985
|
label: "According To".freeze,
|
234
986
|
type: "rdf:Property".freeze
|
235
987
|
property :associatedMedia,
|
236
|
-
comment:
|
988
|
+
comment: "A list (concatenated and separated) of identifiers (publication, global unique identifier, URI) of media associated with the Occurrence.".freeze,
|
237
989
|
"dc:description": "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\".".freeze,
|
238
990
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#associatedMedia-2014-10-23".freeze,
|
239
991
|
"dc:issued": "2008-11-19".freeze,
|
@@ -247,7 +999,7 @@ module RDF::Vocab
|
|
247
999
|
label: "Associated Media".freeze,
|
248
1000
|
type: "rdf:Property".freeze
|
249
1001
|
property :associatedOccurrences,
|
250
|
-
comment:
|
1002
|
+
comment: "A list (concatenated and separated) of identifiers of other Occurrence records and their associations to this Occurrence.".freeze,
|
251
1003
|
"dc:description": "The recommended best practice is to separate the values with a vertical bar (' | ').".freeze,
|
252
1004
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#associatedOccurrences-2014-10-23".freeze,
|
253
1005
|
"dc:issued": "2008-11-19".freeze,
|
@@ -261,7 +1013,7 @@ module RDF::Vocab
|
|
261
1013
|
label: "Associated Occurrences".freeze,
|
262
1014
|
type: "rdf:Property".freeze
|
263
1015
|
property :associatedOrganisms,
|
264
|
-
comment:
|
1016
|
+
comment: "A list (concatenated and separated) of identifiers of other Organisms and their associations to this Organism.".freeze,
|
265
1017
|
"dc:description": "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\"".freeze,
|
266
1018
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#associatedOrganisms-2014-10-23".freeze,
|
267
1019
|
"dc:issued": "2014-10-23".freeze,
|
@@ -274,7 +1026,7 @@ module RDF::Vocab
|
|
274
1026
|
label: "Associated Organisms".freeze,
|
275
1027
|
type: "rdf:Property".freeze
|
276
1028
|
property :associatedReferences,
|
277
|
-
comment:
|
1029
|
+
comment: "A list (concatenated and separated) of identifiers (publication, bibliographic reference, global unique identifier, URI) of literature associated with the Occurrence.".freeze,
|
278
1030
|
"dc:description": "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.\".".freeze,
|
279
1031
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#associatedReferences-2014-10-23".freeze,
|
280
1032
|
"dc:issued": "2008-11-19".freeze,
|
@@ -288,7 +1040,7 @@ module RDF::Vocab
|
|
288
1040
|
label: "Associated References".freeze,
|
289
1041
|
type: "rdf:Property".freeze
|
290
1042
|
property :associatedSequences,
|
291
|
-
comment:
|
1043
|
+
comment: "A list (concatenated and separated) of identifiers (publication, global unique identifier, URI) of genetic sequence information associated with the Occurrence.".freeze,
|
292
1044
|
"dc:description": "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\".".freeze,
|
293
1045
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#associatedSequences-2014-10-23".freeze,
|
294
1046
|
"dc:issued": "2008-11-19".freeze,
|
@@ -302,7 +1054,7 @@ module RDF::Vocab
|
|
302
1054
|
label: "Associated Sequences".freeze,
|
303
1055
|
type: "rdf:Property".freeze
|
304
1056
|
property :associatedTaxa,
|
305
|
-
comment:
|
1057
|
+
comment: "A list (concatenated and separated) of identifiers or names of taxa and their associations with the Occurrence.".freeze,
|
306
1058
|
"dc:description": "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\".".freeze,
|
307
1059
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#associatedTaxa-2014-10-23".freeze,
|
308
1060
|
"dc:issued": "2008-11-19".freeze,
|
@@ -316,7 +1068,7 @@ module RDF::Vocab
|
|
316
1068
|
label: "Associated Taxa".freeze,
|
317
1069
|
type: "rdf:Property".freeze
|
318
1070
|
property :basisOfRecord,
|
319
|
-
comment:
|
1071
|
+
comment: "The specific nature of the data record.".freeze,
|
320
1072
|
"dc:description": "Recommended best practice is to use a controlled vocabulary such as the list of Darwin Core classes. Examples: \"PreservedSpecimen\", \"FossilSpecimen\", \"LivingSpecimen\", \"HumanObservation\", \"MachineObservation\"".freeze,
|
321
1073
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#basisOfRecord-2014-10-23".freeze,
|
322
1074
|
"dc:issued": "2008-11-19".freeze,
|
@@ -330,7 +1082,7 @@ module RDF::Vocab
|
|
330
1082
|
label: "Basis of Record".freeze,
|
331
1083
|
type: "rdf:Property".freeze
|
332
1084
|
property :bed,
|
333
|
-
comment:
|
1085
|
+
comment: "The full name of the lithostratigraphic bed from which the cataloged item was collected.".freeze,
|
334
1086
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#bed-2009-04-24".freeze,
|
335
1087
|
"dc:issued": "2009-04-24".freeze,
|
336
1088
|
"dc:modified": "2009-07-06".freeze,
|
@@ -342,7 +1094,7 @@ module RDF::Vocab
|
|
342
1094
|
label: "Bed".freeze,
|
343
1095
|
type: "rdf:Property".freeze
|
344
1096
|
property :behavior,
|
345
|
-
comment:
|
1097
|
+
comment: "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.".freeze,
|
346
1098
|
"dc:description": "Examples: \"roosting\", \"foraging\", \"running\"".freeze,
|
347
1099
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#behavior-2009-04-24".freeze,
|
348
1100
|
"dc:issued": "2009-03-06".freeze,
|
@@ -354,7 +1106,7 @@ module RDF::Vocab
|
|
354
1106
|
label: "Behavior".freeze,
|
355
1107
|
type: "rdf:Property".freeze
|
356
1108
|
property :catalogNumber,
|
357
|
-
comment:
|
1109
|
+
comment: "An identifier (preferably unique) for the record within the data set or collection.".freeze,
|
358
1110
|
"dc:description": "Examples: \"2008.1334\", \"145732a\", \"145732\"".freeze,
|
359
1111
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#catalogNumber-2009-04-24".freeze,
|
360
1112
|
"dc:issued": "2008-11-19".freeze,
|
@@ -367,7 +1119,7 @@ module RDF::Vocab
|
|
367
1119
|
label: "Catalog Number".freeze,
|
368
1120
|
type: "rdf:Property".freeze
|
369
1121
|
property :class,
|
370
|
-
comment:
|
1122
|
+
comment: "The full scientific name of the class in which the taxon is classified.".freeze,
|
371
1123
|
"dc:description": "Examples: \"Mammalia\", \"Hepaticopsida\"".freeze,
|
372
1124
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#class-2009-08-24".freeze,
|
373
1125
|
"dc:issued": "2008-11-19".freeze,
|
@@ -380,7 +1132,7 @@ module RDF::Vocab
|
|
380
1132
|
label: "Class".freeze,
|
381
1133
|
type: "rdf:Property".freeze
|
382
1134
|
property :collectionCode,
|
383
|
-
comment:
|
1135
|
+
comment: "The name, acronym, coden, or initialism identifying the collection or data set from which the record was derived.".freeze,
|
384
1136
|
"dc:description": "Examples: \"Mammals\", \"Hildebrandt\", \"eBird\"".freeze,
|
385
1137
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#collectionCode-2009-09-11".freeze,
|
386
1138
|
"dc:issued": "2008-11-19".freeze,
|
@@ -393,7 +1145,7 @@ module RDF::Vocab
|
|
393
1145
|
label: "Collection Code".freeze,
|
394
1146
|
type: "rdf:Property".freeze
|
395
1147
|
property :collectionID,
|
396
|
-
comment:
|
1148
|
+
comment: "An identifier for the collection or dataset from which the record was derived.".freeze,
|
397
1149
|
"dc:description": "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\".".freeze,
|
398
1150
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#collectionID-2009-09-11".freeze,
|
399
1151
|
"dc:issued": "2008-11-19".freeze,
|
@@ -405,7 +1157,7 @@ module RDF::Vocab
|
|
405
1157
|
label: "Collection ID".freeze,
|
406
1158
|
type: "rdf:Property".freeze
|
407
1159
|
property :continent,
|
408
|
-
comment:
|
1160
|
+
comment: "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.".freeze,
|
409
1161
|
"dc:description": "Examples: \"Africa\", \"Antarctica\", \"Asia\", \"Europe\", \"North America\", \"Oceania\", \"South America\"".freeze,
|
410
1162
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#continent-2009-04-24".freeze,
|
411
1163
|
"dc:issued": "2008-11-19".freeze,
|
@@ -418,7 +1170,7 @@ module RDF::Vocab
|
|
418
1170
|
label: "Continent".freeze,
|
419
1171
|
type: "rdf:Property".freeze
|
420
1172
|
property :coordinatePrecision,
|
421
|
-
comment:
|
1173
|
+
comment: "A decimal representation of the precision of the coordinates given in the decimalLatitude and decimalLongitude.".freeze,
|
422
1174
|
"dc:description": "Examples: \"0.00001\" (normal GPS limit for decimal degrees), \"0.000278\" (nearest second), \"0.01667\" (nearest minute), \"1.0\" (nearest degree)".freeze,
|
423
1175
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#coordinatePrecision-2009-04-24".freeze,
|
424
1176
|
"dc:issued": "2008-11-19".freeze,
|
@@ -431,7 +1183,7 @@ module RDF::Vocab
|
|
431
1183
|
label: "Coordinate Precision".freeze,
|
432
1184
|
type: "rdf:Property".freeze
|
433
1185
|
property :coordinateUncertaintyInMeters,
|
434
|
-
comment:
|
1186
|
+
comment: "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.".freeze,
|
435
1187
|
"dc:description": "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).".freeze,
|
436
1188
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#coordinateUncertaintyInMeters-2009-04-24".freeze,
|
437
1189
|
"dc:issued": "2008-11-19".freeze,
|
@@ -444,7 +1196,7 @@ module RDF::Vocab
|
|
444
1196
|
label: "Coordinate Uncertainty In Meters".freeze,
|
445
1197
|
type: "rdf:Property".freeze
|
446
1198
|
property :country,
|
447
|
-
comment:
|
1199
|
+
comment: "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.".freeze,
|
448
1200
|
"dc:description": "Examples: \"Denmark\", \"Colombia\", \"España\"".freeze,
|
449
1201
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#country-2009-04-24".freeze,
|
450
1202
|
"dc:issued": "2008-11-19".freeze,
|
@@ -457,7 +1209,7 @@ module RDF::Vocab
|
|
457
1209
|
label: "Country".freeze,
|
458
1210
|
type: "rdf:Property".freeze
|
459
1211
|
property :countryCode,
|
460
|
-
comment:
|
1212
|
+
comment: "The standard code for the country in which the Location occurs. Recommended best practice is to use ISO 3166-1-alpha-2 country codes.".freeze,
|
461
1213
|
"dc:description": "Examples: \"AR\" for Argentina, \"SV\" for El Salvador".freeze,
|
462
1214
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#countryCode-2009-04-24".freeze,
|
463
1215
|
"dc:issued": "2008-11-19".freeze,
|
@@ -469,7 +1221,7 @@ module RDF::Vocab
|
|
469
1221
|
label: "Country Code".freeze,
|
470
1222
|
type: "rdf:Property".freeze
|
471
1223
|
property :county,
|
472
|
-
comment:
|
1224
|
+
comment: "The full, unabbreviated name of the next smaller administrative region than stateProvince (county, shire, department, etc.) in which the Location occurs.".freeze,
|
473
1225
|
"dc:description": "Examples: \"Missoula\", \"Los Lagos\", \"Mataró\"".freeze,
|
474
1226
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#county-2009-04-24".freeze,
|
475
1227
|
"dc:issued": "2008-11-19".freeze,
|
@@ -482,7 +1234,7 @@ module RDF::Vocab
|
|
482
1234
|
label: "County".freeze,
|
483
1235
|
type: "rdf:Property".freeze
|
484
1236
|
property :dataGeneralizations,
|
485
|
-
comment:
|
1237
|
+
comment: "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.".freeze,
|
486
1238
|
"dc:description": "Example: \"Coordinates generalized from original GPS coordinates to the nearest half degree grid cell\"".freeze,
|
487
1239
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#dataGeneralizations-2009-04-24".freeze,
|
488
1240
|
"dc:issued": "2008-11-19".freeze,
|
@@ -495,7 +1247,7 @@ module RDF::Vocab
|
|
495
1247
|
label: "Data Generalizations".freeze,
|
496
1248
|
type: "rdf:Property".freeze
|
497
1249
|
property :datasetID,
|
498
|
-
comment:
|
1250
|
+
comment: "An identifier for the set of data. May be a global unique identifier or an identifier specific to a collection or institution.".freeze,
|
499
1251
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#datasetID-2009-09-11".freeze,
|
500
1252
|
"dc:issued": "2008-11-19".freeze,
|
501
1253
|
"dc:modified": "2009-09-11".freeze,
|
@@ -508,7 +1260,7 @@ module RDF::Vocab
|
|
508
1260
|
subPropertyOf: "dc:identifier".freeze,
|
509
1261
|
type: "rdf:Property".freeze
|
510
1262
|
property :datasetName,
|
511
|
-
comment:
|
1263
|
+
comment: "The name identifying the data set from which the record was derived.".freeze,
|
512
1264
|
"dc:description": "Examples: \"Grinnell Resurvey Mammals\", \"Lacey Ctenomys Recaptures\"".freeze,
|
513
1265
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#datasetName-2009-09-11".freeze,
|
514
1266
|
"dc:issued": "2009-09-11".freeze,
|
@@ -520,7 +1272,7 @@ module RDF::Vocab
|
|
520
1272
|
label: "Dataset Name".freeze,
|
521
1273
|
type: "rdf:Property".freeze
|
522
1274
|
property :dateIdentified,
|
523
|
-
comment:
|
1275
|
+
comment: "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).".freeze,
|
524
1276
|
"dc:description": "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.".freeze,
|
525
1277
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#dateIdentified-2009-08-24".freeze,
|
526
1278
|
"dc:issued": "2008-11-19".freeze,
|
@@ -534,7 +1286,7 @@ module RDF::Vocab
|
|
534
1286
|
subPropertyOf: "dc:date".freeze,
|
535
1287
|
type: "rdf:Property".freeze
|
536
1288
|
property :day,
|
537
|
-
comment:
|
1289
|
+
comment: "The integer day of the month on which the Event occurred.".freeze,
|
538
1290
|
"dc:description": "Examples: \"9\", \"28\"".freeze,
|
539
1291
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#day-2009-04-24".freeze,
|
540
1292
|
"dc:issued": "2008-11-19".freeze,
|
@@ -547,7 +1299,7 @@ module RDF::Vocab
|
|
547
1299
|
label: "Day".freeze,
|
548
1300
|
type: "rdf:Property".freeze
|
549
1301
|
property :decimalLatitude,
|
550
|
-
comment:
|
1302
|
+
comment: "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.".freeze,
|
551
1303
|
"dc:description": "Example: \"-41.0983423\"".freeze,
|
552
1304
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#decimalLatitude-2009-04-24".freeze,
|
553
1305
|
"dc:issued": "2008-11-19".freeze,
|
@@ -560,7 +1312,7 @@ module RDF::Vocab
|
|
560
1312
|
label: "Decimal Latitude".freeze,
|
561
1313
|
type: "rdf:Property".freeze
|
562
1314
|
property :decimalLongitude,
|
563
|
-
comment:
|
1315
|
+
comment: "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.".freeze,
|
564
1316
|
"dc:description": "Example: \"-121.1761111\"".freeze,
|
565
1317
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#decimalLongitude-2009-04-24".freeze,
|
566
1318
|
"dc:issued": "2008-11-19".freeze,
|
@@ -573,7 +1325,7 @@ module RDF::Vocab
|
|
573
1325
|
label: "Decimal Longitude".freeze,
|
574
1326
|
type: "rdf:Property".freeze
|
575
1327
|
property :disposition,
|
576
|
-
comment:
|
1328
|
+
comment: "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.".freeze,
|
577
1329
|
"dc:description": "Examples: \"in collection\", \"missing\", \"voucher elsewhere\", \"duplicates elsewhere\"".freeze,
|
578
1330
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#disposition-2009-04-24".freeze,
|
579
1331
|
"dc:issued": "2008-11-19".freeze,
|
@@ -586,7 +1338,7 @@ module RDF::Vocab
|
|
586
1338
|
label: "Disposition".freeze,
|
587
1339
|
type: "rdf:Property".freeze
|
588
1340
|
property :dynamicProperties,
|
589
|
-
comment:
|
1341
|
+
comment: "A list of additional measurements, facts, characteristics, or assertions about the record. Meant to provide a mechanism for structured content.".freeze,
|
590
1342
|
"dc:description": "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\"}\".".freeze,
|
591
1343
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#dynamicProperties-2014-10-23".freeze,
|
592
1344
|
"dc:issued": "2008-11-19".freeze,
|
@@ -600,7 +1352,7 @@ module RDF::Vocab
|
|
600
1352
|
label: "Dynamic Properties".freeze,
|
601
1353
|
type: "rdf:Property".freeze
|
602
1354
|
property :earliestAgeOrLowestStage,
|
603
|
-
comment:
|
1355
|
+
comment: "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.".freeze,
|
604
1356
|
"dc:description": "Examples: \"Atlantic\", \"Boreal\", \"Skullrockian\"".freeze,
|
605
1357
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#earliestAgeOrLowestStage-2009-04-24".freeze,
|
606
1358
|
"dc:issued": "2009-04-24".freeze,
|
@@ -613,7 +1365,7 @@ module RDF::Vocab
|
|
613
1365
|
label: "Earliest Age Or Lowest Stage".freeze,
|
614
1366
|
type: "rdf:Property".freeze
|
615
1367
|
property :earliestEonOrLowestEonothem,
|
616
|
-
comment:
|
1368
|
+
comment: "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.".freeze,
|
617
1369
|
"dc:description": "Examples: \"Phanerozoic\", \"Proterozoic\"".freeze,
|
618
1370
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#earliestEonOrLowestEonothem-2009-04-24".freeze,
|
619
1371
|
"dc:issued": "2009-04-24".freeze,
|
@@ -626,7 +1378,7 @@ module RDF::Vocab
|
|
626
1378
|
label: "Earliest Eon Or Lowest Eonothem".freeze,
|
627
1379
|
type: "rdf:Property".freeze
|
628
1380
|
property :earliestEpochOrLowestSeries,
|
629
|
-
comment:
|
1381
|
+
comment: "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.".freeze,
|
630
1382
|
"dc:description": "Examples: \"Holocene\", \"Pleistocene\", \"Ibexian Series\"".freeze,
|
631
1383
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#earliestEpochOrLowestSeries-2009-04-24".freeze,
|
632
1384
|
"dc:issued": "2009-04-24".freeze,
|
@@ -639,7 +1391,7 @@ module RDF::Vocab
|
|
639
1391
|
label: "Earliest Epoch Or Lowest Series".freeze,
|
640
1392
|
type: "rdf:Property".freeze
|
641
1393
|
property :earliestEraOrLowestErathem,
|
642
|
-
comment:
|
1394
|
+
comment: "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.".freeze,
|
643
1395
|
"dc:description": "Examples: \"Cenozoic\", \"Mesozoic\"".freeze,
|
644
1396
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#earliestEraOrLowestErathem-2009-04-24".freeze,
|
645
1397
|
"dc:issued": "2009-04-24".freeze,
|
@@ -652,7 +1404,7 @@ module RDF::Vocab
|
|
652
1404
|
label: "Earliest Era Or Lowest Erathem".freeze,
|
653
1405
|
type: "rdf:Property".freeze
|
654
1406
|
property :earliestPeriodOrLowestSystem,
|
655
|
-
comment:
|
1407
|
+
comment: "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.".freeze,
|
656
1408
|
"dc:description": "Examples: \"Neogene\", \"Tertiary\", \"Quaternary\"".freeze,
|
657
1409
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#earliestPeriodOrLowestSystem-2009-04-24".freeze,
|
658
1410
|
"dc:issued": "2009-04-24".freeze,
|
@@ -665,7 +1417,7 @@ module RDF::Vocab
|
|
665
1417
|
label: "Earliest Period Or Lowest System".freeze,
|
666
1418
|
type: "rdf:Property".freeze
|
667
1419
|
property :endDayOfYear,
|
668
|
-
comment:
|
1420
|
+
comment: "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).".freeze,
|
669
1421
|
"dc:description": "Examples: \"1\" (=1 Jan), \"366\" (=31 Dec), \"365\" (=30 Dec in a leap year, 31 Dec in a non-leap year)".freeze,
|
670
1422
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#endDayOfYear-2009-04-24".freeze,
|
671
1423
|
"dc:issued": "2008-11-19".freeze,
|
@@ -678,7 +1430,7 @@ module RDF::Vocab
|
|
678
1430
|
label: "End Day Of Year".freeze,
|
679
1431
|
type: "rdf:Property".freeze
|
680
1432
|
property :establishmentMeans,
|
681
|
-
comment:
|
1433
|
+
comment: "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.".freeze,
|
682
1434
|
"dc:description": "Examples: \"native\", \"introduced\", \"naturalised\", \"invasive\", \"managed\"".freeze,
|
683
1435
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#establishmentMeans-2009-04-24".freeze,
|
684
1436
|
"dc:issued": "2008-11-19".freeze,
|
@@ -690,7 +1442,7 @@ module RDF::Vocab
|
|
690
1442
|
label: "Establishment Means".freeze,
|
691
1443
|
type: "rdf:Property".freeze
|
692
1444
|
property :eventDate,
|
693
|
-
comment:
|
1445
|
+
comment: "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).".freeze,
|
694
1446
|
"dc:description": "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.".freeze,
|
695
1447
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#eventDate-2009-04-24".freeze,
|
696
1448
|
"dc:issued": "2009-04-24".freeze,
|
@@ -704,7 +1456,7 @@ module RDF::Vocab
|
|
704
1456
|
subPropertyOf: "dc:date".freeze,
|
705
1457
|
type: "rdf:Property".freeze
|
706
1458
|
property :eventID,
|
707
|
-
comment:
|
1459
|
+
comment: "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.".freeze,
|
708
1460
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#eventID-2009-04-24".freeze,
|
709
1461
|
"dc:issued": "2008-11-19".freeze,
|
710
1462
|
"dc:modified": "2009-04-24".freeze,
|
@@ -717,7 +1469,7 @@ module RDF::Vocab
|
|
717
1469
|
subPropertyOf: "dc:identifier".freeze,
|
718
1470
|
type: "rdf:Property".freeze
|
719
1471
|
property :eventRemarks,
|
720
|
-
comment:
|
1472
|
+
comment: "Comments or notes about the Event.".freeze,
|
721
1473
|
"dc:description": "Example: \"after the recent rains the river is nearly at flood stage\"".freeze,
|
722
1474
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#eventRemarks-2009-04-24".freeze,
|
723
1475
|
"dc:issued": "2009-01-18".freeze,
|
@@ -729,7 +1481,7 @@ module RDF::Vocab
|
|
729
1481
|
label: "Event Remarks".freeze,
|
730
1482
|
type: "rdf:Property".freeze
|
731
1483
|
property :eventTime,
|
732
|
-
comment:
|
1484
|
+
comment: "The time or interval during which an Event occurred. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).".freeze,
|
733
1485
|
"dc:description": "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.".freeze,
|
734
1486
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#eventTime-2009-04-24".freeze,
|
735
1487
|
"dc:issued": "2009-04-24".freeze,
|
@@ -742,7 +1494,7 @@ module RDF::Vocab
|
|
742
1494
|
label: "Event Time".freeze,
|
743
1495
|
type: "rdf:Property".freeze
|
744
1496
|
property :family,
|
745
|
-
comment:
|
1497
|
+
comment: "The full scientific name of the family in which the taxon is classified.".freeze,
|
746
1498
|
"dc:description": "Examples: \"Felidae\", \"Monocleaceae\"".freeze,
|
747
1499
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#family-2009-08-24".freeze,
|
748
1500
|
"dc:issued": "2008-11-19".freeze,
|
@@ -755,7 +1507,7 @@ module RDF::Vocab
|
|
755
1507
|
label: "Family".freeze,
|
756
1508
|
type: "rdf:Property".freeze
|
757
1509
|
property :fieldNotes,
|
758
|
-
comment:
|
1510
|
+
comment: "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.".freeze,
|
759
1511
|
"dc:description": "Example: \"notes available in Grinnell-Miller Library\"".freeze,
|
760
1512
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#fieldNotes-2009-04-24".freeze,
|
761
1513
|
"dc:issued": "2008-11-19".freeze,
|
@@ -768,7 +1520,7 @@ module RDF::Vocab
|
|
768
1520
|
label: "Field Notes".freeze,
|
769
1521
|
type: "rdf:Property".freeze
|
770
1522
|
property :fieldNumber,
|
771
|
-
comment:
|
1523
|
+
comment: "An identifier given to the event in the field. Often serves as a link between field notes and the Event.".freeze,
|
772
1524
|
"dc:description": "Example: \"RV Sol 87-03-08\"".freeze,
|
773
1525
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#fieldNumber-2009-04-24".freeze,
|
774
1526
|
"dc:issued": "2008-11-19".freeze,
|
@@ -781,7 +1533,7 @@ module RDF::Vocab
|
|
781
1533
|
label: "Field Number".freeze,
|
782
1534
|
type: "rdf:Property".freeze
|
783
1535
|
property :footprintSRS,
|
784
|
-
comment:
|
1536
|
+
comment: "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.".freeze,
|
785
1537
|
"dc:description": "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.".freeze,
|
786
1538
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#footprintSRS-2009-07-06".freeze,
|
787
1539
|
"dc:issued": "2009-07-06".freeze,
|
@@ -793,7 +1545,7 @@ module RDF::Vocab
|
|
793
1545
|
label: "Footprint SRS".freeze,
|
794
1546
|
type: "rdf:Property".freeze
|
795
1547
|
property :footprintSpatialFit,
|
796
|
-
comment:
|
1548
|
+
comment: "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.".freeze,
|
797
1549
|
"dc:description": "Detailed explanations with graphical examples can be found in the \"Guide to Best Practices for Georeferencing\", Chapman and Wieczorek, eds. 2006.".freeze,
|
798
1550
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#footprintSpatialFit-2009-04-24".freeze,
|
799
1551
|
"dc:issued": "2008-11-19".freeze,
|
@@ -806,7 +1558,7 @@ module RDF::Vocab
|
|
806
1558
|
label: "Footprint Spatial Fit".freeze,
|
807
1559
|
type: "rdf:Property".freeze
|
808
1560
|
property :footprintWKT,
|
809
|
-
comment:
|
1561
|
+
comment: "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.".freeze,
|
810
1562
|
"dc:description": "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))".freeze,
|
811
1563
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#footprintWKT-2009-04-24".freeze,
|
812
1564
|
"dc:issued": "2008-11-19".freeze,
|
@@ -819,7 +1571,7 @@ module RDF::Vocab
|
|
819
1571
|
label: "Footprint WKT".freeze,
|
820
1572
|
type: "rdf:Property".freeze
|
821
1573
|
property :formation,
|
822
|
-
comment:
|
1574
|
+
comment: "The full name of the lithostratigraphic formation from which the cataloged item was collected.".freeze,
|
823
1575
|
"dc:description": "Examples: \"Notch Peak Fromation\", \"House Limestone\", \"Fillmore Formation\"".freeze,
|
824
1576
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#formation-2009-04-24".freeze,
|
825
1577
|
"dc:issued": "2009-04-24".freeze,
|
@@ -832,7 +1584,7 @@ module RDF::Vocab
|
|
832
1584
|
label: "Formation".freeze,
|
833
1585
|
type: "rdf:Property".freeze
|
834
1586
|
property :genus,
|
835
|
-
comment:
|
1587
|
+
comment: "The full scientific name of the genus in which the taxon is classified.".freeze,
|
836
1588
|
"dc:description": "Examples: \"Puma\", \"Monoclea\"".freeze,
|
837
1589
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#genus-2009-08-24".freeze,
|
838
1590
|
"dc:issued": "2008-11-19".freeze,
|
@@ -845,7 +1597,7 @@ module RDF::Vocab
|
|
845
1597
|
label: "Genus".freeze,
|
846
1598
|
type: "rdf:Property".freeze
|
847
1599
|
property :geodeticDatum,
|
848
|
-
comment:
|
1600
|
+
comment: "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\".".freeze,
|
849
1601
|
"dc:description": "Examples: \"EPSG:4326\", \"WGS84\", \"NAD27\", \"Campo Inchauspe\", \"European 1950\", \"Clarke 1866\"".freeze,
|
850
1602
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#geodeticDatum-2009-04-24".freeze,
|
851
1603
|
"dc:issued": "2008-11-19".freeze,
|
@@ -858,7 +1610,7 @@ module RDF::Vocab
|
|
858
1610
|
label: "Geodetic Datum".freeze,
|
859
1611
|
type: "rdf:Property".freeze
|
860
1612
|
property :geologicalContextID,
|
861
|
-
comment:
|
1613
|
+
comment: "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.".freeze,
|
862
1614
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#geologicalContextID-2009-07-06".freeze,
|
863
1615
|
"dc:issued": "2009-07-06".freeze,
|
864
1616
|
"dc:modified": "2009-07-06".freeze,
|
@@ -870,7 +1622,7 @@ module RDF::Vocab
|
|
870
1622
|
subPropertyOf: "dc:identifier".freeze,
|
871
1623
|
type: "rdf:Property".freeze
|
872
1624
|
property :georeferenceProtocol,
|
873
|
-
comment:
|
1625
|
+
comment: "A description or reference to the methods used to determine the spatial footprint, coordinates, and uncertainties.".freeze,
|
874
1626
|
"dc:description": "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\"".freeze,
|
875
1627
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#georeferenceProtocol-2009-04-24".freeze,
|
876
1628
|
"dc:issued": "2008-11-19".freeze,
|
@@ -883,7 +1635,7 @@ module RDF::Vocab
|
|
883
1635
|
label: "Georeference Protocol".freeze,
|
884
1636
|
type: "rdf:Property".freeze
|
885
1637
|
property :georeferenceRemarks,
|
886
|
-
comment:
|
1638
|
+
comment: "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.".freeze,
|
887
1639
|
"dc:description": "Example: \"assumed distance by road (Hwy. 101)\"".freeze,
|
888
1640
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#georeferenceRemarks-2009-04-24".freeze,
|
889
1641
|
"dc:issued": "2008-11-19".freeze,
|
@@ -896,7 +1648,7 @@ module RDF::Vocab
|
|
896
1648
|
label: "Georeference Remarks".freeze,
|
897
1649
|
type: "rdf:Property".freeze
|
898
1650
|
property :georeferenceSources,
|
899
|
-
comment:
|
1651
|
+
comment: "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.".freeze,
|
900
1652
|
"dc:description": "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\".".freeze,
|
901
1653
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#georeferenceSources-2014-10-23".freeze,
|
902
1654
|
"dc:issued": "2008-11-19".freeze,
|
@@ -910,7 +1662,7 @@ module RDF::Vocab
|
|
910
1662
|
label: "Georeference Sources".freeze,
|
911
1663
|
type: "rdf:Property".freeze
|
912
1664
|
property :georeferenceVerificationStatus,
|
913
|
-
comment:
|
1665
|
+
comment: "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.".freeze,
|
914
1666
|
"dc:description": "Examples: \"requires verification\", \"verified by collector\", \"verified by curator\".".freeze,
|
915
1667
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#georeferenceVerificationStatus-2009-04-24".freeze,
|
916
1668
|
"dc:issued": "2008-11-19".freeze,
|
@@ -923,7 +1675,7 @@ module RDF::Vocab
|
|
923
1675
|
label: "Georeference Verification Status".freeze,
|
924
1676
|
type: "rdf:Property".freeze
|
925
1677
|
property :georeferencedBy,
|
926
|
-
comment:
|
1678
|
+
comment: "A list (concatenated and separated) of names of people, groups, or organizations who determined the georeference (spatial representation) for the Location.".freeze,
|
927
1679
|
"dc:description": "The recommended best practice is to separate the values with a vertical bar (' | '). Examples: \"Brad Millen (ROM)\", \"Kristina Yamamoto (MVZ) | Janet Fang (MVZ)\".".freeze,
|
928
1680
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#georeferencedBy-2014-10-23".freeze,
|
929
1681
|
"dc:issued": "2009-01-21".freeze,
|
@@ -938,7 +1690,7 @@ module RDF::Vocab
|
|
938
1690
|
subPropertyOf: "dwc:accordingTo".freeze,
|
939
1691
|
type: "rdf:Property".freeze
|
940
1692
|
property :georeferencedDate,
|
941
|
-
comment:
|
1693
|
+
comment: "The date on which the Location was georeferenced. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).".freeze,
|
942
1694
|
"dc:description": "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.".freeze,
|
943
1695
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#georeferencedDate-2011-10-16".freeze,
|
944
1696
|
"dc:issued": "2011-10-16".freeze,
|
@@ -952,7 +1704,7 @@ module RDF::Vocab
|
|
952
1704
|
subPropertyOf: "dc:date".freeze,
|
953
1705
|
type: "rdf:Property".freeze
|
954
1706
|
property :group,
|
955
|
-
comment:
|
1707
|
+
comment: "The full name of the lithostratigraphic group from which the cataloged item was collected.".freeze,
|
956
1708
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#group-2009-04-24".freeze,
|
957
1709
|
"dc:issued": "2009-04-24".freeze,
|
958
1710
|
"dc:modified": "2009-07-06".freeze,
|
@@ -964,7 +1716,7 @@ module RDF::Vocab
|
|
964
1716
|
label: "Group".freeze,
|
965
1717
|
type: "rdf:Property".freeze
|
966
1718
|
property :habitat,
|
967
|
-
comment:
|
1719
|
+
comment: "A category or description of the habitat in which the Event occurred.".freeze,
|
968
1720
|
"dc:description": "Examples: \"oak savanna\", \"pre-cordilleran steppe\"".freeze,
|
969
1721
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#habitat-2009-04-24".freeze,
|
970
1722
|
"dc:issued": "2008-11-19".freeze,
|
@@ -976,7 +1728,7 @@ module RDF::Vocab
|
|
976
1728
|
label: "Habitat".freeze,
|
977
1729
|
type: "rdf:Property".freeze
|
978
1730
|
property :higherClassification,
|
979
|
-
comment:
|
1731
|
+
comment: "A list (concatenated and separated) of taxa names terminating at the rank immediately superior to the taxon referenced in the taxon record.".freeze,
|
980
1732
|
"dc:description": "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\".".freeze,
|
981
1733
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#higherClassification-2014-10-23".freeze,
|
982
1734
|
"dc:issued": "2008-11-19".freeze,
|
@@ -990,7 +1742,7 @@ module RDF::Vocab
|
|
990
1742
|
label: "Higher Classification".freeze,
|
991
1743
|
type: "rdf:Property".freeze
|
992
1744
|
property :higherGeography,
|
993
|
-
comment:
|
1745
|
+
comment: "A list (concatenated and separated) of geographic names less specific than the information captured in the locality term.".freeze,
|
994
1746
|
"dc:description": "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.".freeze,
|
995
1747
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#higherGeography-2014-10-23".freeze,
|
996
1748
|
"dc:issued": "2008-11-19".freeze,
|
@@ -1004,7 +1756,7 @@ module RDF::Vocab
|
|
1004
1756
|
label: "Higher Geography".freeze,
|
1005
1757
|
type: "rdf:Property".freeze
|
1006
1758
|
property :higherGeographyID,
|
1007
|
-
comment:
|
1759
|
+
comment: "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.".freeze,
|
1008
1760
|
"dc:description": "Example: \"TGN: 1002002\" for Prov. Tierra del Fuego, Argentina".freeze,
|
1009
1761
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#higherGeographyID-2009-04-24".freeze,
|
1010
1762
|
"dc:issued": "2009-01-21".freeze,
|
@@ -1017,7 +1769,7 @@ module RDF::Vocab
|
|
1017
1769
|
subPropertyOf: "dc:identifier".freeze,
|
1018
1770
|
type: "rdf:Property".freeze
|
1019
1771
|
property :highestBiostratigraphicZone,
|
1020
|
-
comment:
|
1772
|
+
comment: "The full name of the highest possible geological biostratigraphic zone of the stratigraphic horizon from which the cataloged item was collected.".freeze,
|
1021
1773
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#highestBiostratigraphicZone-2009-04-24".freeze,
|
1022
1774
|
"dc:issued": "2009-04-24".freeze,
|
1023
1775
|
"dc:modified": "2009-07-06".freeze,
|
@@ -1029,7 +1781,7 @@ module RDF::Vocab
|
|
1029
1781
|
label: "Highest Biostratigraphic Zone".freeze,
|
1030
1782
|
type: "rdf:Property".freeze
|
1031
1783
|
property :identificationID,
|
1032
|
-
comment:
|
1784
|
+
comment: "An identifier for the Identification (the body of information associated with the assignment of a scientific name). May be a global unique identifier or an identifier specific to the data set.".freeze,
|
1033
1785
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#identificationID-2009-04-24".freeze,
|
1034
1786
|
"dc:issued": "2008-11-19".freeze,
|
1035
1787
|
"dc:modified": "2009-04-24".freeze,
|
@@ -1041,7 +1793,7 @@ module RDF::Vocab
|
|
1041
1793
|
subPropertyOf: "dc:identifier".freeze,
|
1042
1794
|
type: "rdf:Property".freeze
|
1043
1795
|
property :identificationQualifier,
|
1044
|
-
comment:
|
1796
|
+
comment: "A brief phrase or a standard term (\"cf.\", \"aff.\") to express the determiner's doubts about the Identification.".freeze,
|
1045
1797
|
"dc:description": "Examples: 1) For the determination \"Quercus aff. agrifolia var. oxyadenia\", identificationQualifier would be \"aff. agrifolia var. oxyadenia\" with accompanying values \"Quercus\" in genus, \"agrifolia\" in specificEpithet, \"oxyadenia\" in infraspecificEpithet, and \"var.\" in rank. 2) For the determination \"Quercus agrifolia cf. var. oxyadenia\", identificationQualifier would be \"cf. var. oxyadenia \" with accompanying values \"Quercus\" in genus, \"agrifolia\" in specificEpithet, \"oxyadenia\" in infraspecificEpithet, and \"var.\" in rank.".freeze,
|
1046
1798
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#identificationQualifier-2009-04-24".freeze,
|
1047
1799
|
"dc:issued": "2008-11-19".freeze,
|
@@ -1054,7 +1806,7 @@ module RDF::Vocab
|
|
1054
1806
|
label: "Identification Qualifier".freeze,
|
1055
1807
|
type: "rdf:Property".freeze
|
1056
1808
|
property :identificationReferences,
|
1057
|
-
comment:
|
1809
|
+
comment: "A list (concatenated and separated) of references (publication, global unique identifier, URI) used in the Identification.".freeze,
|
1058
1810
|
"dc:description": "The recommended best practice is to separate the values with a vertical bar (' | '). Examples: \"Aves del Noroeste Patagonico. Christie et al. 2004.\", \"Stebbins, R. Field Guide to Western Reptiles and Amphibians. 3rd Edition. 2003. | Irschick, D.J. and Shaffer, H.B. (1997). ''The polytypic species revisited: Morphological differentiation among tiger salamanders (Ambystoma tigrinum) (Amphibia: Caudata).'' Herpetologica, 53(1), 30-49.\".".freeze,
|
1059
1811
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#identificationReferences-2014-10-23".freeze,
|
1060
1812
|
"dc:issued": "2008-11-19".freeze,
|
@@ -1068,7 +1820,7 @@ module RDF::Vocab
|
|
1068
1820
|
label: "Identification References".freeze,
|
1069
1821
|
type: "rdf:Property".freeze
|
1070
1822
|
property :identificationRemarks,
|
1071
|
-
comment:
|
1823
|
+
comment: "Comments or notes about the Identification.".freeze,
|
1072
1824
|
"dc:description": "Example: \"Distinguished between Anthus correndera and Anthus hellmayri based on the comparative lengths of the uñas.\"".freeze,
|
1073
1825
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#identificationRemarks-2009-04-24".freeze,
|
1074
1826
|
"dc:issued": "2008-11-19".freeze,
|
@@ -1080,7 +1832,7 @@ module RDF::Vocab
|
|
1080
1832
|
label: "Identification Remarks".freeze,
|
1081
1833
|
type: "rdf:Property".freeze
|
1082
1834
|
property :identificationVerificationStatus,
|
1083
|
-
comment:
|
1835
|
+
comment: "A categorical indicator of the extent to which the taxonomic identification has been verified to be correct. Recommended best practice is to use a controlled vocabulary such as that used in HISPID/ABCD.".freeze,
|
1084
1836
|
"dc:description": "Examples: \"0\", \"4\"".freeze,
|
1085
1837
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#identificationVerificationStatus-2011-10-16".freeze,
|
1086
1838
|
"dc:issued": "2011-10-16".freeze,
|
@@ -1093,7 +1845,7 @@ module RDF::Vocab
|
|
1093
1845
|
label: "Identification Verification Status".freeze,
|
1094
1846
|
type: "rdf:Property".freeze
|
1095
1847
|
property :identifiedBy,
|
1096
|
-
comment:
|
1848
|
+
comment: "A list (concatenated and separated) of names of people, groups, or organizations who assigned the Taxon to the subject.".freeze,
|
1097
1849
|
"dc:description": "The recommended best practice is to separate the values with a vertical bar (' | '). Examples: \"James L. Patton\", \"Theodore Pappenfuss | Robert Macey\".".freeze,
|
1098
1850
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#identifiedBy-2014-10-23".freeze,
|
1099
1851
|
"dc:issued": "2008-11-19".freeze,
|
@@ -1108,7 +1860,7 @@ module RDF::Vocab
|
|
1108
1860
|
subPropertyOf: "dwc:accordingTo".freeze,
|
1109
1861
|
type: "rdf:Property".freeze
|
1110
1862
|
property :individualCount,
|
1111
|
-
comment:
|
1863
|
+
comment: "The number of individuals represented present at the time of the Occurrence.".freeze,
|
1112
1864
|
"dc:description": "Examples: \"1\", \"25\"".freeze,
|
1113
1865
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#individualCount-2009-04-24".freeze,
|
1114
1866
|
"dc:issued": "2008-11-19".freeze,
|
@@ -1121,7 +1873,7 @@ module RDF::Vocab
|
|
1121
1873
|
label: "Individual Count".freeze,
|
1122
1874
|
type: "rdf:Property".freeze
|
1123
1875
|
property :informationWithheld,
|
1124
|
-
comment:
|
1876
|
+
comment: "Additional information that exists, but that has not been shared in the given record.".freeze,
|
1125
1877
|
"dc:description": "Examples: \"location information not given for endangered species\", \"collector identities withheld\", \"ask about tissue samples\"".freeze,
|
1126
1878
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#informationWithheld-2009-04-24".freeze,
|
1127
1879
|
"dc:issued": "2008-11-19".freeze,
|
@@ -1134,7 +1886,7 @@ module RDF::Vocab
|
|
1134
1886
|
label: "Information Withheld".freeze,
|
1135
1887
|
type: "rdf:Property".freeze
|
1136
1888
|
property :infraspecificEpithet,
|
1137
|
-
comment:
|
1889
|
+
comment: "The name of the lowest or terminal infraspecific epithet of the scientificName, excluding any rank designation.".freeze,
|
1138
1890
|
"dc:description": "Examples: \"concolor\", \"oxyadenia\", \"sayi\"".freeze,
|
1139
1891
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#infraspecificEpithet-2009-08-24".freeze,
|
1140
1892
|
"dc:issued": "2008-11-19".freeze,
|
@@ -1147,7 +1899,7 @@ module RDF::Vocab
|
|
1147
1899
|
label: "Infraspecific Epithet".freeze,
|
1148
1900
|
type: "rdf:Property".freeze
|
1149
1901
|
property :institutionCode,
|
1150
|
-
comment:
|
1902
|
+
comment: "The name (or acronym) in use by the institution having custody of the object(s) or information referred to in the record.".freeze,
|
1151
1903
|
"dc:description": "Examples: \"MVZ\", \"FMNH\", \"AKN-CLO\", \"University of California Museum of Paleontology (UCMP)\"".freeze,
|
1152
1904
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#institutionCode-2009-09-11".freeze,
|
1153
1905
|
"dc:issued": "2008-11-19".freeze,
|
@@ -1160,7 +1912,7 @@ module RDF::Vocab
|
|
1160
1912
|
label: "Institution Code".freeze,
|
1161
1913
|
type: "rdf:Property".freeze
|
1162
1914
|
property :institutionID,
|
1163
|
-
comment:
|
1915
|
+
comment: "An identifier for the institution having custody of the object(s) or information referred to in the record.".freeze,
|
1164
1916
|
"dc:description": "For physical specimens, the recommended best practice is to use an identifier from a collections registry such as the Global Registry of Biodiversity Repositories (http://grbio.org/). Examples: \"http://biocol.org/urn:lsid:biocol.org:col:34777\", \"http://grbio.org/cool/km06-gtbn\".".freeze,
|
1165
1917
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#institutionID-2009-09-11".freeze,
|
1166
1918
|
"dc:issued": "2009-09-11".freeze,
|
@@ -1172,7 +1924,7 @@ module RDF::Vocab
|
|
1172
1924
|
label: "Institution ID".freeze,
|
1173
1925
|
type: "rdf:Property".freeze
|
1174
1926
|
property :island,
|
1175
|
-
comment:
|
1927
|
+
comment: "The name of the island on or near which the Location occurs. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.".freeze,
|
1176
1928
|
"dc:description": "Examples: \"Isla Victoria\", \"Vancouver\", \"Viti Levu\", \"Zanzibar\"".freeze,
|
1177
1929
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#island-2009-04-24".freeze,
|
1178
1930
|
"dc:issued": "2008-11-19".freeze,
|
@@ -1185,7 +1937,7 @@ module RDF::Vocab
|
|
1185
1937
|
label: "Island".freeze,
|
1186
1938
|
type: "rdf:Property".freeze
|
1187
1939
|
property :islandGroup,
|
1188
|
-
comment:
|
1940
|
+
comment: "The name of the island group in which the Location occurs. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.".freeze,
|
1189
1941
|
"dc:description": "Examples: \"Alexander Archipelago\", \"Seychelles\"".freeze,
|
1190
1942
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#islandGroup-2009-04-24".freeze,
|
1191
1943
|
"dc:issued": "2008-11-19".freeze,
|
@@ -1198,7 +1950,7 @@ module RDF::Vocab
|
|
1198
1950
|
label: "Island Group".freeze,
|
1199
1951
|
type: "rdf:Property".freeze
|
1200
1952
|
property :kingdom,
|
1201
|
-
comment:
|
1953
|
+
comment: "The full scientific name of the kingdom in which the taxon is classified.".freeze,
|
1202
1954
|
"dc:description": "Examples: \"Animalia\", \"Plantae\"".freeze,
|
1203
1955
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#kingdom-2009-08-24".freeze,
|
1204
1956
|
"dc:issued": "2008-11-19".freeze,
|
@@ -1211,7 +1963,7 @@ module RDF::Vocab
|
|
1211
1963
|
label: "Kingdom".freeze,
|
1212
1964
|
type: "rdf:Property".freeze
|
1213
1965
|
property :latestAgeOrHighestStage,
|
1214
|
-
comment:
|
1966
|
+
comment: "The full name of the latest possible geochronologic age or highest chronostratigraphic stage attributable to the stratigraphic horizon from which the cataloged item was collected.".freeze,
|
1215
1967
|
"dc:description": "Examples: \"Atlantic\", \"Boreal\", \"Skullrockian\"".freeze,
|
1216
1968
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#latestAgeOrHighestStage-2009-04-24".freeze,
|
1217
1969
|
"dc:issued": "2009-04-24".freeze,
|
@@ -1224,7 +1976,7 @@ module RDF::Vocab
|
|
1224
1976
|
label: "Latest AgeOr Highest Stage".freeze,
|
1225
1977
|
type: "rdf:Property".freeze
|
1226
1978
|
property :latestEonOrHighestEonothem,
|
1227
|
-
comment:
|
1979
|
+
comment: "The full name of the latest possible geochronologic eon or highest chrono-stratigraphic eonothem or the informal name (\"Precambrian\") attributable to the stratigraphic horizon from which the cataloged item was collected.".freeze,
|
1228
1980
|
"dc:description": "Examples: \"Phanerozoic\", \"Proterozoic\"".freeze,
|
1229
1981
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#latestEonOrHighestEonothem-2009-04-24".freeze,
|
1230
1982
|
"dc:issued": "2009-04-24".freeze,
|
@@ -1237,7 +1989,7 @@ module RDF::Vocab
|
|
1237
1989
|
label: "Latest Eon Or Highest Eonothem".freeze,
|
1238
1990
|
type: "rdf:Property".freeze
|
1239
1991
|
property :latestEpochOrHighestSeries,
|
1240
|
-
comment:
|
1992
|
+
comment: "The full name of the latest possible geochronologic epoch or highest chronostratigraphic series attributable to the stratigraphic horizon from which the cataloged item was collected.".freeze,
|
1241
1993
|
"dc:description": "Examples: \"Holocene\", \"Pleistocene\", \"Ibexian Series\"".freeze,
|
1242
1994
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#latestEpochOrHighestSeries-2009-04-24".freeze,
|
1243
1995
|
"dc:issued": "2009-04-24".freeze,
|
@@ -1250,7 +2002,7 @@ module RDF::Vocab
|
|
1250
2002
|
label: "Latest Epoch Or Highest Series".freeze,
|
1251
2003
|
type: "rdf:Property".freeze
|
1252
2004
|
property :latestEraOrHighestErathem,
|
1253
|
-
comment:
|
2005
|
+
comment: "The full name of the latest possible geochronologic era or highest chronostratigraphic erathem attributable to the stratigraphic horizon from which the cataloged item was collected.".freeze,
|
1254
2006
|
"dc:description": "Examples: \"Cenozoic\", \"Mesozoic\"".freeze,
|
1255
2007
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#latestEraOrHighestErathem-2009-04-24".freeze,
|
1256
2008
|
"dc:issued": "2009-04-24".freeze,
|
@@ -1263,7 +2015,7 @@ module RDF::Vocab
|
|
1263
2015
|
label: "Latest Era Or Highest Erathem".freeze,
|
1264
2016
|
type: "rdf:Property".freeze
|
1265
2017
|
property :latestPeriodOrHighestSystem,
|
1266
|
-
comment:
|
2018
|
+
comment: "The full name of the latest possible geochronologic period or highest chronostratigraphic system attributable to the stratigraphic horizon from which the cataloged item was collected.".freeze,
|
1267
2019
|
"dc:description": "Examples: \"Neogene\", \"Tertiary\", \"Quaternary\"".freeze,
|
1268
2020
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#latestPeriodOrHighestSystem-2009-04-24".freeze,
|
1269
2021
|
"dc:issued": "2009-04-24".freeze,
|
@@ -1276,7 +2028,7 @@ module RDF::Vocab
|
|
1276
2028
|
label: "Latest Period Or Highest System".freeze,
|
1277
2029
|
type: "rdf:Property".freeze
|
1278
2030
|
property :lifeStage,
|
1279
|
-
comment:
|
2031
|
+
comment: "The age class or life stage of the biological individual(s) at the time the Occurrence was recorded. Recommended best practice is to use a controlled vocabulary.".freeze,
|
1280
2032
|
"dc:description": "Examples: \"egg\", \"eft\", \"juvenile\", \"adult\", \"2 adults 4 juveniles\"".freeze,
|
1281
2033
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#lifeStage-2009-04-24".freeze,
|
1282
2034
|
"dc:issued": "2008-11-19".freeze,
|
@@ -1289,7 +2041,7 @@ module RDF::Vocab
|
|
1289
2041
|
label: "Life Stage".freeze,
|
1290
2042
|
type: "rdf:Property".freeze
|
1291
2043
|
property :lithostratigraphicTerms,
|
1292
|
-
comment:
|
2044
|
+
comment: "The combination of all litho-stratigraphic names for the rock from which the cataloged item was collected.".freeze,
|
1293
2045
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#lithostratigraphicTerms-2009-04-24".freeze,
|
1294
2046
|
"dc:issued": "2009-04-24".freeze,
|
1295
2047
|
"dc:modified": "2009-07-06".freeze,
|
@@ -1301,7 +2053,7 @@ module RDF::Vocab
|
|
1301
2053
|
label: "Lithostratigraphic Terms".freeze,
|
1302
2054
|
type: "rdf:Property".freeze
|
1303
2055
|
property :locality,
|
1304
|
-
comment:
|
2056
|
+
comment: "The specific description of the place. Less specific geographic information can be provided in other geographic terms (higherGeography, continent, country, stateProvince, county, municipality, waterBody, island, islandGroup). This term may contain information modified from the original to correct perceived errors or standardize the description.".freeze,
|
1305
2057
|
"dc:description": "Example: \"Bariloche, 25 km NNE via Ruta Nacional 40 (=Ruta 237)\"".freeze,
|
1306
2058
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#locality-2009-04-24".freeze,
|
1307
2059
|
"dc:issued": "2008-11-19".freeze,
|
@@ -1314,7 +2066,7 @@ module RDF::Vocab
|
|
1314
2066
|
label: "Locality".freeze,
|
1315
2067
|
type: "rdf:Property".freeze
|
1316
2068
|
property :locationAccordingTo,
|
1317
|
-
comment:
|
2069
|
+
comment: "Information about the source of this Location information. Could be a publication (gazetteer), institution, or team of individuals.".freeze,
|
1318
2070
|
"dc:description": "Examples: \"Getty Thesaurus of Geographic Names\", \"GADM\"".freeze,
|
1319
2071
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#locationAccordingTo-2009-08-24".freeze,
|
1320
2072
|
"dc:issued": "2009-08-24".freeze,
|
@@ -1327,7 +2079,7 @@ module RDF::Vocab
|
|
1327
2079
|
subPropertyOf: "dwc:accordingTo".freeze,
|
1328
2080
|
type: "rdf:Property".freeze
|
1329
2081
|
property :locationID,
|
1330
|
-
comment:
|
2082
|
+
comment: "An identifier for the set of location information (data associated with dcterms:Location). May be a global unique identifier or an identifier specific to the data set.".freeze,
|
1331
2083
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#locationID-2009-04-24".freeze,
|
1332
2084
|
"dc:issued": "2008-11-19".freeze,
|
1333
2085
|
"dc:modified": "2009-04-24".freeze,
|
@@ -1340,7 +2092,7 @@ module RDF::Vocab
|
|
1340
2092
|
subPropertyOf: "dc:identifier".freeze,
|
1341
2093
|
type: "rdf:Property".freeze
|
1342
2094
|
property :locationRemarks,
|
1343
|
-
comment:
|
2095
|
+
comment: "Comments or notes about the Location.".freeze,
|
1344
2096
|
"dc:description": "Example: \"under water since 2005\"".freeze,
|
1345
2097
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#locationRemarks-2009-04-24".freeze,
|
1346
2098
|
"dc:issued": "2009-01-18".freeze,
|
@@ -1353,7 +2105,7 @@ module RDF::Vocab
|
|
1353
2105
|
label: "Location Remarks".freeze,
|
1354
2106
|
type: "rdf:Property".freeze
|
1355
2107
|
property :lowestBiostratigraphicZone,
|
1356
|
-
comment:
|
2108
|
+
comment: "The full name of the lowest possible geological biostratigraphic zone of the stratigraphic horizon from which the cataloged item was collected.".freeze,
|
1357
2109
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#lowestBiostratigraphicZone-2009-04-24".freeze,
|
1358
2110
|
"dc:issued": "2009-04-24".freeze,
|
1359
2111
|
"dc:modified": "2009-07-06".freeze,
|
@@ -1365,7 +2117,7 @@ module RDF::Vocab
|
|
1365
2117
|
label: "Lowest Biostratigraphic Zone".freeze,
|
1366
2118
|
type: "rdf:Property".freeze
|
1367
2119
|
property :materialSampleID,
|
1368
|
-
comment:
|
2120
|
+
comment: "An identifier for the MaterialSample (as opposed to a particular digital record of the material sample). In the absence of a persistent global unique identifier, construct one from a combination of identifiers in the record that will most closely make the materialSampleID globally unique.".freeze,
|
1369
2121
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#materialSampleID-2013-05-25".freeze,
|
1370
2122
|
"dc:issued": "2013-03-28".freeze,
|
1371
2123
|
"dc:modified": "2013-09-26".freeze,
|
@@ -1379,7 +2131,7 @@ module RDF::Vocab
|
|
1379
2131
|
subPropertyOf: "dc:identifier".freeze,
|
1380
2132
|
type: "rdf:Property".freeze
|
1381
2133
|
property :maximumDepthInMeters,
|
1382
|
-
comment:
|
2134
|
+
comment: "The greater depth of a range of depth below the local surface, in meters.".freeze,
|
1383
2135
|
"dc:description": "Example: \"200\"".freeze,
|
1384
2136
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#maximumDepthInMeters-2009-04-24".freeze,
|
1385
2137
|
"dc:issued": "2008-11-19".freeze,
|
@@ -1392,7 +2144,7 @@ module RDF::Vocab
|
|
1392
2144
|
label: "Maximum Depth In Meters".freeze,
|
1393
2145
|
type: "rdf:Property".freeze
|
1394
2146
|
property :maximumDistanceAboveSurfaceInMeters,
|
1395
|
-
comment:
|
2147
|
+
comment: "The greater distance in a range of distance from a reference surface in the vertical direction, in meters. Use positive values for locations above the surface, negative values for locations below. If depth measures are given, the reference surface is the location given by the depth, otherwise the reference surface is the location given by the elevation.".freeze,
|
1396
2148
|
"dc:description": "Example: 1.5 meter sediment core from the bottom of a lake (at depth 20m) at 300m elevation; VerbatimElevation: \"300m\" MinimumElevationInMeters: \"300\", MaximumElevationInMeters: \"300\", VerbatimDepth: \"20m\", MinimumDepthInMeters: \"20\", MaximumDepthInMeters: \"20\", minimumDistanceAboveSurfaceInMeters: \"0\", maximumDistanceAboveSurfaceInMeters: \"-1.5\"".freeze,
|
1397
2149
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#maximumDistanceAboveSurfaceInMeters-2009-04-24".freeze,
|
1398
2150
|
"dc:issued": "2008-11-19".freeze,
|
@@ -1404,7 +2156,7 @@ module RDF::Vocab
|
|
1404
2156
|
label: "Maximum Distance Above Surface In Meters".freeze,
|
1405
2157
|
type: "rdf:Property".freeze
|
1406
2158
|
property :maximumElevationInMeters,
|
1407
|
-
comment:
|
2159
|
+
comment: "The upper limit of the range of elevation (altitude, usually above sea level), in meters.".freeze,
|
1408
2160
|
"dc:description": "Example: \"200\"".freeze,
|
1409
2161
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#maximumElevationInMeters-2009-04-24".freeze,
|
1410
2162
|
"dc:issued": "2008-11-19".freeze,
|
@@ -1417,7 +2169,7 @@ module RDF::Vocab
|
|
1417
2169
|
label: "Maximum Elevation In Meters".freeze,
|
1418
2170
|
type: "rdf:Property".freeze
|
1419
2171
|
property :measurementAccuracy,
|
1420
|
-
comment:
|
2172
|
+
comment: "The description of the potential error associated with the measurementValue.".freeze,
|
1421
2173
|
"dc:description": "Examples: \"0.01\", \"normal distribution with variation of 2 m\"".freeze,
|
1422
2174
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#measurementAccuracy-2009-04-24".freeze,
|
1423
2175
|
"dc:issued": "2009-01-18".freeze,
|
@@ -1430,7 +2182,7 @@ module RDF::Vocab
|
|
1430
2182
|
label: "Measurement Accuracy".freeze,
|
1431
2183
|
type: "rdf:Property".freeze
|
1432
2184
|
property :measurementDeterminedBy,
|
1433
|
-
comment:
|
2185
|
+
comment: "A list (concatenated and separated) of names of people, groups, or organizations who determined the value of the MeasurementOrFact.".freeze,
|
1434
2186
|
"dc:description": "The recommended best practice is to separate the values with a vertical bar (' | '). Examples: \"Rob Guralnick\", \"Julie Woodruff | Eileen Lacey\".".freeze,
|
1435
2187
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#measurementDeterminedBy-2014-10-23".freeze,
|
1436
2188
|
"dc:issued": "2009-01-23".freeze,
|
@@ -1445,7 +2197,7 @@ module RDF::Vocab
|
|
1445
2197
|
subPropertyOf: "dwc:accordingTo".freeze,
|
1446
2198
|
type: "rdf:Property".freeze
|
1447
2199
|
property :measurementDeterminedDate,
|
1448
|
-
comment:
|
2200
|
+
comment: "The date on which the MeasurementOrFact was made. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).".freeze,
|
1449
2201
|
"dc:description": "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.".freeze,
|
1450
2202
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#measurementDeterminedDate-2009-04-24".freeze,
|
1451
2203
|
"dc:issued": "2009-01-23".freeze,
|
@@ -1459,7 +2211,7 @@ module RDF::Vocab
|
|
1459
2211
|
subPropertyOf: "dc:date".freeze,
|
1460
2212
|
type: "rdf:Property".freeze
|
1461
2213
|
property :measurementID,
|
1462
|
-
comment:
|
2214
|
+
comment: "An identifier for the MeasurementOrFact (information pertaining to measurements, facts, characteristics, or assertions). May be a global unique identifier or an identifier specific to the data set.".freeze,
|
1463
2215
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#measurementID-2009-04-24".freeze,
|
1464
2216
|
"dc:issued": "2009-03-06".freeze,
|
1465
2217
|
"dc:modified": "2009-04-24".freeze,
|
@@ -1472,7 +2224,7 @@ module RDF::Vocab
|
|
1472
2224
|
subPropertyOf: "dc:identifier".freeze,
|
1473
2225
|
type: "rdf:Property".freeze
|
1474
2226
|
property :measurementMethod,
|
1475
|
-
comment:
|
2227
|
+
comment: "A description of or reference to (publication, URI) the method or protocol used to determine the measurement, fact, characteristic, or assertion.".freeze,
|
1476
2228
|
"dc:description": "Examples: \"minimum convex polygon around burrow entrances\" for a home range area, \"barometric altimeter\" for an elevation".freeze,
|
1477
2229
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#measurementMethod-2009-04-24".freeze,
|
1478
2230
|
"dc:issued": "2008-11-19".freeze,
|
@@ -1484,7 +2236,7 @@ module RDF::Vocab
|
|
1484
2236
|
label: "Measurement Method".freeze,
|
1485
2237
|
type: "rdf:Property".freeze
|
1486
2238
|
property :measurementRemarks,
|
1487
|
-
comment:
|
2239
|
+
comment: "Comments or notes accompanying the MeasurementOrFact.".freeze,
|
1488
2240
|
"dc:description": "Example: \"tip of tail missing\"".freeze,
|
1489
2241
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#measurementRemarks-2009-04-24".freeze,
|
1490
2242
|
"dc:issued": "2008-11-19".freeze,
|
@@ -1497,7 +2249,7 @@ module RDF::Vocab
|
|
1497
2249
|
label: "Measurement Remarks".freeze,
|
1498
2250
|
type: "rdf:Property".freeze
|
1499
2251
|
property :measurementType,
|
1500
|
-
comment:
|
2252
|
+
comment: "The nature of the measurement, fact, characteristic, or assertion. Recommended best practice is to use a controlled vocabulary.".freeze,
|
1501
2253
|
"dc:description": "Examples: \"tail length\", \"temperature\", \"trap line length\", \"survey area\", \"trap type\"".freeze,
|
1502
2254
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#measurementType-2009-04-24".freeze,
|
1503
2255
|
"dc:issued": "2008-11-19".freeze,
|
@@ -1510,7 +2262,7 @@ module RDF::Vocab
|
|
1510
2262
|
label: "Measurement Type".freeze,
|
1511
2263
|
type: "rdf:Property".freeze
|
1512
2264
|
property :measurementUnit,
|
1513
|
-
comment:
|
2265
|
+
comment: "The units associated with the measurementValue. Recommended best practice is to use the International System of Units (SI).".freeze,
|
1514
2266
|
"dc:description": "Examples: \"mm\", \"C\", \"km\", \"ha\"".freeze,
|
1515
2267
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#measurementUnit-2009-04-24".freeze,
|
1516
2268
|
"dc:issued": "2008-11-19".freeze,
|
@@ -1523,7 +2275,7 @@ module RDF::Vocab
|
|
1523
2275
|
label: "Measurement Unit".freeze,
|
1524
2276
|
type: "rdf:Property".freeze
|
1525
2277
|
property :measurementValue,
|
1526
|
-
comment:
|
2278
|
+
comment: "The value of the measurement, fact, characteristic, or assertion.".freeze,
|
1527
2279
|
"dc:description": "Examples: \"45\", \"20\", \"1\", \"14.5\", \"UV-light\"".freeze,
|
1528
2280
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#measurementValue-2009-04-24".freeze,
|
1529
2281
|
"dc:issued": "2008-11-19".freeze,
|
@@ -1536,7 +2288,7 @@ module RDF::Vocab
|
|
1536
2288
|
label: "Measurement Value".freeze,
|
1537
2289
|
type: "rdf:Property".freeze
|
1538
2290
|
property :member,
|
1539
|
-
comment:
|
2291
|
+
comment: "The full name of the lithostratigraphic member from which the cataloged item was collected.".freeze,
|
1540
2292
|
"dc:description": "Examples: \"Lava Dam Member\", \"Hellnmaria Member\"".freeze,
|
1541
2293
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#member-2009-04-24".freeze,
|
1542
2294
|
"dc:issued": "2009-04-24".freeze,
|
@@ -1549,7 +2301,7 @@ module RDF::Vocab
|
|
1549
2301
|
label: "Member".freeze,
|
1550
2302
|
type: "rdf:Property".freeze
|
1551
2303
|
property :minimumDepthInMeters,
|
1552
|
-
comment:
|
2304
|
+
comment: "The lesser depth of a range of depth below the local surface, in meters.".freeze,
|
1553
2305
|
"dc:description": "Example: \"100\"".freeze,
|
1554
2306
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#minimumDepthInMeters-2009-04-24".freeze,
|
1555
2307
|
"dc:issued": "2008-11-19".freeze,
|
@@ -1562,7 +2314,7 @@ module RDF::Vocab
|
|
1562
2314
|
label: "Minimum Depth In Meters".freeze,
|
1563
2315
|
type: "rdf:Property".freeze
|
1564
2316
|
property :minimumDistanceAboveSurfaceInMeters,
|
1565
|
-
comment:
|
2317
|
+
comment: "The lesser distance in a range of distance from a reference surface in the vertical direction, in meters. Use positive values for locations above the surface, negative values for locations below. If depth measures are given, the reference surface is the location given by the depth, otherwise the reference surface is the location given by the elevation.".freeze,
|
1566
2318
|
"dc:description": "Example: 1.5 meter sediment core from the bottom of a lake (at depth 20m) at 300m elevation; VerbatimElevation: \"300m\" MinimumElevationInMeters: \"300\", MaximumElevationInMeters: \"300\", VerbatimDepth: \"20m\", MinimumDepthInMeters: \"20\", MaximumDepthInMeters: \"20\", minimumDistanceAboveSurfaceInMeters: \"0\", maximumDistanceAboveSurfaceInMeters: \"-1.5\"".freeze,
|
1567
2319
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#minimumDistanceAboveSurfaceInMeters-2009-04-24".freeze,
|
1568
2320
|
"dc:issued": "2008-11-19".freeze,
|
@@ -1574,7 +2326,7 @@ module RDF::Vocab
|
|
1574
2326
|
label: "Minimum Distance Above Surface In Meters".freeze,
|
1575
2327
|
type: "rdf:Property".freeze
|
1576
2328
|
property :minimumElevationInMeters,
|
1577
|
-
comment:
|
2329
|
+
comment: "The lower limit of the range of elevation (altitude, usually above sea level), in meters.".freeze,
|
1578
2330
|
"dc:description": "Example: \"100\"".freeze,
|
1579
2331
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#minimumElevationInMeters-2009-04-24".freeze,
|
1580
2332
|
"dc:issued": "2008-11-19".freeze,
|
@@ -1587,7 +2339,7 @@ module RDF::Vocab
|
|
1587
2339
|
label: "Minimum Elevation In Meters".freeze,
|
1588
2340
|
type: "rdf:Property".freeze
|
1589
2341
|
property :month,
|
1590
|
-
comment:
|
2342
|
+
comment: "The ordinal month in which the Event occurred.".freeze,
|
1591
2343
|
"dc:description": "Examples: \"1\" (=January), \"10\" (=October)".freeze,
|
1592
2344
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#month-2009-04-24".freeze,
|
1593
2345
|
"dc:issued": "2008-11-19".freeze,
|
@@ -1600,7 +2352,7 @@ module RDF::Vocab
|
|
1600
2352
|
label: "Month".freeze,
|
1601
2353
|
type: "rdf:Property".freeze
|
1602
2354
|
property :municipality,
|
1603
|
-
comment:
|
2355
|
+
comment: "The full, unabbreviated name of the next smaller administrative region than county (city, municipality, etc.) in which the Location occurs. Do not use this term for a nearby named place that does not contain the actual location.".freeze,
|
1604
2356
|
"dc:description": "Examples: \"Holzminden\"".freeze,
|
1605
2357
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#municipality-2009-08-24".freeze,
|
1606
2358
|
"dc:issued": "2008-11-19".freeze,
|
@@ -1612,7 +2364,7 @@ module RDF::Vocab
|
|
1612
2364
|
label: "Municipality".freeze,
|
1613
2365
|
type: "rdf:Property".freeze
|
1614
2366
|
property :nameAccordingTo,
|
1615
|
-
comment:
|
2367
|
+
comment: "The reference to the source in which the specific taxon concept circumscription is defined or implied - traditionally signified by the Latin \"sensu\" or \"sec.\" (from secundum, meaning \"according to\"). For taxa that result from identifications, a reference to the keys, monographs, experts and other sources should be given.".freeze,
|
1616
2368
|
"dc:description": "Example: \"McCranie, J. R., D. B. Wake, and L. D. Wilson. 1996. The taxonomic status of Bolitoglossa schmidti, with comments on the biology of the Mesoamerican salamander Bolitoglossa dofleini (Caudata: Plethodontidae). Carib. J. Sci. 32:395-398.\", \"Werner Greuter 2008\", \"Lilljeborg 1861, Upsala Univ. Arsskrift, Math. Naturvet., pp. 4, 5\"".freeze,
|
1617
2369
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#nameAccordingTo-2009-09-21".freeze,
|
1618
2370
|
"dc:issued": "2008-11-19".freeze,
|
@@ -1626,7 +2378,7 @@ module RDF::Vocab
|
|
1626
2378
|
subPropertyOf: "dwc:accordingTo".freeze,
|
1627
2379
|
type: "rdf:Property".freeze
|
1628
2380
|
property :nameAccordingToID,
|
1629
|
-
comment:
|
2381
|
+
comment: "An identifier for the source in which the specific taxon concept circumscription is defined or implied. See nameAccordingTo.".freeze,
|
1630
2382
|
"dc:description": "Example: \"doi:10.1016/S0269-915X(97)80026-2\"".freeze,
|
1631
2383
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#nameAccordingToID-2009-09-21".freeze,
|
1632
2384
|
"dc:issued": "2009-08-24".freeze,
|
@@ -1639,7 +2391,7 @@ module RDF::Vocab
|
|
1639
2391
|
subPropertyOf: "dc:identifier".freeze,
|
1640
2392
|
type: "rdf:Property".freeze
|
1641
2393
|
property :namePublishedIn,
|
1642
|
-
comment:
|
2394
|
+
comment: "A reference for the publication in which the scientificName was originally established under the rules of the associated nomenclaturalCode.".freeze,
|
1643
2395
|
"dc:description": "Examples: \"Pearson O. P., and M. I. Christie. 1985. Historia Natural, 5(37):388\", \"Forel, Auguste, Diagnosies provisoires de quelques espèces nouvelles de fourmis de Madagascar, récoltées par M. Grandidier., Annales de la Societe Entomologique de Belgique, Comptes-rendus des Seances 30, 1886\"".freeze,
|
1644
2396
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#namePublishedIn-2009-09-21".freeze,
|
1645
2397
|
"dc:issued": "2008-11-19".freeze,
|
@@ -1653,7 +2405,7 @@ module RDF::Vocab
|
|
1653
2405
|
subPropertyOf: "dc:bibliographicCitation".freeze,
|
1654
2406
|
type: "rdf:Property".freeze
|
1655
2407
|
property :namePublishedInID,
|
1656
|
-
comment:
|
2408
|
+
comment: "An identifier for the publication in which the scientificName was originally established under the rules of the associated nomenclaturalCode.".freeze,
|
1657
2409
|
"dc:description": "Example: \"http://hdl.handle.net/10199/7\"".freeze,
|
1658
2410
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#namePublishedInID-2009-09-21".freeze,
|
1659
2411
|
"dc:issued": "2009-05-18".freeze,
|
@@ -1667,7 +2419,7 @@ module RDF::Vocab
|
|
1667
2419
|
subPropertyOf: "dc:identifier".freeze,
|
1668
2420
|
type: "rdf:Property".freeze
|
1669
2421
|
property :namePublishedInYear,
|
1670
|
-
comment:
|
2422
|
+
comment: "The four-digit year in which the scientificName was published.".freeze,
|
1671
2423
|
"dc:description": "Examples: \"1915\", \"2008\"".freeze,
|
1672
2424
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#namePublishedInYear-2011-10-16".freeze,
|
1673
2425
|
"dc:issued": "2011-10-16".freeze,
|
@@ -1680,7 +2432,7 @@ module RDF::Vocab
|
|
1680
2432
|
label: "Name Published In Year".freeze,
|
1681
2433
|
type: "rdf:Property".freeze
|
1682
2434
|
property :nomenclaturalCode,
|
1683
|
-
comment:
|
2435
|
+
comment: "The nomenclatural code (or codes in the case of an ambiregnal name) under which the scientificName is constructed. Recommended best practice is to use a controlled vocabulary.".freeze,
|
1684
2436
|
"dc:description": "Examples: \"ICBN\", \"ICZN\", \"BC\", \"ICNCP\", \"BioCode\", \"ICZN; ICBN\"".freeze,
|
1685
2437
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#nomenclaturalCode-2009-09-21".freeze,
|
1686
2438
|
"dc:issued": "2008-11-19".freeze,
|
@@ -1693,7 +2445,7 @@ module RDF::Vocab
|
|
1693
2445
|
label: "Nomenclatural Code".freeze,
|
1694
2446
|
type: "rdf:Property".freeze
|
1695
2447
|
property :nomenclaturalStatus,
|
1696
|
-
comment:
|
2448
|
+
comment: "The status related to the original publication of the name and its conformance to the relevant rules of nomenclature. It is based essentially on an algorithm according to the business rules of the code. It requires no taxonomic opinion.".freeze,
|
1697
2449
|
"dc:description": "Examples: \"nom. ambig.\", \"nom. illeg.\", \"nom. subnud.\"".freeze,
|
1698
2450
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#nomenclaturalStatus-2009-04-24".freeze,
|
1699
2451
|
"dc:issued": "2009-01-18".freeze,
|
@@ -1705,7 +2457,7 @@ module RDF::Vocab
|
|
1705
2457
|
label: "Nomenclatural Status".freeze,
|
1706
2458
|
type: "rdf:Property".freeze
|
1707
2459
|
property :occurrenceID,
|
1708
|
-
comment:
|
2460
|
+
comment: "An identifier for the Occurrence (as opposed to a particular digital record of the occurrence). In the absence of a persistent global unique identifier, construct one from a combination of identifiers in the record that will most closely make the occurrenceID globally unique.".freeze,
|
1709
2461
|
"dc:description": "For a specimen in the absence of a bona fide global unique identifier, for example, use the form: \"urn:catalog:[institutionCode]:[collectionCode]:[catalogNumber]. Examples: \"urn:lsid:nhm.ku.edu:Herps:32\", \"urn:catalog:FMNH:Mammal:145732\"".freeze,
|
1710
2462
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#occurrenceID-2009-04-24".freeze,
|
1711
2463
|
"dc:issued": "2008-11-19".freeze,
|
@@ -1719,7 +2471,7 @@ module RDF::Vocab
|
|
1719
2471
|
subPropertyOf: "dc:identifier".freeze,
|
1720
2472
|
type: "rdf:Property".freeze
|
1721
2473
|
property :occurrenceRemarks,
|
1722
|
-
comment:
|
2474
|
+
comment: "Comments or notes about the Occurrence.".freeze,
|
1723
2475
|
"dc:description": "Example: \"found dead on road\"".freeze,
|
1724
2476
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#occurrenceRemarks-2009-04-24".freeze,
|
1725
2477
|
"dc:issued": "2008-11-19".freeze,
|
@@ -1732,7 +2484,7 @@ module RDF::Vocab
|
|
1732
2484
|
label: "Occurrence Remarks".freeze,
|
1733
2485
|
type: "rdf:Property".freeze
|
1734
2486
|
property :occurrenceStatus,
|
1735
|
-
comment:
|
2487
|
+
comment: "A statement about the presence or absence of a Taxon at a Location. Recommended best practice is to use a controlled vocabulary.".freeze,
|
1736
2488
|
"dc:description": "Examples: \"present\", \"absent\"".freeze,
|
1737
2489
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#occurrenceStatus-2009-09-17".freeze,
|
1738
2490
|
"dc:issued": "2009-09-17".freeze,
|
@@ -1744,7 +2496,7 @@ module RDF::Vocab
|
|
1744
2496
|
label: "Occurrence Status".freeze,
|
1745
2497
|
type: "rdf:Property".freeze
|
1746
2498
|
property :order,
|
1747
|
-
comment:
|
2499
|
+
comment: "The full scientific name of the order in which the taxon is classified.".freeze,
|
1748
2500
|
"dc:description": "Examples: \"Carnivora\", \"Monocleales\"".freeze,
|
1749
2501
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#order-2009-08-24".freeze,
|
1750
2502
|
"dc:issued": "2008-11-19".freeze,
|
@@ -1757,7 +2509,7 @@ module RDF::Vocab
|
|
1757
2509
|
label: "Order".freeze,
|
1758
2510
|
type: "rdf:Property".freeze
|
1759
2511
|
property :organismID,
|
1760
|
-
comment:
|
2512
|
+
comment: "An identifier for the Organism instance (as opposed to a particular digital record of the Organism). May be a globally unique identifier or an identifier specific to the data set.".freeze,
|
1761
2513
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#organismID-2014-10-23".freeze,
|
1762
2514
|
"dc:issued": "2014-10-23".freeze,
|
1763
2515
|
"dc:modified": "2014-10-23".freeze,
|
@@ -1771,7 +2523,7 @@ module RDF::Vocab
|
|
1771
2523
|
subPropertyOf: "dc:identifier".freeze,
|
1772
2524
|
type: "rdf:Property".freeze
|
1773
2525
|
property :organismName,
|
1774
|
-
comment:
|
2526
|
+
comment: "A textual name or label assigned to an Organism instance.".freeze,
|
1775
2527
|
"dc:description": "Examples: \"Huberta\", \"Boab Prison Tree\", \"J pod\".".freeze,
|
1776
2528
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#organismName-2014-10-23".freeze,
|
1777
2529
|
"dc:issued": "2014-10-23".freeze,
|
@@ -1784,7 +2536,7 @@ module RDF::Vocab
|
|
1784
2536
|
label: "Organism Name".freeze,
|
1785
2537
|
type: "rdf:Property".freeze
|
1786
2538
|
property :organismRemarks,
|
1787
|
-
comment:
|
2539
|
+
comment: "Comments or notes about the Organism instance.".freeze,
|
1788
2540
|
"dc:description": "Example: \"One of a litter of six.\"".freeze,
|
1789
2541
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#organismRemarks-2014-10-23".freeze,
|
1790
2542
|
"dc:issued": "2014-10-23".freeze,
|
@@ -1797,7 +2549,7 @@ module RDF::Vocab
|
|
1797
2549
|
label: "Organism Remarks".freeze,
|
1798
2550
|
type: "rdf:Property".freeze
|
1799
2551
|
property :organismScope,
|
1800
|
-
comment:
|
2552
|
+
comment: "A description of the kind of Organism instance. Can be used to indicate whether the Organism instance represents a discrete organism or if it represents a particular type of aggregation. Recommended best practice is to use a controlled vocabulary.".freeze,
|
1801
2553
|
"dc:description": "This term is not intended to be used to specify a type of taxon. To describe the kind of Organism using a URI object in RDF, use rdf:type (http://www.w3.org/1999/02/22-rdf-syntax-ns#type) instead. Examples: \"multicellular organism\", \"virus\", \"clone\" \"pack\", \"colony\".".freeze,
|
1802
2554
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#organismScope-2014-10-23".freeze,
|
1803
2555
|
"dc:issued": "2014-10-23".freeze,
|
@@ -1810,7 +2562,7 @@ module RDF::Vocab
|
|
1810
2562
|
label: "Organism Scope".freeze,
|
1811
2563
|
type: "rdf:Property".freeze
|
1812
2564
|
property :originalNameUsage,
|
1813
|
-
comment:
|
2565
|
+
comment: "The taxon name, with authorship and date information if known, as it originally appeared when first established under the rules of the associated nomenclaturalCode. The basionym (botany) or basonym (bacteriology) of the scientificName or the senior/earlier homonym for replaced names.".freeze,
|
1814
2566
|
"dc:description": "Examples: \"Pinus abies\", \"Gasterosteus saltatrix Linnaeus 1768\"".freeze,
|
1815
2567
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#originalNameUsage-2009-09-21".freeze,
|
1816
2568
|
"dc:issued": "2008-11-19".freeze,
|
@@ -1823,7 +2575,7 @@ module RDF::Vocab
|
|
1823
2575
|
label: "Original Name Usage".freeze,
|
1824
2576
|
type: "rdf:Property".freeze
|
1825
2577
|
property :originalNameUsageID,
|
1826
|
-
comment:
|
2578
|
+
comment: "An identifier for the name usage (documented meaning of the name according to a source) in which the terminal element of the scientificName was originally established under the rules of the associated nomenclaturalCode.".freeze,
|
1827
2579
|
"dc:description": "Example: \"http://species.gbif.org/abies_alba_1753\"".freeze,
|
1828
2580
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#originalNameUsageID-2009-09-21".freeze,
|
1829
2581
|
"dc:issued": "2009-01-21".freeze,
|
@@ -1837,7 +2589,7 @@ module RDF::Vocab
|
|
1837
2589
|
subPropertyOf: "dc:identifier".freeze,
|
1838
2590
|
type: "rdf:Property".freeze
|
1839
2591
|
property :otherCatalogNumbers,
|
1840
|
-
comment:
|
2592
|
+
comment: "A list (concatenated and separated) of previous or alternate fully qualified catalog numbers or other human-used identifiers for the same Occurrence, whether in the current or any other data set or collection.".freeze,
|
1841
2593
|
"dc:description": "The recommended best practice is to separate the values with a vertical bar (' | '). Examples: \"FMNH:Mammal:1234\", \"NPS YELLO6778 | MBG 33424\".".freeze,
|
1842
2594
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#otherCatalogNumbers-2014-10-23".freeze,
|
1843
2595
|
"dc:issued": "2008-11-19".freeze,
|
@@ -1851,7 +2603,7 @@ module RDF::Vocab
|
|
1851
2603
|
label: "Other Catalog Numbers".freeze,
|
1852
2604
|
type: "rdf:Property".freeze
|
1853
2605
|
property :ownerInstitutionCode,
|
1854
|
-
comment:
|
2606
|
+
comment: "The name (or acronym) in use by the institution having ownership of the object(s) or information referred to in the record.".freeze,
|
1855
2607
|
"dc:description": "Examples: \"NPS\", \"APN\", \"InBio\"".freeze,
|
1856
2608
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#ownerInstitutionCode-2009-08-24".freeze,
|
1857
2609
|
"dc:issued": "2009-08-24".freeze,
|
@@ -1863,7 +2615,7 @@ module RDF::Vocab
|
|
1863
2615
|
label: "Owner Institution Code".freeze,
|
1864
2616
|
type: "rdf:Property".freeze
|
1865
2617
|
property :parentNameUsage,
|
1866
|
-
comment:
|
2618
|
+
comment: "The full name, with authorship and date information if known, of the direct, most proximate higher-rank parent taxon (in a classification) of the most specific element of the scientificName.".freeze,
|
1867
2619
|
"dc:description": "Examples: \"Rubiaceae\", \"Gruiformes\", \"Testudinae\"".freeze,
|
1868
2620
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#parentNameUsage-2009-09-21".freeze,
|
1869
2621
|
"dc:issued": "2009-08-24".freeze,
|
@@ -1875,7 +2627,7 @@ module RDF::Vocab
|
|
1875
2627
|
label: "Parent Name Usage".freeze,
|
1876
2628
|
type: "rdf:Property".freeze
|
1877
2629
|
property :parentNameUsageID,
|
1878
|
-
comment:
|
2630
|
+
comment: "An identifier for the name usage (documented meaning of the name according to a source) of the direct, most proximate higher-rank parent taxon (in a classification) of the most specific element of the scientificName.".freeze,
|
1879
2631
|
"dc:description": "Example: \"8fa58e08-08de-4ac1-b69c-1235340b7001\"".freeze,
|
1880
2632
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#parentNameUsageID-2009-09-21".freeze,
|
1881
2633
|
"dc:issued": "2009-01-21".freeze,
|
@@ -1889,7 +2641,7 @@ module RDF::Vocab
|
|
1889
2641
|
subPropertyOf: "dc:identifier".freeze,
|
1890
2642
|
type: "rdf:Property".freeze
|
1891
2643
|
property :phylum,
|
1892
|
-
comment:
|
2644
|
+
comment: "The full scientific name of the phylum or division in which the taxon is classified.".freeze,
|
1893
2645
|
"dc:description": "Examples: \"Chordata\" (phylum), \"Bryophyta\" (division)".freeze,
|
1894
2646
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#phylum-2009-08-24".freeze,
|
1895
2647
|
"dc:issued": "2008-11-19".freeze,
|
@@ -1902,7 +2654,7 @@ module RDF::Vocab
|
|
1902
2654
|
label: "Phylum".freeze,
|
1903
2655
|
type: "rdf:Property".freeze
|
1904
2656
|
property :pointRadiusSpatialFit,
|
1905
|
-
comment:
|
2657
|
+
comment: "The ratio of the area of the point-radius (decimalLatitude, decimalLongitude, coordinateUncertaintyInMeters) to the area of the true (original, or most specific) spatial representation of the Location. Legal values are 0, greater than or equal to 1, or undefined. A value of 1 is an exact match or 100% overlap. A value of 0 should be used if the given point-radius does not completely contain the original representation. The pointRadiusSpatialFit is undefined (and should be left blank) if the original representation is a point without uncertainty and the given georeference is not that same point (without uncertainty). If both the original and the given georeference are the same point, the pointRadiusSpatialFit is 1.".freeze,
|
1906
2658
|
"dc:description": "Detailed explanations with graphical examples can be found in the \"Guide to Best Practices for Georeferencing\", Chapman and Wieczorek, eds. 2006.".freeze,
|
1907
2659
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#pointRadiusSpatialFit-2009-04-24".freeze,
|
1908
2660
|
"dc:issued": "2008-11-19".freeze,
|
@@ -1915,7 +2667,7 @@ module RDF::Vocab
|
|
1915
2667
|
label: "Point Radius Spatial Fit".freeze,
|
1916
2668
|
type: "rdf:Property".freeze
|
1917
2669
|
property :preparations,
|
1918
|
-
comment:
|
2670
|
+
comment: "A list (concatenated and separated) of preparations and preservation methods for a specimen.".freeze,
|
1919
2671
|
"dc:description": "The recommended best practice is to separate the values with a vertical bar (' | '). Examples: \"fossil\", \"cast\", \"photograph\", \"DNA extract\", \"skin | \"skull | skeleton\", \"whole animal (ETOH) | tissue (EDTA)\".".freeze,
|
1920
2672
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#preparations-2014-10-23".freeze,
|
1921
2673
|
"dc:issued": "2008-11-19".freeze,
|
@@ -1929,7 +2681,7 @@ module RDF::Vocab
|
|
1929
2681
|
label: "Preparations".freeze,
|
1930
2682
|
type: "rdf:Property".freeze
|
1931
2683
|
property :previousIdentifications,
|
1932
|
-
comment:
|
2684
|
+
comment: "A list (concatenated and separated) of previous assignments of names to the Organism.".freeze,
|
1933
2685
|
"dc:description": "The recommended best practice is to separate the values with a vertical bar (' | '). Examples: \"Chalepidae\", \"Pinus abies\", \"Anthus sp., field ID by G. Iglesias | Anthus correndera, expert ID by C. Cicero 2009-02-12 based on morphology\".".freeze,
|
1934
2686
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#previousIdentifications-2014-10-23".freeze,
|
1935
2687
|
"dc:issued": "2008-11-19".freeze,
|
@@ -1943,7 +2695,7 @@ module RDF::Vocab
|
|
1943
2695
|
label: "Previous Identifications".freeze,
|
1944
2696
|
type: "rdf:Property".freeze
|
1945
2697
|
property :recordNumber,
|
1946
|
-
comment:
|
2698
|
+
comment: "An identifier given to the Occurrence at the time it was recorded. Often serves as a link between field notes and an Occurrence record, such as a specimen collector's number.".freeze,
|
1947
2699
|
"dc:description": "Example: \"OPP 7101\"".freeze,
|
1948
2700
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#recordNumber-2009-04-24".freeze,
|
1949
2701
|
"dc:issued": "2008-11-19".freeze,
|
@@ -1956,7 +2708,7 @@ module RDF::Vocab
|
|
1956
2708
|
label: "Record Number".freeze,
|
1957
2709
|
type: "rdf:Property".freeze
|
1958
2710
|
property :recordedBy,
|
1959
|
-
comment:
|
2711
|
+
comment: "A list (concatenated and separated) of names of people, groups, or organizations responsible for recording the original Occurrence. The primary collector or observer, especially one who applies a personal identifier (recordNumber), should be listed first.".freeze,
|
1960
2712
|
"dc:description": "The recommended best practice is to separate the values with a vertical bar (' | '). The primary collector or observer, especially one who applies a personal identifier (recordNumber), should be listed first. Examples: \"José E. Crespo\", \"Oliver P. Pearson | Anita K. Pearson\" where the value in recordNumber \"OPP 7101\" corresponds to the number for the specimen in the field catalog (collector number) of Oliver P. Pearson.".freeze,
|
1961
2713
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#recordedBy-2014-10-23".freeze,
|
1962
2714
|
"dc:issued": "2008-11-19".freeze,
|
@@ -1971,7 +2723,7 @@ module RDF::Vocab
|
|
1971
2723
|
subPropertyOf: "dwc:accordingTo".freeze,
|
1972
2724
|
type: "rdf:Property".freeze
|
1973
2725
|
property :relatedResourceID,
|
1974
|
-
comment:
|
2726
|
+
comment: "An identifier for a related resource (the object, rather than the subject of the relationship).".freeze,
|
1975
2727
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#relatedResourceID-2009-04-24".freeze,
|
1976
2728
|
"dc:issued": "2008-11-19".freeze,
|
1977
2729
|
"dc:modified": "2009-04-24".freeze,
|
@@ -1983,7 +2735,7 @@ module RDF::Vocab
|
|
1983
2735
|
subPropertyOf: "dc:identifier".freeze,
|
1984
2736
|
type: "rdf:Property".freeze
|
1985
2737
|
property :relationshipAccordingTo,
|
1986
|
-
comment:
|
2738
|
+
comment: "The source (person, organization, publication, reference) establishing the relationship between the two resources.".freeze,
|
1987
2739
|
"dc:description": "Example: \"Julie Woodruff\"".freeze,
|
1988
2740
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#relationshipAccordingTo-2009-04-24".freeze,
|
1989
2741
|
"dc:issued": "2009-04-24".freeze,
|
@@ -1996,7 +2748,7 @@ module RDF::Vocab
|
|
1996
2748
|
subPropertyOf: "dwc:accordingTo".freeze,
|
1997
2749
|
type: "rdf:Property".freeze
|
1998
2750
|
property :relationshipEstablishedDate,
|
1999
|
-
comment:
|
2751
|
+
comment: "The date-time on which the relationship between the two resources was established. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).".freeze,
|
2000
2752
|
"dc:description": "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.".freeze,
|
2001
2753
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#relationshipEstablishedDate-2009-04-24".freeze,
|
2002
2754
|
"dc:issued": "2009-04-24".freeze,
|
@@ -2009,7 +2761,7 @@ module RDF::Vocab
|
|
2009
2761
|
subPropertyOf: "dc:date".freeze,
|
2010
2762
|
type: "rdf:Property".freeze
|
2011
2763
|
property :relationshipOfResource,
|
2012
|
-
comment:
|
2764
|
+
comment: "The relationship of the resource identified by relatedResourceID to the subject (optionally identified by the resourceID). Recommended best practice is to use a controlled vocabulary.".freeze,
|
2013
2765
|
"dc:description": "Examples: \"duplicate of\", \"mother of\", \"endoparasite of\", \"host to\", \"sibling of\", \"valid synonym of\", \"located within\"".freeze,
|
2014
2766
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#relationshipOfResource-2009-04-24".freeze,
|
2015
2767
|
"dc:issued": "2008-11-19".freeze,
|
@@ -2021,7 +2773,7 @@ module RDF::Vocab
|
|
2021
2773
|
label: "Relationship Of Resource".freeze,
|
2022
2774
|
type: "rdf:Property".freeze
|
2023
2775
|
property :relationshipRemarks,
|
2024
|
-
comment:
|
2776
|
+
comment: "Comments or notes about the relationship between the two resources.".freeze,
|
2025
2777
|
"dc:description": "Examples: \"mother and offspring collected from the same nest\", \"pollinator captured in the act\"".freeze,
|
2026
2778
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#relationshipRemarks-2009-04-24".freeze,
|
2027
2779
|
"dc:issued": "2008-11-19".freeze,
|
@@ -2033,7 +2785,7 @@ module RDF::Vocab
|
|
2033
2785
|
label: "Relationship Remarks".freeze,
|
2034
2786
|
type: "rdf:Property".freeze
|
2035
2787
|
property :reproductiveCondition,
|
2036
|
-
comment:
|
2788
|
+
comment: "The reproductive condition of the biological individual(s) represented in the Occurrence. Recommended best practice is to use a controlled vocabulary.".freeze,
|
2037
2789
|
"dc:description": "Examples\" \"non-reproductive\", \"pregnant\", \"in bloom\", \"fruit-bearing\"".freeze,
|
2038
2790
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#reproductiveCondition-2009-04-24".freeze,
|
2039
2791
|
"dc:issued": "2008-11-19".freeze,
|
@@ -2045,7 +2797,7 @@ module RDF::Vocab
|
|
2045
2797
|
label: "Reproductive Condition".freeze,
|
2046
2798
|
type: "rdf:Property".freeze
|
2047
2799
|
property :resourceID,
|
2048
|
-
comment:
|
2800
|
+
comment: "An identifier for the resource that is the subject of the relationship.".freeze,
|
2049
2801
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#resourceID-2009-04-24".freeze,
|
2050
2802
|
"dc:issued": "2009-04-24".freeze,
|
2051
2803
|
"dc:modified": "2009-04-24".freeze,
|
@@ -2057,7 +2809,7 @@ module RDF::Vocab
|
|
2057
2809
|
subPropertyOf: "dc:identifier".freeze,
|
2058
2810
|
type: "rdf:Property".freeze
|
2059
2811
|
property :resourceRelationshipID,
|
2060
|
-
comment:
|
2812
|
+
comment: "An identifier for an instance of relationship between one resource (the subject) and another (relatedResource, the object).".freeze,
|
2061
2813
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#resourceRelationshipID-2009-04-24".freeze,
|
2062
2814
|
"dc:issued": "2009-01-26".freeze,
|
2063
2815
|
"dc:modified": "2009-04-24".freeze,
|
@@ -2069,7 +2821,7 @@ module RDF::Vocab
|
|
2069
2821
|
subPropertyOf: "dc:identifier".freeze,
|
2070
2822
|
type: "rdf:Property".freeze
|
2071
2823
|
property :samplingEffort,
|
2072
|
-
comment:
|
2824
|
+
comment: "The amount of effort expended during an Event.".freeze,
|
2073
2825
|
"dc:description": "Examples: \"40 trap-nights\", \"10 observer-hours; 10 km by foot; 30 km by car\"".freeze,
|
2074
2826
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#samplingEffort-2009-08-24".freeze,
|
2075
2827
|
"dc:issued": "2009-08-24".freeze,
|
@@ -2081,7 +2833,7 @@ module RDF::Vocab
|
|
2081
2833
|
label: "Sampling Effort".freeze,
|
2082
2834
|
type: "rdf:Property".freeze
|
2083
2835
|
property :samplingProtocol,
|
2084
|
-
comment:
|
2836
|
+
comment: "The name of, reference to, or description of the method or protocol used during an Event.".freeze,
|
2085
2837
|
"dc:description": "Examples: \"UV light trap\", \"mist net\", \"bottom trawl\", \"ad hoc observation\", \"point count\", \"Penguins from space: faecal stains reveal the location of emperor penguin colonies, http://dx.doi.org/10.1111/j.1466-8238.2009.00467.x\", \"Takats et al. 2001. Guidelines for Nocturnal Owl Monitoring in North America. Beaverhill Bird Observatory and Bird Studies Canada, Edmonton, Alberta. 32 pp.\", \"http://www.bsc-eoc.org/download/Owl.pdf\"".freeze,
|
2086
2838
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#samplingProtocol-2009-04-24".freeze,
|
2087
2839
|
"dc:issued": "2008-11-19".freeze,
|
@@ -2094,7 +2846,7 @@ module RDF::Vocab
|
|
2094
2846
|
label: "Sampling Protocol".freeze,
|
2095
2847
|
type: "rdf:Property".freeze
|
2096
2848
|
property :scientificName,
|
2097
|
-
comment:
|
2849
|
+
comment: "The full scientific name, with authorship and date information if known. When forming part of an Identification, this should be the name in lowest level taxonomic rank that can be determined. This term should not contain identification qualifications, which should instead be supplied in the IdentificationQualifier term.".freeze,
|
2098
2850
|
"dc:description": "Examples: \"Coleoptera\" (order), \"Vespertilionidae\" (family), \"Manis\" (genus), \"Ctenomys sociabilis\" (genus + specificEpithet), \"Ambystoma tigrinum diaboli\" (genus + specificEpithet + infraspecificEpithet), \"Roptrocerus typographi (Györfi, 1952)\" (genus + specificEpithet + scientificNameAuthorship), \"Quercus agrifolia var. oxyadenia (Torr.) J.T. Howell\" (genus + specificEpithet + taxonRank + infraspecificEpithet + scientificNameAuthorship)".freeze,
|
2099
2851
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#scientificName-2009-09-21".freeze,
|
2100
2852
|
"dc:issued": "2008-11-19".freeze,
|
@@ -2107,7 +2859,7 @@ module RDF::Vocab
|
|
2107
2859
|
label: "Scientific Name".freeze,
|
2108
2860
|
type: "rdf:Property".freeze
|
2109
2861
|
property :scientificNameAuthorship,
|
2110
|
-
comment:
|
2862
|
+
comment: "The authorship information for the scientificName formatted according to the conventions of the applicable nomenclaturalCode.".freeze,
|
2111
2863
|
"dc:description": "Example: \"(Torr.) J.T. Howell\", \"(Martinovský) Tzvelev\", \"(Györfi, 1952)\"".freeze,
|
2112
2864
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#scientificNameAuthorship-2009-04-24".freeze,
|
2113
2865
|
"dc:issued": "2008-11-19".freeze,
|
@@ -2120,7 +2872,7 @@ module RDF::Vocab
|
|
2120
2872
|
label: "Scientific Name Authorship".freeze,
|
2121
2873
|
type: "rdf:Property".freeze
|
2122
2874
|
property :scientificNameID,
|
2123
|
-
comment:
|
2875
|
+
comment: "An identifier for the nomenclatural (not taxonomic) details of a scientific name.".freeze,
|
2124
2876
|
"dc:description": "Example: \"urn:lsid:ipni.org:names:37829-1:1.3\"".freeze,
|
2125
2877
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#scientificNameID-2009-08-24".freeze,
|
2126
2878
|
"dc:issued": "2008-11-19".freeze,
|
@@ -2134,7 +2886,7 @@ module RDF::Vocab
|
|
2134
2886
|
subPropertyOf: "dc:identifier".freeze,
|
2135
2887
|
type: "rdf:Property".freeze
|
2136
2888
|
property :sex,
|
2137
|
-
comment:
|
2889
|
+
comment: "The sex of the biological individual(s) represented in the Occurrence. Recommended best practice is to use a controlled vocabulary.".freeze,
|
2138
2890
|
"dc:description": "Examples: \"female\", \"hermaphrodite\", \"8 males, 4 females\"".freeze,
|
2139
2891
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#sex-2009-04-24".freeze,
|
2140
2892
|
"dc:issued": "2008-11-19".freeze,
|
@@ -2147,7 +2899,7 @@ module RDF::Vocab
|
|
2147
2899
|
label: "Sex".freeze,
|
2148
2900
|
type: "rdf:Property".freeze
|
2149
2901
|
property :specificEpithet,
|
2150
|
-
comment:
|
2902
|
+
comment: "The name of the first or species epithet of the scientificName.".freeze,
|
2151
2903
|
"dc:description": "Examples: \"concolor\", \"gottschei\"".freeze,
|
2152
2904
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#specificEpithet-2009-04-24".freeze,
|
2153
2905
|
"dc:issued": "2008-11-19".freeze,
|
@@ -2160,7 +2912,7 @@ module RDF::Vocab
|
|
2160
2912
|
label: "Specific Epithet".freeze,
|
2161
2913
|
type: "rdf:Property".freeze
|
2162
2914
|
property :startDayOfYear,
|
2163
|
-
comment:
|
2915
|
+
comment: "The earliest 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).".freeze,
|
2164
2916
|
"dc:description": "Examples: \"1\" (=1 Jan), \"366\" (=31 Dec), \"365\" (=30 Dec in a leap year, 31 Dec in a non-leap year)".freeze,
|
2165
2917
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#startDayOfYear-2009-04-24".freeze,
|
2166
2918
|
"dc:issued": "2008-11-19".freeze,
|
@@ -2173,7 +2925,7 @@ module RDF::Vocab
|
|
2173
2925
|
label: "Start Day Of Year".freeze,
|
2174
2926
|
type: "rdf:Property".freeze
|
2175
2927
|
property :stateProvince,
|
2176
|
-
comment:
|
2928
|
+
comment: "The name of the next smaller administrative region than country (state, province, canton, department, region, etc.) in which the Location occurs.".freeze,
|
2177
2929
|
"dc:description": "Examples: \"Montana\", \"Minas Gerais\", \"Córdoba\"".freeze,
|
2178
2930
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#stateProvince-2009-04-24".freeze,
|
2179
2931
|
"dc:issued": "2008-11-19".freeze,
|
@@ -2186,7 +2938,7 @@ module RDF::Vocab
|
|
2186
2938
|
label: "State Province".freeze,
|
2187
2939
|
type: "rdf:Property".freeze
|
2188
2940
|
property :subgenus,
|
2189
|
-
comment:
|
2941
|
+
comment: "The full scientific name of the subgenus in which the taxon is classified. Values should include the genus to avoid homonym confusion.".freeze,
|
2190
2942
|
"dc:description": "Examples: \"Strobus (Pinus)\", \"Puma (Puma)\" \"Loligo (Amerigo)\", \"Hieracium subgen. Pilosella\"".freeze,
|
2191
2943
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#subgenus-2009-08-24".freeze,
|
2192
2944
|
"dc:issued": "2008-11-19".freeze,
|
@@ -2199,7 +2951,7 @@ module RDF::Vocab
|
|
2199
2951
|
label: "Subgenus".freeze,
|
2200
2952
|
type: "rdf:Property".freeze
|
2201
2953
|
property :taxonConceptID,
|
2202
|
-
comment:
|
2954
|
+
comment: "An identifier for the taxonomic concept to which the record refers - not for the nomenclatural details of a taxon.".freeze,
|
2203
2955
|
"dc:description": "Example: \"8fa58e08-08de-4ac1-b69c-1235340b7001\"".freeze,
|
2204
2956
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#taxonConceptID-2009-09-21".freeze,
|
2205
2957
|
"dc:issued": "2009-04-24".freeze,
|
@@ -2213,7 +2965,7 @@ module RDF::Vocab
|
|
2213
2965
|
subPropertyOf: "dc:identifier".freeze,
|
2214
2966
|
type: "rdf:Property".freeze
|
2215
2967
|
property :taxonID,
|
2216
|
-
comment:
|
2968
|
+
comment: "An identifier for the set of taxon information (data associated with the Taxon class). May be a global unique identifier or an identifier specific to the data set.".freeze,
|
2217
2969
|
"dc:description": "Examples: \"8fa58e08-08de-4ac1-b69c-1235340b7001\", \"32567\", \"http://species.gbif.org/abies_alba_1753\", \"urn:lsid:gbif.org:usages:32567\"".freeze,
|
2218
2970
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#taxonID-2009-08-24".freeze,
|
2219
2971
|
"dc:issued": "2008-11-19".freeze,
|
@@ -2227,7 +2979,7 @@ module RDF::Vocab
|
|
2227
2979
|
subPropertyOf: "dc:identifier".freeze,
|
2228
2980
|
type: "rdf:Property".freeze
|
2229
2981
|
property :taxonRank,
|
2230
|
-
comment:
|
2982
|
+
comment: "The taxonomic rank of the most specific name in the scientificName. Recommended best practice is to use a controlled vocabulary.".freeze,
|
2231
2983
|
"dc:description": "Examples: \"subspecies\", \"varietas\", \"forma\", \"species\", \"genus\"".freeze,
|
2232
2984
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#taxonRank-2009-09-21".freeze,
|
2233
2985
|
"dc:issued": "2008-11-19".freeze,
|
@@ -2240,7 +2992,7 @@ module RDF::Vocab
|
|
2240
2992
|
label: "Taxon Rank".freeze,
|
2241
2993
|
type: "rdf:Property".freeze
|
2242
2994
|
property :taxonRemarks,
|
2243
|
-
comment:
|
2995
|
+
comment: "Comments or notes about the taxon or name.".freeze,
|
2244
2996
|
"dc:description": "Example: \"this name is a misspelling in common use\"".freeze,
|
2245
2997
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#taxonRemarks-2009-08-24".freeze,
|
2246
2998
|
"dc:issued": "2008-11-19".freeze,
|
@@ -2253,7 +3005,7 @@ module RDF::Vocab
|
|
2253
3005
|
label: "Taxon Remarks".freeze,
|
2254
3006
|
type: "rdf:Property".freeze
|
2255
3007
|
property :taxonomicStatus,
|
2256
|
-
comment:
|
3008
|
+
comment: "The status of the use of the scientificName as a label for a taxon. Requires taxonomic opinion to define the scope of a taxon. Rules of priority then are used to define the taxonomic status of the nomenclature contained in that scope, combined with the experts opinion. It must be linked to a specific taxonomic reference that defines the concept. Recommended best practice is to use a controlled vocabulary.".freeze,
|
2257
3009
|
"dc:description": "Examples: \"invalid\", \"misapplied\", \"homotypic synonym\", \"accepted\"".freeze,
|
2258
3010
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#taxonomicStatus-2009-04-24".freeze,
|
2259
3011
|
"dc:issued": "2008-11-19".freeze,
|
@@ -2265,7 +3017,7 @@ module RDF::Vocab
|
|
2265
3017
|
label: "Taxonomic Status".freeze,
|
2266
3018
|
type: "rdf:Property".freeze
|
2267
3019
|
property :typeStatus,
|
2268
|
-
comment:
|
3020
|
+
comment: "A list (concatenated and separated) of nomenclatural types (type status, typified scientific name, publication) applied to the subject.".freeze,
|
2269
3021
|
"dc:description": "The recommended best practice is to separate the values with a vertical bar (' | '). Examples: \"holotype of Ctenomys sociabilis. Pearson O. P., and M. I. Christie. 1985. Historia Natural, 5(37):388\", \"holotype of Pinus abies | holotype of Picea abies\".".freeze,
|
2270
3022
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#typeStatus-2014-10-23".freeze,
|
2271
3023
|
"dc:issued": "2008-11-19".freeze,
|
@@ -2279,7 +3031,7 @@ module RDF::Vocab
|
|
2279
3031
|
label: "Type Status".freeze,
|
2280
3032
|
type: "rdf:Property".freeze
|
2281
3033
|
property :verbatimCoordinateSystem,
|
2282
|
-
comment:
|
3034
|
+
comment: "The spatial coordinate system for the verbatimLatitude and verbatimLongitude or the verbatimCoordinates of the Location. Recommended best practice is to use a controlled vocabulary.".freeze,
|
2283
3035
|
"dc:description": "Examples: \"decimal degrees\", \"degrees decimal minutes\", \"degrees minutes seconds\", \"UTM\"".freeze,
|
2284
3036
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#verbatimCoordinateSystem-2009-04-24".freeze,
|
2285
3037
|
"dc:issued": "2008-11-19".freeze,
|
@@ -2292,7 +3044,7 @@ module RDF::Vocab
|
|
2292
3044
|
label: "Verbatim Coordinate System".freeze,
|
2293
3045
|
type: "rdf:Property".freeze
|
2294
3046
|
property :verbatimCoordinates,
|
2295
|
-
comment:
|
3047
|
+
comment: "The verbatim original spatial coordinates of the Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in verbatimSRS and the coordinate system should be stored in verbatimCoordinateSystem.".freeze,
|
2296
3048
|
"dc:description": "Examples: \"41 05 54S 121 05 34W\", \"17T 630000 4833400\"".freeze,
|
2297
3049
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#verbatimCoordinates-2009-04-24".freeze,
|
2298
3050
|
"dc:issued": "2008-11-19".freeze,
|
@@ -2305,7 +3057,7 @@ module RDF::Vocab
|
|
2305
3057
|
label: "Verbatim Coordinates".freeze,
|
2306
3058
|
type: "rdf:Property".freeze
|
2307
3059
|
property :verbatimDepth,
|
2308
|
-
comment:
|
3060
|
+
comment: "The original description of the depth below the local surface.".freeze,
|
2309
3061
|
"dc:description": "Example: \"100-200 m\"".freeze,
|
2310
3062
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#verbatimDepth-2009-04-24".freeze,
|
2311
3063
|
"dc:issued": "2008-11-19".freeze,
|
@@ -2318,7 +3070,7 @@ module RDF::Vocab
|
|
2318
3070
|
label: "Verbatim Depth".freeze,
|
2319
3071
|
type: "rdf:Property".freeze
|
2320
3072
|
property :verbatimElevation,
|
2321
|
-
comment:
|
3073
|
+
comment: "The original description of the elevation (altitude, usually above sea level) of the Location.".freeze,
|
2322
3074
|
"dc:description": "Example: \"100-200 m\"".freeze,
|
2323
3075
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#verbatimElevation-2009-04-24".freeze,
|
2324
3076
|
"dc:issued": "2008-11-19".freeze,
|
@@ -2331,7 +3083,7 @@ module RDF::Vocab
|
|
2331
3083
|
label: "Verbatim Elevation".freeze,
|
2332
3084
|
type: "rdf:Property".freeze
|
2333
3085
|
property :verbatimEventDate,
|
2334
|
-
comment:
|
3086
|
+
comment: "The verbatim original representation of the date and time information for an Event.".freeze,
|
2335
3087
|
"dc:description": "Examples: \"spring 1910\", \"Marzo 2002\", \"1999-03-XX\", \"17IV1934\"".freeze,
|
2336
3088
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#verbatimEventDate-2009-04-24".freeze,
|
2337
3089
|
"dc:issued": "2008-11-19".freeze,
|
@@ -2344,7 +3096,7 @@ module RDF::Vocab
|
|
2344
3096
|
label: "Verbatim EventDate".freeze,
|
2345
3097
|
type: "rdf:Property".freeze
|
2346
3098
|
property :verbatimLatitude,
|
2347
|
-
comment:
|
3099
|
+
comment: "The verbatim original latitude of the Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in verbatimSRS and the coordinate system should be stored in verbatimCoordinateSystem.".freeze,
|
2348
3100
|
"dc:description": "Example: \"41 05 54.03S\"".freeze,
|
2349
3101
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#verbatimLatitude-2009-04-24".freeze,
|
2350
3102
|
"dc:issued": "2008-11-19".freeze,
|
@@ -2357,7 +3109,7 @@ module RDF::Vocab
|
|
2357
3109
|
label: "Verbatim Latitude".freeze,
|
2358
3110
|
type: "rdf:Property".freeze
|
2359
3111
|
property :verbatimLocality,
|
2360
|
-
comment:
|
3112
|
+
comment: "The original textual description of the place.".freeze,
|
2361
3113
|
"dc:description": "Example: \"25 km NNE Bariloche por R. Nac. 237\"".freeze,
|
2362
3114
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#verbatimLocality-2009-04-24".freeze,
|
2363
3115
|
"dc:issued": "2008-11-19".freeze,
|
@@ -2369,7 +3121,7 @@ module RDF::Vocab
|
|
2369
3121
|
label: "Verbatim Locality".freeze,
|
2370
3122
|
type: "rdf:Property".freeze
|
2371
3123
|
property :verbatimLongitude,
|
2372
|
-
comment:
|
3124
|
+
comment: "The verbatim original longitude of the Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in verbatimSRS and the coordinate system should be stored in verbatimCoordinateSystem.".freeze,
|
2373
3125
|
"dc:description": "Example: \"121d 10' 34\" W\"".freeze,
|
2374
3126
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#verbatimLongitude-2009-04-24".freeze,
|
2375
3127
|
"dc:issued": "2008-11-19".freeze,
|
@@ -2382,7 +3134,7 @@ module RDF::Vocab
|
|
2382
3134
|
label: "Verbatim Longitude".freeze,
|
2383
3135
|
type: "rdf:Property".freeze
|
2384
3136
|
property :verbatimSRS,
|
2385
|
-
comment:
|
3137
|
+
comment: "The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which coordinates given in verbatimLatitude and verbatimLongitude, or verbatimCoordinates are based. Recommended best practice is use the EPSG code as a controlled vocabulary to provide an SRS, if known. Otherwise use a controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value \"unknown\".".freeze,
|
2386
3138
|
"dc:description": "Examples: \"EPSG:4326\", \"WGS84\", \"NAD27\", \"Campo Inchauspe\", \"European 1950\", \"Clarke 1866\"".freeze,
|
2387
3139
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#verbatimSRS-2009-07-06".freeze,
|
2388
3140
|
"dc:issued": "2009-07-06".freeze,
|
@@ -2394,7 +3146,7 @@ module RDF::Vocab
|
|
2394
3146
|
label: "Verbatim SRS".freeze,
|
2395
3147
|
type: "rdf:Property".freeze
|
2396
3148
|
property :verbatimTaxonRank,
|
2397
|
-
comment:
|
3149
|
+
comment: "The taxonomic rank of the most specific name in the scientificName as it appears in the original record.".freeze,
|
2398
3150
|
"dc:description": "Examples: \"Agamospecies\", \"sub-lesus\", \"prole\", \"apomict\", \"nothogrex\", \"sp.\", \"subsp.\", \"var.\"".freeze,
|
2399
3151
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#verbatimTaxonRank-2009-09-21".freeze,
|
2400
3152
|
"dc:issued": "2009-07-06".freeze,
|
@@ -2407,7 +3159,7 @@ module RDF::Vocab
|
|
2407
3159
|
label: "Verbatim Taxon Rank".freeze,
|
2408
3160
|
type: "rdf:Property".freeze
|
2409
3161
|
property :vernacularName,
|
2410
|
-
comment:
|
3162
|
+
comment: "A common or vernacular name.".freeze,
|
2411
3163
|
"dc:description": "Examples: \"Andean Condor\", \"Condor Andino\", \"American Eagle\", \"Gänsegeier\"".freeze,
|
2412
3164
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#vernacularName-2009-07-06".freeze,
|
2413
3165
|
"dc:issued": "2009-07-06".freeze,
|
@@ -2419,7 +3171,7 @@ module RDF::Vocab
|
|
2419
3171
|
label: "Vernacular Name".freeze,
|
2420
3172
|
type: "rdf:Property".freeze
|
2421
3173
|
property :waterBody,
|
2422
|
-
comment:
|
3174
|
+
comment: "The name of the water body in which the Location occurs. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.".freeze,
|
2423
3175
|
"dc:description": "Examples: \"Indian Ocean\", \"Baltic Sea\", \"Hudson River\"".freeze,
|
2424
3176
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#waterBody-2009-04-24".freeze,
|
2425
3177
|
"dc:issued": "2008-11-19".freeze,
|
@@ -2432,7 +3184,7 @@ module RDF::Vocab
|
|
2432
3184
|
label: "Water Body".freeze,
|
2433
3185
|
type: "rdf:Property".freeze
|
2434
3186
|
property :year,
|
2435
|
-
comment:
|
3187
|
+
comment: "The four-digit year in which the Event occurred, according to the Common Era Calendar.".freeze,
|
2436
3188
|
"dc:description": "Example: \"2008\"".freeze,
|
2437
3189
|
"dc:hasVersion": "http://rs.tdwg.org/dwc/terms/history/#year-2009-04-24".freeze,
|
2438
3190
|
"dc:issued": "2008-11-19".freeze,
|