From 34e47314f429b53ee19cc8bf7495f9c5deb24113 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20D=C3=B6ring?= Date: Tue, 13 Jan 2015 11:57:55 +0100 Subject: [PATCH] update terms reference layout according to https://github.com/tdwg/dwc/issues/68 --- build/recommended.tmpl | 90 +- build/update_terms.py | 25 +- terms/index.html | 4748 +++++++++++++++++++++++++--------------- 3 files changed, 3068 insertions(+), 1795 deletions(-) diff --git a/build/recommended.tmpl b/build/recommended.tmpl index 0294a90..e9c09a9 100644 --- a/build/recommended.tmpl +++ b/build/recommended.tmpl @@ -1,22 +1,49 @@ - Darwin Core Terms: A quick reference guide - + -#def showTerm($t) + + +
+ +
+

Darwin Core Term Reference

+

This document is a quick reference for all recommended Darwin Core terms. For complete historical term information, including version changes and pre-standard terms, see [HISTORY]. For a comparative table of elements from pre-standard versions of Darwin Core to the current terms in the standard, see [VERSIONS].

+
+ + +

+Audience: This document is targeted toward those who need a reference (lists and definitions) to the essential information about the current recommended Darwin Core terms.

+ +

This quick guide provides a list of all current terms of the Darwin core. The terms are organized by categories (in bold) in the index. The categories correspond to Darwin Core terms that are classes (terms that have other terms to describe them). The terms that describe a given class (the class properties) appear in the list immediately below the name of the category in the index. The index provides links to the term descriptions in the table below the index.

+ +

Names that begin with dcterms: are terms managed by the Dublin Core Metadata Initiative [DCMI], which are reproduced here and which may include a description and comments adapted for the biodiversity community. The original definition of such terms can be found by following the link given in the Details section for the term.

+ +

Terms under the Record-level Terms section apply to the whole record regardless of the record type. For example, a record for a camera trap bird sighting would fall into the Dublin Core dcterms:type category StillImage and at the same time into the Darwin Core basisOfRecord category MachineObservation - a particular type of Occurrence, so the value of dcterms:type term for the record would be "StillImage" and the value of the basisOfRecord term would be "MachineObservation" to show which kind of Occurrence record it is. All of the rest of the record-level terms would apply to the Occurrence record.

+ +

The terms found under the Auxiliary Terms section can only be meaningfully implemented in an application that supports relational structures. For example, none of the auxiliary terms will be found in the specification of the Simple Darwin Core [SIMPLEDWC], which is "flat" in structure.

+ + +#def showTerm($t, $isProperty) #if $t.uri is not None - -
+
Name
-
$t.name
+
$t.name
+ +
Label
+
$t.label
Identifier
-
$t.uri
+
$t.uri
- #if $t.class is not None + #if $isProperty
Class
$t.class
#end if @@ -27,48 +54,39 @@
Comment
$t.comment
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/$t.fullname
+ +
History
$t.version
-
#end if #end def - - -
-
-

Darwin Core Term Reference

-
- #for $group in $groups +
+
#if $group.uri is not None -

$group.name

+

$group.name

#else -

$group.name

+

$group.name

#end if -

- #set $sep = '' +

+
+ + $showTerm(group, False) + + #for $t in $group.terms + $showTerm(t, True) + #end for + #end for -
- -#for $t in $groups - $showTerm(t) -#end for - - -#for $group in $groups - #for $t in $group.terms - $showTerm(t) - #end for -#end for
diff --git a/build/update_terms.py b/build/update_terms.py index 012c4b4..f7b05f0 100755 --- a/build/update_terms.py +++ b/build/update_terms.py @@ -15,8 +15,9 @@ DC=Namespace("http://purl.org/dc/terms/") DWCA=Namespace("http://rs.tdwg.org/dwc/terms/attributes/") def buildHtml(): + data=parseTerms() print """building html files""" - html = Template(file="recommended.tmpl", searchList=[parseTerms()]) + html = Template(file="recommended.tmpl", searchList=[data]) recommended = open("../terms/index.html", "w") recommended.write(str(html)) recommended.close() @@ -26,19 +27,28 @@ def buildDownloads(): print """TBD""" -def getTerm(name, g): +def veriyfCompleteness(graph, yaml): + print """veriyf graph completeness""" + print """TBD""" + +def anchorLinks(x): + print """TBD""" + +def getTermDef(name, g): t={} + t["name"]=name + t["fullname"]="dwc:"+name if name.startswith("DC_"): name=name[3:] uri=DC[name] t["name"]="dcterms:"+name + t["fullname"]=t["name"] elif name.find(" ") > 0: uri=None - t["name"]=name else: uri=DWC[name] - t["name"]=name t["uri"]=uri + t["label"]=g.value(subject=uri, predicate=RDFS.label) t["class"]=g.value(subject=uri, predicate=DWCA.organizedInClass) t["definition"]=g.value(subject=uri, predicate=RDFS.comment) t["comment"]=g.value(subject=uri, predicate=DC.description) @@ -57,16 +67,17 @@ def parseTerms(): g.add( (uri, RDFS.comment, Literal(dc[t]["definition"])) ) g.add( (uri, DC.description, Literal(dc[t]["comment"])) ) g.add( (uri, DC.hasVersion, URIRef(dc[t]["details"])) ) + # before we continue verify we have all terms covered in both the order yaml and the graph + veriyfCompleteness(g, order) data={} groups=[] for groupData in order: - group=getTerm(sorted(groupData.keys())[0], g) + group=getTermDef(sorted(groupData.keys())[0], g) groups.append(group) group["terms"]=[] for t in sorted(groupData.values())[0]: - group["terms"].append(getTerm(t, g)) + group["terms"].append(getTermDef(t, g)) data["groups"]=groups - # print data return data diff --git a/terms/index.html b/terms/index.html index 05d740e..f379787 100644 --- a/terms/index.html +++ b/terms/index.html @@ -1,244 +1,631 @@ - Darwin Core Terms: A quick reference guide - +
+

Darwin Core Term Reference

+

This document is a quick reference for all recommended Darwin Core terms. For complete historical term information, including version changes and pre-standard terms, see [HISTORY]. For a comparative table of elements from pre-standard versions of Darwin Core to the current terms in the standard, see [VERSIONS].

+ +

+Audience: This document is targeted toward those who need a reference (lists and definitions) to the essential information about the current recommended Darwin Core terms.

+ +

This quick guide provides a list of all current terms of the Darwin core. The terms are organized by categories (in bold) in the index. The categories correspond to Darwin Core terms that are classes (terms that have other terms to describe them). The terms that describe a given class (the class properties) appear in the list immediately below the name of the category in the index. The index provides links to the term descriptions in the table below the index.

+ +

Names that begin with dcterms: are terms managed by the Dublin Core Metadata Initiative [DCMI], which are reproduced here and which may include a description and comments adapted for the biodiversity community. The original definition of such terms can be found by following the link given in the Details section for the term.

+ +

Terms under the Record-level Terms section apply to the whole record regardless of the record type. For example, a record for a camera trap bird sighting would fall into the Dublin Core dcterms:type category StillImage and at the same time into the Darwin Core basisOfRecord category MachineObservation - a particular type of Occurrence, so the value of dcterms:type term for the record would be "StillImage" and the value of the basisOfRecord term would be "MachineObservation" to show which kind of Occurrence record it is. All of the rest of the record-level terms would apply to the Occurrence record.

+ +

The terms found under the Auxiliary Terms section can only be meaningfully implemented in an application that supports relational structures. For example, none of the auxiliary terms will be found in the specification of the Simple Darwin Core [SIMPLEDWC], which is "flat" in structure.

-

Record-level Terms

-

- dcterms:type - | dcterms:modified - | dcterms:language - | dcterms:license - | dcterms:rightsHolder - | dcterms:accessRights - | dcterms:bibliographicCitation - | dcterms:references - | institutionID - | collectionID - | datasetID - | institutionCode - | collectionCode - | datasetName - | ownerInstitutionCode - | basisOfRecord - | informationWithheld - | dataGeneralizations - | dynamicProperties -

-

Occurrence

-

- occurrenceID - | catalogNumber - | recordNumber - | recordedBy - | individualCount - | sex - | lifeStage - | reproductiveCondition - | behavior - | establishmentMeans - | occurrenceStatus - | preparations - | disposition - | associatedMedia - | associatedReferences - | associatedSequences - | associatedTaxa - | otherCatalogNumbers - | occurrenceRemarks -

-

Organism

-

- organismID - | organismName - | organismScope - | associatedOccurrences - | associatedOrganisms - | previousIdentifications - | organismRemarks -

-

MaterialSample

-

- materialSampleID -

-

Event

-

- eventID - | fieldNumber - | eventDate - | eventTime - | startDayOfYear - | endDayOfYear - | year - | month - | day - | verbatimEventDate - | habitat - | samplingProtocol - | samplingEffort - | fieldNotes - | eventRemarks -

-

dcterms:Location

-

- locationID - | higherGeographyID - | higherGeography - | continent - | waterBody - | islandGroup - | island - | country - | countryCode - | stateProvince - | county - | municipality - | locality - | verbatimLocality - | minimumElevationInMeters - | maximumElevationInMeters - | verbatimElevation - | minimumDepthInMeters - | maximumDepthInMeters - | verbatimDepth - | minimumDistanceAboveSurfaceInMeters - | maximumDistanceAboveSurfaceInMeters - | locationAccordingTo - | locationRemarks - | decimalLatitude - | decimalLongitude - | geodeticDatum - | coordinateUncertaintyInMeters - | coordinatePrecision - | pointRadiusSpatialFit - | verbatimCoordinates - | verbatimLatitude - | verbatimLongitude - | verbatimCoordinateSystem - | verbatimSRS - | footprintWKT - | footprintSRS - | footprintSpatialFit - | georeferencedBy - | georeferencedDate - | georeferenceProtocol - | georeferenceSources - | georeferenceVerificationStatus - | georeferenceRemarks -

-

GeologicalContext

-

- geologicalContextID - | earliestEonOrLowestEonothem - | latestEonOrHighestEonothem - | earliestEraOrLowestErathem - | latestEraOrHighestErathem - | earliestPeriodOrLowestSystem - | latestPeriodOrHighestSystem - | earliestEpochOrLowestSeries - | latestEpochOrHighestSeries - | earliestAgeOrLowestStage - | latestAgeOrHighestStage - | lowestBiostratigraphicZone - | highestBiostratigraphicZone - | lithostratigraphicTerms - | group - | formation - | member - | bed -

-

Identification

-

- identificationID - | identificationQualifier - | typeStatus - | identifiedBy - | dateIdentified - | identificationReferences - | identificationVerificationStatus - | identificationRemarks -

-

Taxon

-

- taxonID - | scientificNameID - | acceptedNameUsageID - | parentNameUsageID - | originalNameUsageID - | nameAccordingToID - | namePublishedInID - | taxonConceptID - | scientificName - | acceptedNameUsage - | parentNameUsage - | originalNameUsage - | nameAccordingTo - | namePublishedIn - | namePublishedInYear - | higherClassification - | kingdom - | phylum - | class - | order - | family - | genus - | subgenus - | specificEpithet - | infraspecificEpithet - | taxonRank - | verbatimTaxonRank - | scientificNameAuthorship - | vernacularName - | nomenclaturalCode - | taxonomicStatus - | nomenclaturalStatus - | taxonRemarks -

-

ResourceRelationship

-

- resourceRelationshipID - | resourceID - | relatedResourceID - | relationshipOfResource - | relationshipAccordingTo - | relationshipEstablishedDate - | relationshipRemarks -

-

MeasurementOrFact

-

- measurementID - | measurementType - | measurementValue - | measurementAccuracy - | measurementUnit - | measurementDeterminedBy - | measurementDeterminedDate - | measurementMethod - | measurementRemarks -

- -
- - -
+ +
+
+

Record-level Terms

+ +
+ + + +
Name
-
Occurrence
+
dcterms:type
+ +
Label
+
Identifier
-
http://rs.tdwg.org/dwc/terms/Occurrence
+
http://purl.org/dc/terms/type
+ +
Class
+
+ +
Definition
+
The nature or genre of the resource. For Darwin Core, recommended best practice is to use the name of the class that defines the root of the record.
+ +
Comment
+
Examples: "StillImage", "MovingImage", "Sound", "PhysicalObject", "Event", "Text". For discussion see http://terms.tdwg.org/wiki/dwc:type
+ +
Reference
+
http://terms.tdwg.org/wiki/dcterms:type
+ +
History
+
http://dublincore.org/usage/terms/history/#typeT-001
+
+ +
+
Name
+
dcterms:modified
+ +
Label
+
+ +
Identifier
+
http://purl.org/dc/terms/modified
+ +
Class
+
+ +
Definition
+
The most recent date-time on which the resource was changed. For Darwin Core, recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).
+ +
Comment
+
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. For discussion see http://terms.tdwg.org/wiki/dwc:modified
+ +
Reference
+
http://terms.tdwg.org/wiki/dcterms:modified
+ +
History
+
http://dublincore.org/usage/terms/history/#modified-003
+
+ +
+
Name
+
dcterms:language
+ +
Label
+
+ +
Identifier
+
http://purl.org/dc/terms/language
+ +
Class
+
+ +
Definition
+
A language of the resource. Recommended best practice is to use a controlled vocabulary such as RFC 4646 [RFC4646].
+ +
Comment
+
Examples: "en" for English, "es" for Spanish. For discussion see http://terms.tdwg.org/wiki/dwc:language
+ +
Reference
+
http://terms.tdwg.org/wiki/dcterms:language
+ +
History
+
http://dublincore.org/usage/terms/history/#languageT-001
+
+ +
+
Name
+
dcterms:license
+ +
Label
+
+ +
Identifier
+
http://purl.org/dc/terms/license
+ +
Class
+
+ +
Definition
+
A legal document giving official permission to do something with the resource.
+ +
Comment
+
Examples: "http://creativecommons.org/publicdomain/zero/1.0/legalcode", "http://creativecommons.org/licenses/by/4.0/legalcode". For discussion see http://terms.tdwg.org/wiki/dwc:license
+ +
Reference
+
http://terms.tdwg.org/wiki/dcterms:license
+ +
History
+
http://dublincore.org/usage/terms/history/#license-002
+
+ +
+
Name
+
dcterms:rightsHolder
+ +
Label
+
+ +
Identifier
+
http://purl.org/dc/terms/rightsHolder
+ +
Class
+
+ +
Definition
+
A person or organization owning or managing rights over the resource.
+ +
Comment
+
Example: "The Regents of the University of California.". For discussion see http://terms.tdwg.org/wiki/dwc:rightsHolder
+ +
Reference
+
http://terms.tdwg.org/wiki/dcterms:rightsHolder
+ +
History
+
http://dublincore.org/usage/terms/history/#rightsHolder-002
+
+ +
+
Name
+
dcterms:accessRights
+ +
Label
+
+ +
Identifier
+
http://purl.org/dc/terms/accessRights
+ +
Class
+
+ +
Definition
+
Information about who can access the resource or an indication of its security status. Access Rights may include information regarding access or restrictions based on privacy, security, or other policies.
+ +
Comment
+
Example: "not-for-profit use only". For discussion see http://terms.tdwg.org/wiki/dwc:accessRights
+ +
Reference
+
http://terms.tdwg.org/wiki/dcterms:accessRights
+ +
History
+
http://dublincore.org/usage/terms/history/#accessRights-002
+
+ +
+
Name
+
dcterms:bibliographicCitation
+ +
Label
+
+ +
Identifier
+
http://purl.org/dc/terms/bibliographicCitation
+ +
Class
+
+ +
Definition
+
A bibliographic reference for the resource as a statement indicating how this record should be cited (attributed) when used. Recommended practice is to include sufficient bibliographic detail to identify the resource as unambiguously as possible.
+ +
Comment
+
Examples: "Ctenomys sociabilis (MVZ 165861)" for a specimen, "Oliver P. Pearson. 1985. Los tuco-tucos (genera Ctenomys) de los Parques Nacionales Lanin y Nahuel Huapi, Argentina Historia Natural, 5(37):337-343." for a Taxon. For discussion see http://terms.tdwg.org/wiki/dwc:bibliographicCitation
+ +
Reference
+
http://terms.tdwg.org/wiki/dcterms:bibliographicCitation
+ +
History
+
http://dublincore.org/usage/terms/history/#bibliographicCitation-002
+
+ +
+
Name
+
dcterms:references
+ +
Label
+
+ +
Identifier
+
http://purl.org/dc/terms/references
+ +
Class
+
+ +
Definition
+
A related resource that is referenced, cited, or otherwise pointed to by the described resource.
+ +
Comment
+
Examples: "http://mvzarctos.berkeley.edu/guid/MVZ:Mamm:165861"; "http://www.catalogueoflife.org/annual-checklist/show_species_details.php?record_id=6197868". For discussion see http://terms.tdwg.org/wiki/dwc:references
+ +
Reference
+
http://terms.tdwg.org/wiki/dcterms:references
+ +
History
+
http://dublincore.org/usage/terms/history/#references-003
+
+ +
+
Name
+
institutionID
+ +
Label
+
Institution ID
+ +
Identifier
+
http://rs.tdwg.org/dwc/terms/institutionID
+ +
Class
+
+ +
Definition
+
An identifier for the institution having custody of the object(s) or information referred to in the record.
+ +
Comment
+
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".
+ +
Reference
+
http://terms.tdwg.org/wiki/dwc:institutionID
+ +
History
+
http://rs.tdwg.org/dwc/terms/history.html#institutionID-2009-09-11
+
+ +
+
Name
+
collectionID
+ +
Label
+
Collection ID
+ +
Identifier
+
http://rs.tdwg.org/dwc/terms/collectionID
+ +
Class
+
+ +
Definition
+
An identifier for the collection or dataset from which the record was derived.
+ +
Comment
+
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".
+ +
Reference
+
http://terms.tdwg.org/wiki/dwc:collectionID
+ +
History
+
http://rs.tdwg.org/dwc/terms/history.html#collectionID-2009-09-11
+
+ +
+
Name
+
datasetID
+ +
Label
+
Dataset ID
+ +
Identifier
+
http://rs.tdwg.org/dwc/terms/datasetID
+ +
Class
+
+ +
Definition
+
An identifier for the set of data. May be a global unique identifier or an identifier specific to a collection or institution.
+ +
Comment
+
+ +
Reference
+
http://terms.tdwg.org/wiki/dwc:datasetID
+ +
History
+
http://rs.tdwg.org/dwc/terms/history.html#datasetID-2009-09-11
+
+ +
+
Name
+
institutionCode
+ +
Label
+
Institution Code
+ +
Identifier
+
http://rs.tdwg.org/dwc/terms/institutionCode
+ +
Class
+
+ +
Definition
+
The name (or acronym) in use by the institution having custody of the object(s) or information referred to in the record.
+ +
Comment
+
Examples: "MVZ", "FMNH", "AKN-CLO", "University of California Museum of Paleontology (UCMP)"
+ +
Reference
+
http://terms.tdwg.org/wiki/dwc:institutionCode
+ +
History
+
http://rs.tdwg.org/dwc/terms/history.html#institutionCode-2009-09-11
+
+ +
+
Name
+
collectionCode
+ +
Label
+
Collection Code
+ +
Identifier
+
http://rs.tdwg.org/dwc/terms/collectionCode
+ +
Class
+
+ +
Definition
+
The name, acronym, coden, or initialism identifying the collection or data set from which the record was derived.
+ +
Comment
+
Examples: "Mammals", "Hildebrandt", "eBird"
+ +
Reference
+
http://terms.tdwg.org/wiki/dwc:collectionCode
+ +
History
+
http://rs.tdwg.org/dwc/terms/history.html#collectionCode-2009-09-11
+
+ +
+
Name
+
datasetName
+ +
Label
+
Dataset Name
+ +
Identifier
+
http://rs.tdwg.org/dwc/terms/datasetName
+ +
Class
+
+ +
Definition
+
The name identifying the data set from which the record was derived.
+ +
Comment
+
Examples: "Grinnell Resurvey Mammals", "Lacey Ctenomys Recaptures"
+ +
Reference
+
http://terms.tdwg.org/wiki/dwc:datasetName
+ +
History
+
http://rs.tdwg.org/dwc/terms/history.html#datasetName-2009-09-11
+
+ +
+
Name
+
ownerInstitutionCode
+ +
Label
+
Owner Institution Code
+ +
Identifier
+
http://rs.tdwg.org/dwc/terms/ownerInstitutionCode
+ +
Class
+
+ +
Definition
+
The name (or acronym) in use by the institution having ownership of the object(s) or information referred to in the record.
+ +
Comment
+
Examples: "NPS", "APN", "InBio"
+ +
Reference
+
http://terms.tdwg.org/wiki/dwc:ownerInstitutionCode
+ +
History
+
http://rs.tdwg.org/dwc/terms/history.html#ownerInstitutionCode-2009-08-24
+
+ +
+
Name
+
basisOfRecord
+ +
Label
+
Basis of Record
+ +
Identifier
+
http://rs.tdwg.org/dwc/terms/basisOfRecord
+ +
Class
+
+ +
Definition
+
The specific nature of the data record.
+ +
Comment
+
Recommended best practice is to use a controlled vocabulary such as the list of Darwin Core classes. Examples: "PreservedSpecimen", "FossilSpecimen", "LivingSpecimen", "HumanObservation", "MachineObservation"
+ +
Reference
+
http://terms.tdwg.org/wiki/dwc:basisOfRecord
+ +
History
+
http://rs.tdwg.org/dwc/terms/history.html#basisOfRecord-2014-10-23
+
+ +
+
Name
+
informationWithheld
+ +
Label
+
Information Withheld
+ +
Identifier
+
http://rs.tdwg.org/dwc/terms/informationWithheld
+ +
Class
+
+ +
Definition
+
Additional information that exists, but that has not been shared in the given record.
+ +
Comment
+
Examples: "location information not given for endangered species", "collector identities withheld", "ask about tissue samples"
+ +
Reference
+
http://terms.tdwg.org/wiki/dwc:informationWithheld
+ +
History
+
http://rs.tdwg.org/dwc/terms/history.html#informationWithheld-2009-04-24
+
+ +
+
Name
+
dataGeneralizations
+ +
Label
+
Data Generalizations
+ +
Identifier
+
http://rs.tdwg.org/dwc/terms/dataGeneralizations
+ +
Class
+
+ +
Definition
+
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.
+ +
Comment
+
Example: "Coordinates generalized from original GPS coordinates to the nearest half degree grid cell"
+ +
Reference
+
http://terms.tdwg.org/wiki/dwc:dataGeneralizations
+ +
History
+
http://rs.tdwg.org/dwc/terms/history.html#dataGeneralizations-2009-04-24
+
+ +
+
Name
+
dynamicProperties
+ +
Label
+
Dynamic Properties
+ +
Identifier
+
http://rs.tdwg.org/dwc/terms/dynamicProperties
+ +
Class
+
+ +
Definition
+
A list of additional measurements, facts, characteristics, or assertions about the record. Meant to provide a mechanism for structured content.
+ +
Comment
+
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"}".
+ +
Reference
+
http://terms.tdwg.org/wiki/dwc:dynamicProperties
+ +
History
+
http://rs.tdwg.org/dwc/terms/history.html#dynamicProperties-2014-10-23
+
+ + +
+
+

Occurrence

+ +
+ +
+
Name
+
Occurrence
+ +
Label
+
Occurrence
+ +
Identifier
+
http://rs.tdwg.org/dwc/terms/Occurrence
Definition
@@ -247,580 +634,25 @@
Comment
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.
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:Occurrence
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#Occurrence-2014-10-23
-
- -
+ +
Name
-
Organism
+
occurrenceID
+ +
Label
+
Occurrence ID
Identifier
-
http://rs.tdwg.org/dwc/terms/Organism
- - -
Definition
-
A particular organism or defined group of organisms considered to be taxonomically homogeneous.
- -
Comment
-
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.
- -
Details
-
http://rs.tdwg.org/dwc/terms/history.html#Organism-2014-10-23
-
-
- - -
-
Name
-
MaterialSample
- -
Identifier
-
http://rs.tdwg.org/dwc/terms/MaterialSample
- - -
Definition
-
A physical results of a sampling (or subsampling) event. In biological collections, the material sample is typically collected, and either preserved or destructively processed.
- -
Comment
-
Examples: A whole organism preserved in a collection. A part of an organism isolated for some purpose. A soil sample. A marine microbial sample.
- -
Details
-
http://rs.tdwg.org/dwc/terms/history.html#MaterialSample-2014-10-23
-
-
- - -
-
Name
-
Event
- -
Identifier
-
http://rs.tdwg.org/dwc/terms/Event
- - -
Definition
-
An action that occurs at some location during some time.
- -
Comment
-
Examples: A specimen collection process. A machine observation.
- -
Details
-
http://rs.tdwg.org/dwc/terms/history.html#Event-2014-10-23
-
-
- - -
-
Name
-
dcterms:Location
- -
Identifier
-
http://purl.org/dc/terms/Location
- - -
Definition
-
- -
Comment
-
- -
Details
-
-
-
- - -
-
Name
-
GeologicalContext
- -
Identifier
-
http://rs.tdwg.org/dwc/terms/GeologicalContext
- - -
Definition
-
Geological information, such as stratigraphy, that qualifies a region or place.
- -
Comment
-
Example: A lithostratigraphic layer.
- -
Details
-
http://rs.tdwg.org/dwc/terms/history.html#GeologicalContext-2014-10-23
-
-
- - -
-
Name
-
Identification
- -
Identifier
-
http://rs.tdwg.org/dwc/terms/Identification
- - -
Definition
-
A taxonomic determination (e.g., the assignment to a taxon).
- -
Comment
-
Example: A subspecies determination of an organism.
- -
Details
-
http://rs.tdwg.org/dwc/terms/history.html#Identification-2014-10-23
-
-
- - -
-
Name
-
Taxon
- -
Identifier
-
http://rs.tdwg.org/dwc/terms/Taxon
- - -
Definition
-
A group of organisms (sensu http://purl.obolibrary.org/obo/OBI_0100026) considered by taxonomists to form a homogeneous unit.
- -
Comment
-
Example: The genus Truncorotaloides as published by Brönnimann et al. in 1953 in the Journal of Paleontology Vol. 27(6) p. 817-820.
- -
Details
-
http://rs.tdwg.org/dwc/terms/history.html#Taxon-2014-10-23
-
-
- - -
-
Name
-
ResourceRelationship
- -
Identifier
-
http://rs.tdwg.org/dwc/terms/ResourceRelationship
- - -
Definition
-
A relationship of one rdfs:Resource (http://www.w3.org/2000/01/rdf-schema#Resource) to another.
- -
Comment
-
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.
- -
Details
-
http://rs.tdwg.org/dwc/terms/history.html#ResourceRelationship-2014-10-23
-
-
- - -
-
Name
-
MeasurementOrFact
- -
Identifier
-
http://rs.tdwg.org/dwc/terms/MeasurementOrFact
- - -
Definition
-
A measurement of or fact about an rdfs:Resource (http://www.w3.org/2000/01/rdf-schema#Resource).
- -
Comment
-
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.
- -
Details
-
http://rs.tdwg.org/dwc/terms/history.html#MeasurementOrFact-2014-10-23
-
-
- - - - -
-
Name
-
dcterms:type
- -
Identifier
-
http://purl.org/dc/terms/type
- - -
Definition
-
The nature or genre of the resource. For Darwin Core, recommended best practice is to use the name of the class that defines the root of the record.
- -
Comment
-
Examples: "StillImage", "MovingImage", "Sound", "PhysicalObject", "Event", "Text". For discussion see http://terms.tdwg.org/wiki/dwc:type
- -
Details
-
http://dublincore.org/usage/terms/history/#typeT-001
-
-
- - -
-
Name
-
dcterms:modified
- -
Identifier
-
http://purl.org/dc/terms/modified
- - -
Definition
-
The most recent date-time on which the resource was changed. For Darwin Core, recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).
- -
Comment
-
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. For discussion see http://terms.tdwg.org/wiki/dwc:modified
- -
Details
-
http://dublincore.org/usage/terms/history/#modified-003
-
-
- - -
-
Name
-
dcterms:language
- -
Identifier
-
http://purl.org/dc/terms/language
- - -
Definition
-
A language of the resource. Recommended best practice is to use a controlled vocabulary such as RFC 4646 [RFC4646].
- -
Comment
-
Examples: "en" for English, "es" for Spanish. For discussion see http://terms.tdwg.org/wiki/dwc:language
- -
Details
-
http://dublincore.org/usage/terms/history/#languageT-001
-
-
- - -
-
Name
-
dcterms:license
- -
Identifier
-
http://purl.org/dc/terms/license
- - -
Definition
-
A legal document giving official permission to do something with the resource.
- -
Comment
-
Examples: "http://creativecommons.org/publicdomain/zero/1.0/legalcode", "http://creativecommons.org/licenses/by/4.0/legalcode". For discussion see http://terms.tdwg.org/wiki/dwc:license
- -
Details
-
http://dublincore.org/usage/terms/history/#license-002
-
-
- - -
-
Name
-
dcterms:rightsHolder
- -
Identifier
-
http://purl.org/dc/terms/rightsHolder
- - -
Definition
-
A person or organization owning or managing rights over the resource.
- -
Comment
-
Example: "The Regents of the University of California.". For discussion see http://terms.tdwg.org/wiki/dwc:rightsHolder
- -
Details
-
http://dublincore.org/usage/terms/history/#rightsHolder-002
-
-
- - -
-
Name
-
dcterms:accessRights
- -
Identifier
-
http://purl.org/dc/terms/accessRights
- - -
Definition
-
Information about who can access the resource or an indication of its security status. Access Rights may include information regarding access or restrictions based on privacy, security, or other policies.
- -
Comment
-
Example: "not-for-profit use only". For discussion see http://terms.tdwg.org/wiki/dwc:accessRights
- -
Details
-
http://dublincore.org/usage/terms/history/#accessRights-002
-
-
- - -
-
Name
-
dcterms:bibliographicCitation
- -
Identifier
-
http://purl.org/dc/terms/bibliographicCitation
- - -
Definition
-
A bibliographic reference for the resource as a statement indicating how this record should be cited (attributed) when used. Recommended practice is to include sufficient bibliographic detail to identify the resource as unambiguously as possible.
- -
Comment
-
Examples: "Ctenomys sociabilis (MVZ 165861)" for a specimen, "Oliver P. Pearson. 1985. Los tuco-tucos (genera Ctenomys) de los Parques Nacionales Lanin y Nahuel Huapi, Argentina Historia Natural, 5(37):337-343." for a Taxon. For discussion see http://terms.tdwg.org/wiki/dwc:bibliographicCitation
- -
Details
-
http://dublincore.org/usage/terms/history/#bibliographicCitation-002
-
-
- - -
-
Name
-
dcterms:references
- -
Identifier
-
http://purl.org/dc/terms/references
- - -
Definition
-
A related resource that is referenced, cited, or otherwise pointed to by the described resource.
- -
Comment
-
Examples: "http://mvzarctos.berkeley.edu/guid/MVZ:Mamm:165861"; "http://www.catalogueoflife.org/annual-checklist/show_species_details.php?record_id=6197868". For discussion see http://terms.tdwg.org/wiki/dwc:references
- -
Details
-
http://dublincore.org/usage/terms/history/#references-003
-
-
- - -
-
Name
-
institutionID
- -
Identifier
-
http://rs.tdwg.org/dwc/terms/institutionID
- - -
Definition
-
An identifier for the institution having custody of the object(s) or information referred to in the record.
- -
Comment
-
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".
- -
Details
-
http://rs.tdwg.org/dwc/terms/history.html#institutionID-2009-09-11
-
-
- - -
-
Name
-
collectionID
- -
Identifier
-
http://rs.tdwg.org/dwc/terms/collectionID
- - -
Definition
-
An identifier for the collection or dataset from which the record was derived.
- -
Comment
-
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".
- -
Details
-
http://rs.tdwg.org/dwc/terms/history.html#collectionID-2009-09-11
-
-
- - -
-
Name
-
datasetID
- -
Identifier
-
http://rs.tdwg.org/dwc/terms/datasetID
- - -
Definition
-
An identifier for the set of data. May be a global unique identifier or an identifier specific to a collection or institution.
- -
Comment
-
- -
Details
-
http://rs.tdwg.org/dwc/terms/history.html#datasetID-2009-09-11
-
-
- - -
-
Name
-
institutionCode
- -
Identifier
-
http://rs.tdwg.org/dwc/terms/institutionCode
- - -
Definition
-
The name (or acronym) in use by the institution having custody of the object(s) or information referred to in the record.
- -
Comment
-
Examples: "MVZ", "FMNH", "AKN-CLO", "University of California Museum of Paleontology (UCMP)"
- -
Details
-
http://rs.tdwg.org/dwc/terms/history.html#institutionCode-2009-09-11
-
-
- - -
-
Name
-
collectionCode
- -
Identifier
-
http://rs.tdwg.org/dwc/terms/collectionCode
- - -
Definition
-
The name, acronym, coden, or initialism identifying the collection or data set from which the record was derived.
- -
Comment
-
Examples: "Mammals", "Hildebrandt", "eBird"
- -
Details
-
http://rs.tdwg.org/dwc/terms/history.html#collectionCode-2009-09-11
-
-
- - -
-
Name
-
datasetName
- -
Identifier
-
http://rs.tdwg.org/dwc/terms/datasetName
- - -
Definition
-
The name identifying the data set from which the record was derived.
- -
Comment
-
Examples: "Grinnell Resurvey Mammals", "Lacey Ctenomys Recaptures"
- -
Details
-
http://rs.tdwg.org/dwc/terms/history.html#datasetName-2009-09-11
-
-
- - -
-
Name
-
ownerInstitutionCode
- -
Identifier
-
http://rs.tdwg.org/dwc/terms/ownerInstitutionCode
- - -
Definition
-
The name (or acronym) in use by the institution having ownership of the object(s) or information referred to in the record.
- -
Comment
-
Examples: "NPS", "APN", "InBio"
- -
Details
-
http://rs.tdwg.org/dwc/terms/history.html#ownerInstitutionCode-2009-08-24
-
-
- - -
-
Name
-
basisOfRecord
- -
Identifier
-
http://rs.tdwg.org/dwc/terms/basisOfRecord
- - -
Definition
-
The specific nature of the data record.
- -
Comment
-
Recommended best practice is to use a controlled vocabulary such as the list of Darwin Core classes. Examples: "PreservedSpecimen", "FossilSpecimen", "LivingSpecimen", "HumanObservation", "MachineObservation"
- -
Details
-
http://rs.tdwg.org/dwc/terms/history.html#basisOfRecord-2014-10-23
-
-
- - -
-
Name
-
informationWithheld
- -
Identifier
-
http://rs.tdwg.org/dwc/terms/informationWithheld
- - -
Definition
-
Additional information that exists, but that has not been shared in the given record.
- -
Comment
-
Examples: "location information not given for endangered species", "collector identities withheld", "ask about tissue samples"
- -
Details
-
http://rs.tdwg.org/dwc/terms/history.html#informationWithheld-2009-04-24
-
-
- - -
-
Name
-
dataGeneralizations
- -
Identifier
-
http://rs.tdwg.org/dwc/terms/dataGeneralizations
- - -
Definition
-
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.
- -
Comment
-
Example: "Coordinates generalized from original GPS coordinates to the nearest half degree grid cell"
- -
Details
-
http://rs.tdwg.org/dwc/terms/history.html#dataGeneralizations-2009-04-24
-
-
- - -
-
Name
-
dynamicProperties
- -
Identifier
-
http://rs.tdwg.org/dwc/terms/dynamicProperties
- - -
Definition
-
A list of additional measurements, facts, characteristics, or assertions about the record. Meant to provide a mechanism for structured content.
- -
Comment
-
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"}".
- -
Details
-
http://rs.tdwg.org/dwc/terms/history.html#dynamicProperties-2014-10-23
-
-
- - -
-
Name
-
occurrenceID
- -
Identifier
-
http://rs.tdwg.org/dwc/terms/occurrenceID
+
http://rs.tdwg.org/dwc/terms/occurrenceID
Class
http://rs.tdwg.org/dwc/terms/Occurrence
@@ -831,18 +663,24 @@
Comment
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"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:occurrenceID
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#occurrenceID-2009-04-24
-
- -
+
Name
-
catalogNumber
+
catalogNumber
+ +
Label
+
Catalog Number
Identifier
-
http://rs.tdwg.org/dwc/terms/catalogNumber
+
http://rs.tdwg.org/dwc/terms/catalogNumber
Class
http://rs.tdwg.org/dwc/terms/Occurrence
@@ -853,18 +691,24 @@
Comment
Examples: "2008.1334", "145732a", "145732"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:catalogNumber
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#catalogNumber-2009-04-24
-
- -
+
Name
-
recordNumber
+
recordNumber
+ +
Label
+
Record Number
Identifier
-
http://rs.tdwg.org/dwc/terms/recordNumber
+
http://rs.tdwg.org/dwc/terms/recordNumber
Class
http://rs.tdwg.org/dwc/terms/Occurrence
@@ -875,18 +719,24 @@
Comment
Example: "OPP 7101"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:recordNumber
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#recordNumber-2009-04-24
-
- -
+
Name
-
recordedBy
+
recordedBy
+ +
Label
+
Recorded By
Identifier
-
http://rs.tdwg.org/dwc/terms/recordedBy
+
http://rs.tdwg.org/dwc/terms/recordedBy
Class
http://rs.tdwg.org/dwc/terms/Occurrence
@@ -897,18 +747,24 @@
Comment
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.
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:recordedBy
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#recordedBy-2014-10-23
-
- -
+
Name
-
individualCount
+
individualCount
+ +
Label
+
Individual Count
Identifier
-
http://rs.tdwg.org/dwc/terms/individualCount
+
http://rs.tdwg.org/dwc/terms/individualCount
Class
http://rs.tdwg.org/dwc/terms/Occurrence
@@ -919,18 +775,24 @@
Comment
Examples: "1", "25"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:individualCount
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#individualCount-2009-04-24
-
- -
+
Name
-
sex
+
sex
+ +
Label
+
Sex
Identifier
-
http://rs.tdwg.org/dwc/terms/sex
+
http://rs.tdwg.org/dwc/terms/sex
Class
http://rs.tdwg.org/dwc/terms/Occurrence
@@ -941,18 +803,24 @@
Comment
Examples: "female", "hermaphrodite", "8 males, 4 females"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:sex
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#sex-2009-04-24
-
- -
+
Name
-
lifeStage
+
lifeStage
+ +
Label
+
Life Stage
Identifier
-
http://rs.tdwg.org/dwc/terms/lifeStage
+
http://rs.tdwg.org/dwc/terms/lifeStage
Class
http://rs.tdwg.org/dwc/terms/Occurrence
@@ -963,18 +831,24 @@
Comment
Examples: "egg", "eft", "juvenile", "adult", "2 adults 4 juveniles"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:lifeStage
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#lifeStage-2009-04-24
-
- -
+
Name
-
reproductiveCondition
+
reproductiveCondition
+ +
Label
+
Reproductive Condition
Identifier
-
http://rs.tdwg.org/dwc/terms/reproductiveCondition
+
http://rs.tdwg.org/dwc/terms/reproductiveCondition
Class
http://rs.tdwg.org/dwc/terms/Occurrence
@@ -985,18 +859,24 @@
Comment
Examples" "non-reproductive", "pregnant", "in bloom", "fruit-bearing"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:reproductiveCondition
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#reproductiveCondition-2009-04-24
-
- -
+
Name
-
behavior
+
behavior
+ +
Label
+
Behavior
Identifier
-
http://rs.tdwg.org/dwc/terms/behavior
+
http://rs.tdwg.org/dwc/terms/behavior
Class
http://rs.tdwg.org/dwc/terms/Occurrence
@@ -1007,18 +887,24 @@
Comment
Examples: "roosting", "foraging", "running"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:behavior
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#behavior-2009-04-24
-
- -
+
Name
-
establishmentMeans
+
establishmentMeans
+ +
Label
+
Establishment Means
Identifier
-
http://rs.tdwg.org/dwc/terms/establishmentMeans
+
http://rs.tdwg.org/dwc/terms/establishmentMeans
Class
http://rs.tdwg.org/dwc/terms/Occurrence
@@ -1029,18 +915,24 @@
Comment
Examples: "native", "introduced", "naturalised", "invasive", "managed"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:establishmentMeans
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#establishmentMeans-2009-04-24
-
- -
+
Name
-
occurrenceStatus
+
occurrenceStatus
+ +
Label
+
Occurrence Status
Identifier
-
http://rs.tdwg.org/dwc/terms/occurrenceStatus
+
http://rs.tdwg.org/dwc/terms/occurrenceStatus
Class
http://rs.tdwg.org/dwc/terms/Occurrence
@@ -1051,18 +943,24 @@
Comment
Examples: "present", "absent"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:occurrenceStatus
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#occurrenceStatus-2009-09-17
-
- -
+
Name
-
preparations
+
preparations
+ +
Label
+
Preparations
Identifier
-
http://rs.tdwg.org/dwc/terms/preparations
+
http://rs.tdwg.org/dwc/terms/preparations
Class
http://rs.tdwg.org/dwc/terms/Occurrence
@@ -1073,18 +971,24 @@
Comment
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)".
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:preparations
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#preparations-2014-10-23
-
- -
+
Name
-
disposition
+
disposition
+ +
Label
+
Disposition
Identifier
-
http://rs.tdwg.org/dwc/terms/disposition
+
http://rs.tdwg.org/dwc/terms/disposition
Class
http://rs.tdwg.org/dwc/terms/Occurrence
@@ -1095,18 +999,24 @@
Comment
Examples: "in collection", "missing", "voucher elsewhere", "duplicates elsewhere"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:disposition
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#disposition-2009-04-24
-
- -
+
Name
-
associatedMedia
+
associatedMedia
+ +
Label
+
Associated Media
Identifier
-
http://rs.tdwg.org/dwc/terms/associatedMedia
+
http://rs.tdwg.org/dwc/terms/associatedMedia
Class
http://rs.tdwg.org/dwc/terms/Occurrence
@@ -1117,18 +1027,24 @@
Comment
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".
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:associatedMedia
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#associatedMedia-2014-10-23
-
- -
+
Name
-
associatedReferences
+
associatedReferences
+ +
Label
+
Associated References
Identifier
-
http://rs.tdwg.org/dwc/terms/associatedReferences
+
http://rs.tdwg.org/dwc/terms/associatedReferences
Class
http://rs.tdwg.org/dwc/terms/Occurrence
@@ -1139,18 +1055,24 @@
Comment
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.".
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:associatedReferences
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#associatedReferences-2014-10-23
-
- -
+
Name
-
associatedSequences
+
associatedSequences
+ +
Label
+
Associated Sequences
Identifier
-
http://rs.tdwg.org/dwc/terms/associatedSequences
+
http://rs.tdwg.org/dwc/terms/associatedSequences
Class
http://rs.tdwg.org/dwc/terms/Occurrence
@@ -1161,18 +1083,24 @@
Comment
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".
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:associatedSequences
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#associatedSequences-2014-10-23
-
- -
+
Name
-
associatedTaxa
+
associatedTaxa
+ +
Label
+
Associated Taxa
Identifier
-
http://rs.tdwg.org/dwc/terms/associatedTaxa
+
http://rs.tdwg.org/dwc/terms/associatedTaxa
Class
http://rs.tdwg.org/dwc/terms/Occurrence
@@ -1183,18 +1111,24 @@
Comment
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".
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:associatedTaxa
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#associatedTaxa-2014-10-23
-
- -
+
Name
-
otherCatalogNumbers
+
otherCatalogNumbers
+ +
Label
+
Other Catalog Numbers
Identifier
-
http://rs.tdwg.org/dwc/terms/otherCatalogNumbers
+
http://rs.tdwg.org/dwc/terms/otherCatalogNumbers
Class
http://rs.tdwg.org/dwc/terms/Occurrence
@@ -1205,18 +1139,24 @@
Comment
The recommended best practice is to separate the values with a vertical bar (' | '). Examples: "FMNH:Mammal:1234", "NPS YELLO6778 | MBG 33424".
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:otherCatalogNumbers
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#otherCatalogNumbers-2014-10-23
-
- -
+
Name
-
occurrenceRemarks
+
occurrenceRemarks
+ +
Label
+
Occurrence Remarks
Identifier
-
http://rs.tdwg.org/dwc/terms/occurrenceRemarks
+
http://rs.tdwg.org/dwc/terms/occurrenceRemarks
Class
http://rs.tdwg.org/dwc/terms/Occurrence
@@ -1227,18 +1167,65 @@
Comment
Example: "found dead on road"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:occurrenceRemarks
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#occurrenceRemarks-2009-04-24
-
- -
+ +
+
+

Organism

+ +
+ +
Name
-
organismID
+
Organism
+ +
Label
+
Organism
Identifier
-
http://rs.tdwg.org/dwc/terms/organismID
+
http://rs.tdwg.org/dwc/terms/Organism
+ + +
Definition
+
A particular organism or defined group of organisms considered to be taxonomically homogeneous.
+ +
Comment
+
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.
+ +
Reference
+
http://terms.tdwg.org/wiki/dwc:Organism
+ +
History
+
http://rs.tdwg.org/dwc/terms/history.html#Organism-2014-10-23
+
+ + +
+
Name
+
organismID
+ +
Label
+
Organism ID
+ +
Identifier
+
http://rs.tdwg.org/dwc/terms/organismID
Class
http://rs.tdwg.org/dwc/terms/Organism
@@ -1249,18 +1236,24 @@
Comment
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:organismID
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#organismID-2014-10-23
-
- -
+
Name
-
organismName
+
organismName
+ +
Label
+
Organism Name
Identifier
-
http://rs.tdwg.org/dwc/terms/organismName
+
http://rs.tdwg.org/dwc/terms/organismName
Class
http://rs.tdwg.org/dwc/terms/Organism
@@ -1271,18 +1264,24 @@
Comment
Examples: "Huberta", "Boab Prison Tree", "J pod".
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:organismName
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#organismName-2014-10-23
-
- -
+
Name
-
organismScope
+
organismScope
+ +
Label
+
Organism Scope
Identifier
-
http://rs.tdwg.org/dwc/terms/organismScope
+
http://rs.tdwg.org/dwc/terms/organismScope
Class
http://rs.tdwg.org/dwc/terms/Organism
@@ -1293,18 +1292,24 @@
Comment
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".
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:organismScope
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#organismScope-2014-10-23
-
- -
+
Name
-
associatedOccurrences
+
associatedOccurrences
+ +
Label
+
Associated Occurrences
Identifier
-
http://rs.tdwg.org/dwc/terms/associatedOccurrences
+
http://rs.tdwg.org/dwc/terms/associatedOccurrences
Class
http://rs.tdwg.org/dwc/terms/Organism
@@ -1315,18 +1320,24 @@
Comment
The recommended best practice is to separate the values with a vertical bar (' | ').
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:associatedOccurrences
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#associatedOccurrences-2014-10-23
-
- -
+
Name
-
associatedOrganisms
+
associatedOrganisms
+ +
Label
+
Associated Organisms
Identifier
-
http://rs.tdwg.org/dwc/terms/associatedOrganisms
+
http://rs.tdwg.org/dwc/terms/associatedOrganisms
Class
http://rs.tdwg.org/dwc/terms/Organism
@@ -1337,18 +1348,24 @@
Comment
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"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:associatedOrganisms
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#associatedOrganisms-2014-10-23
-
- -
+
Name
-
previousIdentifications
+
previousIdentifications
+ +
Label
+
Previous Identifications
Identifier
-
http://rs.tdwg.org/dwc/terms/previousIdentifications
+
http://rs.tdwg.org/dwc/terms/previousIdentifications
Class
http://rs.tdwg.org/dwc/terms/Organism
@@ -1359,18 +1376,24 @@
Comment
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".
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:previousIdentifications
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#previousIdentifications-2014-10-23
-
- -
+
Name
-
organismRemarks
+
organismRemarks
+ +
Label
+
Organism Remarks
Identifier
-
http://rs.tdwg.org/dwc/terms/organismRemarks
+
http://rs.tdwg.org/dwc/terms/organismRemarks
Class
http://rs.tdwg.org/dwc/terms/Organism
@@ -1381,18 +1404,59 @@
Comment
Example: "One of a litter of six."
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:organismRemarks
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#organismRemarks-2014-10-23
-
- -
+ +
+
+

MaterialSample

+ +
+ +
Name
-
materialSampleID
+
MaterialSample
+ +
Label
+
Material Sample
Identifier
-
http://rs.tdwg.org/dwc/terms/materialSampleID
+
http://rs.tdwg.org/dwc/terms/MaterialSample
+ + +
Definition
+
A physical results of a sampling (or subsampling) event. In biological collections, the material sample is typically collected, and either preserved or destructively processed.
+ +
Comment
+
Examples: A whole organism preserved in a collection. A part of an organism isolated for some purpose. A soil sample. A marine microbial sample.
+ +
Reference
+
http://terms.tdwg.org/wiki/dwc:MaterialSample
+ +
History
+
http://rs.tdwg.org/dwc/terms/history.html#MaterialSample-2014-10-23
+
+ + +
+
Name
+
materialSampleID
+ +
Label
+
Material Sample ID
+ +
Identifier
+
http://rs.tdwg.org/dwc/terms/materialSampleID
Class
http://rs.tdwg.org/dwc/terms/MaterialSample
@@ -1403,18 +1467,73 @@
Comment
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:materialSampleID
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#materialSampleID-2013-05-25
-
- -
+ +
+
+

Event

+ +
+ +
Name
-
eventID
+
Event
+ +
Label
+
Event
Identifier
-
http://rs.tdwg.org/dwc/terms/eventID
+
http://rs.tdwg.org/dwc/terms/Event
+ + +
Definition
+
An action that occurs at some location during some time.
+ +
Comment
+
Examples: A specimen collection process. A machine observation.
+ +
Reference
+
http://terms.tdwg.org/wiki/dwc:Event
+ +
History
+
http://rs.tdwg.org/dwc/terms/history.html#Event-2014-10-23
+
+ + +
+
Name
+
eventID
+ +
Label
+
Event ID
+ +
Identifier
+
http://rs.tdwg.org/dwc/terms/eventID
Class
http://rs.tdwg.org/dwc/terms/Event
@@ -1425,18 +1544,24 @@
Comment
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:eventID
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#eventID-2009-04-24
-
- -
+
Name
-
fieldNumber
+
fieldNumber
+ +
Label
+
Field Number
Identifier
-
http://rs.tdwg.org/dwc/terms/fieldNumber
+
http://rs.tdwg.org/dwc/terms/fieldNumber
Class
http://rs.tdwg.org/dwc/terms/Event
@@ -1447,18 +1572,24 @@
Comment
Example: "RV Sol 87-03-08"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:fieldNumber
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#fieldNumber-2009-04-24
-
- -
+
Name
-
eventDate
+
eventDate
+ +
Label
+
Event Date
Identifier
-
http://rs.tdwg.org/dwc/terms/eventDate
+
http://rs.tdwg.org/dwc/terms/eventDate
Class
http://rs.tdwg.org/dwc/terms/Event
@@ -1469,18 +1600,24 @@
Comment
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.
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:eventDate
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#eventDate-2009-04-24
-
- -
+
Name
-
eventTime
+
eventTime
+ +
Label
+
Event Time
Identifier
-
http://rs.tdwg.org/dwc/terms/eventTime
+
http://rs.tdwg.org/dwc/terms/eventTime
Class
http://rs.tdwg.org/dwc/terms/Event
@@ -1491,18 +1628,24 @@
Comment
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.
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:eventTime
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#eventTime-2009-04-24
-
- -
+
Name
-
startDayOfYear
+
startDayOfYear
+ +
Label
+
Start Day Of Year
Identifier
-
http://rs.tdwg.org/dwc/terms/startDayOfYear
+
http://rs.tdwg.org/dwc/terms/startDayOfYear
Class
http://rs.tdwg.org/dwc/terms/Event
@@ -1513,18 +1656,24 @@
Comment
Examples: "1" (=1 Jan), "366" (=31 Dec), "365" (=30 Dec in a leap year, 31 Dec in a non-leap year)
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:startDayOfYear
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#startDayOfYear-2009-04-24
-
- -
+
Name
-
endDayOfYear
+
endDayOfYear
+ +
Label
+
End Day Of Year
Identifier
-
http://rs.tdwg.org/dwc/terms/endDayOfYear
+
http://rs.tdwg.org/dwc/terms/endDayOfYear
Class
http://rs.tdwg.org/dwc/terms/Event
@@ -1535,18 +1684,24 @@
Comment
Examples: "1" (=1 Jan), "366" (=31 Dec), "365" (=30 Dec in a leap year, 31 Dec in a non-leap year)
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:endDayOfYear
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#endDayOfYear-2009-04-24
-
- -
+
Name
-
year
+
year
+ +
Label
+
Year
Identifier
-
http://rs.tdwg.org/dwc/terms/year
+
http://rs.tdwg.org/dwc/terms/year
Class
http://rs.tdwg.org/dwc/terms/Event
@@ -1557,18 +1712,24 @@
Comment
Example: "2008"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:year
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#year-2009-04-24
-
- -
+
Name
-
month
+
month
+ +
Label
+
Month
Identifier
-
http://rs.tdwg.org/dwc/terms/month
+
http://rs.tdwg.org/dwc/terms/month
Class
http://rs.tdwg.org/dwc/terms/Event
@@ -1579,18 +1740,24 @@
Comment
Examples: "1" (=January), "10" (=October)
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:month
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#month-2009-04-24
-
- -
+
Name
-
day
+
day
+ +
Label
+
Day
Identifier
-
http://rs.tdwg.org/dwc/terms/day
+
http://rs.tdwg.org/dwc/terms/day
Class
http://rs.tdwg.org/dwc/terms/Event
@@ -1601,18 +1768,24 @@
Comment
Examples: "9", "28"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:day
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#day-2009-04-24
-
- -
+
Name
-
verbatimEventDate
+
verbatimEventDate
+ +
Label
+
Verbatim EventDate
Identifier
-
http://rs.tdwg.org/dwc/terms/verbatimEventDate
+
http://rs.tdwg.org/dwc/terms/verbatimEventDate
Class
http://rs.tdwg.org/dwc/terms/Event
@@ -1623,18 +1796,24 @@
Comment
Examples: "spring 1910", "Marzo 2002", "1999-03-XX", "17IV1934"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:verbatimEventDate
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#verbatimEventDate-2009-04-24
-
- -
+
Name
-
habitat
+
habitat
+ +
Label
+
Habitat
Identifier
-
http://rs.tdwg.org/dwc/terms/habitat
+
http://rs.tdwg.org/dwc/terms/habitat
Class
http://rs.tdwg.org/dwc/terms/Event
@@ -1645,18 +1824,24 @@
Comment
Examples: "oak savanna", "pre-cordilleran steppe"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:habitat
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#habitat-2009-04-24
-
- -
+
Name
-
samplingProtocol
+
samplingProtocol
+ +
Label
+
Sampling Protocol
Identifier
-
http://rs.tdwg.org/dwc/terms/samplingProtocol
+
http://rs.tdwg.org/dwc/terms/samplingProtocol
Class
http://rs.tdwg.org/dwc/terms/Event
@@ -1667,18 +1852,24 @@
Comment
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"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:samplingProtocol
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#samplingProtocol-2009-04-24
-
- -
+
Name
-
samplingEffort
+
samplingEffort
+ +
Label
+
Sampling Effort
Identifier
-
http://rs.tdwg.org/dwc/terms/samplingEffort
+
http://rs.tdwg.org/dwc/terms/samplingEffort
Class
http://rs.tdwg.org/dwc/terms/Event
@@ -1689,18 +1880,24 @@
Comment
Examples: "40 trap-nights", "10 observer-hours; 10 km by foot; 30 km by car"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:samplingEffort
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#samplingEffort-2009-08-24
-
- -
+
Name
-
fieldNotes
+
fieldNotes
+ +
Label
+
Field Notes
Identifier
-
http://rs.tdwg.org/dwc/terms/fieldNotes
+
http://rs.tdwg.org/dwc/terms/fieldNotes
Class
http://rs.tdwg.org/dwc/terms/Event
@@ -1711,18 +1908,24 @@
Comment
Example: "notes available in Grinnell-Miller Library"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:fieldNotes
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#fieldNotes-2009-04-24
-
- -
+
Name
-
eventRemarks
+
eventRemarks
+ +
Label
+
Event Remarks
Identifier
-
http://rs.tdwg.org/dwc/terms/eventRemarks
+
http://rs.tdwg.org/dwc/terms/eventRemarks
Class
http://rs.tdwg.org/dwc/terms/Event
@@ -1733,18 +1936,102 @@
Comment
Example: "after the recent rains the river is nearly at flood stage"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:eventRemarks
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#eventRemarks-2009-04-24
-
- -
+ +
+
+

dcterms:Location

+ +
+ +
Name
-
locationID
+
dcterms:Location
+ +
Label
+
Identifier
-
http://rs.tdwg.org/dwc/terms/locationID
+
http://purl.org/dc/terms/Location
+ + +
Definition
+
+ +
Comment
+
+ +
Reference
+
http://terms.tdwg.org/wiki/dcterms:Location
+ +
History
+
+
+ + +
+
Name
+
locationID
+ +
Label
+
Location ID
+ +
Identifier
+
http://rs.tdwg.org/dwc/terms/locationID
Class
http://purl.org/dc/terms/Location
@@ -1755,18 +2042,24 @@
Comment
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:locationID
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#locationID-2009-04-24
-
- -
+
Name
-
higherGeographyID
+
higherGeographyID
+ +
Label
+
Higher Geography ID
Identifier
-
http://rs.tdwg.org/dwc/terms/higherGeographyID
+
http://rs.tdwg.org/dwc/terms/higherGeographyID
Class
http://purl.org/dc/terms/Location
@@ -1777,18 +2070,24 @@
Comment
Example: "TGN: 1002002" for Prov. Tierra del Fuego, Argentina
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:higherGeographyID
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#higherGeographyID-2009-04-24
-
- -
+
Name
-
higherGeography
+
higherGeography
+ +
Label
+
Higher Geography
Identifier
-
http://rs.tdwg.org/dwc/terms/higherGeography
+
http://rs.tdwg.org/dwc/terms/higherGeography
Class
http://purl.org/dc/terms/Location
@@ -1799,18 +2098,24 @@
Comment
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.
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:higherGeography
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#higherGeography-2014-10-23
-
- -
+
Name
-
continent
+
continent
+ +
Label
+
Continent
Identifier
-
http://rs.tdwg.org/dwc/terms/continent
+
http://rs.tdwg.org/dwc/terms/continent
Class
http://purl.org/dc/terms/Location
@@ -1821,18 +2126,24 @@
Comment
Examples: "Africa", "Antarctica", "Asia", "Europe", "North America", "Oceania", "South America"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:continent
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#continent-2009-04-24
-
- -
+
Name
-
waterBody
+
waterBody
+ +
Label
+
Water Body
Identifier
-
http://rs.tdwg.org/dwc/terms/waterBody
+
http://rs.tdwg.org/dwc/terms/waterBody
Class
http://purl.org/dc/terms/Location
@@ -1843,18 +2154,24 @@
Comment
Examples: "Indian Ocean", "Baltic Sea", "Hudson River"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:waterBody
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#waterBody-2009-04-24
-
- -
+
Name
-
islandGroup
+
islandGroup
+ +
Label
+
Island Group
Identifier
-
http://rs.tdwg.org/dwc/terms/islandGroup
+
http://rs.tdwg.org/dwc/terms/islandGroup
Class
http://purl.org/dc/terms/Location
@@ -1865,18 +2182,24 @@
Comment
Examples: "Alexander Archipelago", "Seychelles"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:islandGroup
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#islandGroup-2009-04-24
-
- -
+
Name
-
island
+
island
+ +
Label
+
Island
Identifier
-
http://rs.tdwg.org/dwc/terms/island
+
http://rs.tdwg.org/dwc/terms/island
Class
http://purl.org/dc/terms/Location
@@ -1887,18 +2210,24 @@
Comment
Examples: "Isla Victoria", "Vancouver", "Viti Levu", "Zanzibar"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:island
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#island-2009-04-24
-
- -
+
Name
-
country
+
country
+ +
Label
+
Country
Identifier
-
http://rs.tdwg.org/dwc/terms/country
+
http://rs.tdwg.org/dwc/terms/country
Class
http://purl.org/dc/terms/Location
@@ -1909,18 +2238,24 @@
Comment
Examples: "Denmark", "Colombia", "España"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:country
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#country-2009-04-24
-
- -
+
Name
-
countryCode
+
countryCode
+ +
Label
+
Country Code
Identifier
-
http://rs.tdwg.org/dwc/terms/countryCode
+
http://rs.tdwg.org/dwc/terms/countryCode
Class
http://purl.org/dc/terms/Location
@@ -1931,18 +2266,24 @@
Comment
Examples: "AR" for Argentina, "SV" for El Salvador
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:countryCode
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#countryCode-2009-04-24
-
- -
+
Name
-
stateProvince
+
stateProvince
+ +
Label
+
State Province
Identifier
-
http://rs.tdwg.org/dwc/terms/stateProvince
+
http://rs.tdwg.org/dwc/terms/stateProvince
Class
http://purl.org/dc/terms/Location
@@ -1953,18 +2294,24 @@
Comment
Examples: "Montana", "Minas Gerais", "Córdoba"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:stateProvince
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#stateProvince-2009-04-24
-
- -
+
Name
-
county
+
county
+ +
Label
+
County
Identifier
-
http://rs.tdwg.org/dwc/terms/county
+
http://rs.tdwg.org/dwc/terms/county
Class
http://purl.org/dc/terms/Location
@@ -1975,18 +2322,24 @@
Comment
Examples: "Missoula", "Los Lagos", "Mataró"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:county
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#county-2009-04-24
-
- -
+
Name
-
municipality
+
municipality
+ +
Label
+
Municipality
Identifier
-
http://rs.tdwg.org/dwc/terms/municipality
+
http://rs.tdwg.org/dwc/terms/municipality
Class
http://purl.org/dc/terms/Location
@@ -1997,18 +2350,24 @@
Comment
Examples: "Holzminden"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:municipality
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#municipality-2009-08-24
-
- -
+
Name
-
locality
+
locality
+ +
Label
+
Locality
Identifier
-
http://rs.tdwg.org/dwc/terms/locality
+
http://rs.tdwg.org/dwc/terms/locality
Class
http://purl.org/dc/terms/Location
@@ -2019,18 +2378,24 @@
Comment
Example: "Bariloche, 25 km NNE via Ruta Nacional 40 (=Ruta 237)"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:locality
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#locality-2009-04-24
-
- -
+
Name
-
verbatimLocality
+
verbatimLocality
+ +
Label
+
Verbatim Locality
Identifier
-
http://rs.tdwg.org/dwc/terms/verbatimLocality
+
http://rs.tdwg.org/dwc/terms/verbatimLocality
Class
http://purl.org/dc/terms/Location
@@ -2041,18 +2406,24 @@
Comment
Example: "25 km NNE Bariloche por R. Nac. 237"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:verbatimLocality
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#verbatimLocality-2009-04-24
-
- -
+
Name
-
minimumElevationInMeters
+
minimumElevationInMeters
+ +
Label
+
Minimum Elevation In Meters
Identifier
-
http://rs.tdwg.org/dwc/terms/minimumElevationInMeters
+
http://rs.tdwg.org/dwc/terms/minimumElevationInMeters
Class
http://purl.org/dc/terms/Location
@@ -2063,18 +2434,24 @@
Comment
Example: "100"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:minimumElevationInMeters
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#minimumElevationInMeters-2009-04-24
-
- -
+
Name
-
maximumElevationInMeters
+
maximumElevationInMeters
+ +
Label
+
Maximum Elevation In Meters
Identifier
-
http://rs.tdwg.org/dwc/terms/maximumElevationInMeters
+
http://rs.tdwg.org/dwc/terms/maximumElevationInMeters
Class
http://purl.org/dc/terms/Location
@@ -2085,18 +2462,24 @@
Comment
Example: "200"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:maximumElevationInMeters
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#maximumElevationInMeters-2009-04-24
-
- -
+
Name
-
verbatimElevation
+
verbatimElevation
+ +
Label
+
Verbatim Elevation
Identifier
-
http://rs.tdwg.org/dwc/terms/verbatimElevation
+
http://rs.tdwg.org/dwc/terms/verbatimElevation
Class
http://purl.org/dc/terms/Location
@@ -2107,18 +2490,24 @@
Comment
Example: "100-200 m"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:verbatimElevation
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#verbatimElevation-2009-04-24
-
- -
+
Name
-
minimumDepthInMeters
+
minimumDepthInMeters
+ +
Label
+
Minimum Depth In Meters
Identifier
-
http://rs.tdwg.org/dwc/terms/minimumDepthInMeters
+
http://rs.tdwg.org/dwc/terms/minimumDepthInMeters
Class
http://purl.org/dc/terms/Location
@@ -2129,18 +2518,24 @@
Comment
Example: "100"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:minimumDepthInMeters
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#minimumDepthInMeters-2009-04-24
-
- -
+
Name
-
maximumDepthInMeters
+
maximumDepthInMeters
+ +
Label
+
Maximum Depth In Meters
Identifier
-
http://rs.tdwg.org/dwc/terms/maximumDepthInMeters
+
http://rs.tdwg.org/dwc/terms/maximumDepthInMeters
Class
http://purl.org/dc/terms/Location
@@ -2151,18 +2546,24 @@
Comment
Example: "200"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:maximumDepthInMeters
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#maximumDepthInMeters-2009-04-24
-
- -
+
Name
-
verbatimDepth
+
verbatimDepth
+ +
Label
+
Verbatim Depth
Identifier
-
http://rs.tdwg.org/dwc/terms/verbatimDepth
+
http://rs.tdwg.org/dwc/terms/verbatimDepth
Class
http://purl.org/dc/terms/Location
@@ -2173,18 +2574,24 @@
Comment
Example: "100-200 m"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:verbatimDepth
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#verbatimDepth-2009-04-24
-
- -
+
Name
-
minimumDistanceAboveSurfaceInMeters
+
minimumDistanceAboveSurfaceInMeters
+ +
Label
+
Minimum Distance Above Surface In Meters
Identifier
-
http://rs.tdwg.org/dwc/terms/minimumDistanceAboveSurfaceInMeters
+
http://rs.tdwg.org/dwc/terms/minimumDistanceAboveSurfaceInMeters
Class
http://purl.org/dc/terms/Location
@@ -2195,18 +2602,24 @@
Comment
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"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:minimumDistanceAboveSurfaceInMeters
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#minimumDistanceAboveSurfaceInMeters-2009-04-24
-
- -
+
Name
-
maximumDistanceAboveSurfaceInMeters
+
maximumDistanceAboveSurfaceInMeters
+ +
Label
+
Maximum Distance Above Surface In Meters
Identifier
-
http://rs.tdwg.org/dwc/terms/maximumDistanceAboveSurfaceInMeters
+
http://rs.tdwg.org/dwc/terms/maximumDistanceAboveSurfaceInMeters
Class
http://purl.org/dc/terms/Location
@@ -2217,18 +2630,24 @@
Comment
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"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:maximumDistanceAboveSurfaceInMeters
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#maximumDistanceAboveSurfaceInMeters-2009-04-24
-
- -
+
Name
-
locationAccordingTo
+
locationAccordingTo
+ +
Label
+
Location According To
Identifier
-
http://rs.tdwg.org/dwc/terms/locationAccordingTo
+
http://rs.tdwg.org/dwc/terms/locationAccordingTo
Class
http://purl.org/dc/terms/Location
@@ -2239,18 +2658,24 @@
Comment
Examples: "Getty Thesaurus of Geographic Names", "GADM"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:locationAccordingTo
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#locationAccordingTo-2009-08-24
-
- -
+
Name
-
locationRemarks
+
locationRemarks
+ +
Label
+
Location Remarks
Identifier
-
http://rs.tdwg.org/dwc/terms/locationRemarks
+
http://rs.tdwg.org/dwc/terms/locationRemarks
Class
http://purl.org/dc/terms/Location
@@ -2261,18 +2686,24 @@
Comment
Example: "under water since 2005"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:locationRemarks
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#locationRemarks-2009-04-24
-
- -
+
Name
-
decimalLatitude
+
decimalLatitude
+ +
Label
+
Decimal Latitude
Identifier
-
http://rs.tdwg.org/dwc/terms/decimalLatitude
+
http://rs.tdwg.org/dwc/terms/decimalLatitude
Class
http://purl.org/dc/terms/Location
@@ -2283,18 +2714,24 @@
Comment
Example: "-41.0983423"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:decimalLatitude
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#decimalLatitude-2009-04-24
-
- -
+
Name
-
decimalLongitude
+
decimalLongitude
+ +
Label
+
Decimal Longitude
Identifier
-
http://rs.tdwg.org/dwc/terms/decimalLongitude
+
http://rs.tdwg.org/dwc/terms/decimalLongitude
Class
http://purl.org/dc/terms/Location
@@ -2305,18 +2742,24 @@
Comment
Example: "-121.1761111"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:decimalLongitude
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#decimalLongitude-2009-04-24
-
- -
+
Name
-
geodeticDatum
+
geodeticDatum
+ +
Label
+
Geodetic Datum
Identifier
-
http://rs.tdwg.org/dwc/terms/geodeticDatum
+
http://rs.tdwg.org/dwc/terms/geodeticDatum
Class
http://purl.org/dc/terms/Location
@@ -2327,18 +2770,24 @@
Comment
Examples: "EPSG:4326", "WGS84", "NAD27", "Campo Inchauspe", "European 1950", "Clarke 1866"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:geodeticDatum
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#geodeticDatum-2009-04-24
-
- -
+
Name
-
coordinateUncertaintyInMeters
+
coordinateUncertaintyInMeters
+ +
Label
+
Coordinate Uncertainty In Meters
Identifier
-
http://rs.tdwg.org/dwc/terms/coordinateUncertaintyInMeters
+
http://rs.tdwg.org/dwc/terms/coordinateUncertaintyInMeters
Class
http://purl.org/dc/terms/Location
@@ -2349,18 +2798,24 @@
Comment
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).
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:coordinateUncertaintyInMeters
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#coordinateUncertaintyInMeters-2009-04-24
-
- -
+
Name
-
coordinatePrecision
+
coordinatePrecision
+ +
Label
+
Coordinate Precision
Identifier
-
http://rs.tdwg.org/dwc/terms/coordinatePrecision
+
http://rs.tdwg.org/dwc/terms/coordinatePrecision
Class
http://purl.org/dc/terms/Location
@@ -2371,18 +2826,24 @@
Comment
Examples: "0.00001" (normal GPS limit for decimal degrees), "0.000278" (nearest second), "0.01667" (nearest minute), "1.0" (nearest degree)
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:coordinatePrecision
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#coordinatePrecision-2009-04-24
-
- -
+
Name
-
pointRadiusSpatialFit
+
pointRadiusSpatialFit
+ +
Label
+
Point Radius Spatial Fit
Identifier
-
http://rs.tdwg.org/dwc/terms/pointRadiusSpatialFit
+
http://rs.tdwg.org/dwc/terms/pointRadiusSpatialFit
Class
http://purl.org/dc/terms/Location
@@ -2393,18 +2854,24 @@
Comment
Detailed explanations with graphical examples can be found in the "Guide to Best Practices for Georeferencing", Chapman and Wieczorek, eds. 2006.
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:pointRadiusSpatialFit
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#pointRadiusSpatialFit-2009-04-24
-
- -
+
Name
-
verbatimCoordinates
+
verbatimCoordinates
+ +
Label
+
Verbatim Coordinates
Identifier
-
http://rs.tdwg.org/dwc/terms/verbatimCoordinates
+
http://rs.tdwg.org/dwc/terms/verbatimCoordinates
Class
http://purl.org/dc/terms/Location
@@ -2415,18 +2882,24 @@
Comment
Examples: "41 05 54S 121 05 34W", "17T 630000 4833400"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:verbatimCoordinates
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#verbatimCoordinates-2009-04-24
-
- -
+
Name
-
verbatimLatitude
+
verbatimLatitude
+ +
Label
+
Verbatim Latitude
Identifier
-
http://rs.tdwg.org/dwc/terms/verbatimLatitude
+
http://rs.tdwg.org/dwc/terms/verbatimLatitude
Class
http://purl.org/dc/terms/Location
@@ -2437,18 +2910,24 @@
Comment
Example: "41 05 54.03S"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:verbatimLatitude
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#verbatimLatitude-2009-04-24
-
- -
+
Name
-
verbatimLongitude
+
verbatimLongitude
+ +
Label
+
Verbatim Longitude
Identifier
-
http://rs.tdwg.org/dwc/terms/verbatimLongitude
+
http://rs.tdwg.org/dwc/terms/verbatimLongitude
Class
http://purl.org/dc/terms/Location
@@ -2459,18 +2938,24 @@
Comment
Example: "121d 10' 34" W"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:verbatimLongitude
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#verbatimLongitude-2009-04-24
-
- -
+
Name
-
verbatimCoordinateSystem
+
verbatimCoordinateSystem
+ +
Label
+
Verbatim Coordinate System
Identifier
-
http://rs.tdwg.org/dwc/terms/verbatimCoordinateSystem
+
http://rs.tdwg.org/dwc/terms/verbatimCoordinateSystem
Class
http://purl.org/dc/terms/Location
@@ -2481,18 +2966,24 @@
Comment
Examples: "decimal degrees", "degrees decimal minutes", "degrees minutes seconds", "UTM"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:verbatimCoordinateSystem
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#verbatimCoordinateSystem-2009-04-24
-
- -
+
Name
-
verbatimSRS
+
verbatimSRS
+ +
Label
+
Verbatim SRS
Identifier
-
http://rs.tdwg.org/dwc/terms/verbatimSRS
+
http://rs.tdwg.org/dwc/terms/verbatimSRS
Class
http://purl.org/dc/terms/Location
@@ -2503,18 +2994,24 @@
Comment
Examples: "EPSG:4326", "WGS84", "NAD27", "Campo Inchauspe", "European 1950", "Clarke 1866"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:verbatimSRS
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#verbatimSRS-2009-07-06
-
- -
+
Name
-
footprintWKT
+
footprintWKT
+ +
Label
+
Footprint WKT
Identifier
-
http://rs.tdwg.org/dwc/terms/footprintWKT
+
http://rs.tdwg.org/dwc/terms/footprintWKT
Class
http://purl.org/dc/terms/Location
@@ -2525,18 +3022,24 @@
Comment
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))
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:footprintWKT
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#footprintWKT-2009-04-24
-
- -
+
Name
-
footprintSRS
+
footprintSRS
+ +
Label
+
Footprint SRS
Identifier
-
http://rs.tdwg.org/dwc/terms/footprintSRS
+
http://rs.tdwg.org/dwc/terms/footprintSRS
Class
http://purl.org/dc/terms/Location
@@ -2547,18 +3050,24 @@
Comment
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.
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:footprintSRS
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#footprintSRS-2009-07-06
-
- -
+
Name
-
footprintSpatialFit
+
footprintSpatialFit
+ +
Label
+
Footprint Spatial Fit
Identifier
-
http://rs.tdwg.org/dwc/terms/footprintSpatialFit
+
http://rs.tdwg.org/dwc/terms/footprintSpatialFit
Class
http://purl.org/dc/terms/Location
@@ -2569,18 +3078,24 @@
Comment
Detailed explanations with graphical examples can be found in the "Guide to Best Practices for Georeferencing", Chapman and Wieczorek, eds. 2006.
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:footprintSpatialFit
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#footprintSpatialFit-2009-04-24
-
- -
+
Name
-
georeferencedBy
+
georeferencedBy
+ +
Label
+
Georeferenced By
Identifier
-
http://rs.tdwg.org/dwc/terms/georeferencedBy
+
http://rs.tdwg.org/dwc/terms/georeferencedBy
Class
http://purl.org/dc/terms/Location
@@ -2591,18 +3106,24 @@
Comment
The recommended best practice is to separate the values with a vertical bar (' | '). Examples: "Brad Millen (ROM)", "Kristina Yamamoto (MVZ) | Janet Fang (MVZ)".
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:georeferencedBy
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#georeferencedBy-2014-10-23
-
- -
+
Name
-
georeferencedDate
+
georeferencedDate
+ +
Label
+
Georeferenced Date
Identifier
-
http://rs.tdwg.org/dwc/terms/georeferencedDate
+
http://rs.tdwg.org/dwc/terms/georeferencedDate
Class
http://purl.org/dc/terms/Location
@@ -2613,18 +3134,24 @@
Comment
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.
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:georeferencedDate
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#georeferencedDate-2011-10-16
-
- -
+
Name
-
georeferenceProtocol
+
georeferenceProtocol
+ +
Label
+
Georeference Protocol
Identifier
-
http://rs.tdwg.org/dwc/terms/georeferenceProtocol
+
http://rs.tdwg.org/dwc/terms/georeferenceProtocol
Class
http://purl.org/dc/terms/Location
@@ -2635,18 +3162,24 @@
Comment
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"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:georeferenceProtocol
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#georeferenceProtocol-2009-04-24
-
- -
+
Name
-
georeferenceSources
+
georeferenceSources
+ +
Label
+
Georeference Sources
Identifier
-
http://rs.tdwg.org/dwc/terms/georeferenceSources
+
http://rs.tdwg.org/dwc/terms/georeferenceSources
Class
http://purl.org/dc/terms/Location
@@ -2657,18 +3190,24 @@
Comment
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".
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:georeferenceSources
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#georeferenceSources-2014-10-23
-
- -
+
Name
-
georeferenceVerificationStatus
+
georeferenceVerificationStatus
+ +
Label
+
Georeference Verification Status
Identifier
-
http://rs.tdwg.org/dwc/terms/georeferenceVerificationStatus
+
http://rs.tdwg.org/dwc/terms/georeferenceVerificationStatus
Class
http://purl.org/dc/terms/Location
@@ -2679,18 +3218,24 @@
Comment
Examples: "requires verification", "verified by collector", "verified by curator".
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:georeferenceVerificationStatus
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#georeferenceVerificationStatus-2009-04-24
-
- -
+
Name
-
georeferenceRemarks
+
georeferenceRemarks
+ +
Label
+
Georeference Remarks
Identifier
-
http://rs.tdwg.org/dwc/terms/georeferenceRemarks
+
http://rs.tdwg.org/dwc/terms/georeferenceRemarks
Class
http://purl.org/dc/terms/Location
@@ -2701,18 +3246,76 @@
Comment
Example: "assumed distance by road (Hwy. 101)"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:georeferenceRemarks
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#georeferenceRemarks-2009-04-24
-
- -
+ +
+
+

GeologicalContext

+ +
+ +
Name
-
geologicalContextID
+
GeologicalContext
+ +
Label
+
Geological Context
Identifier
-
http://rs.tdwg.org/dwc/terms/geologicalContextID
+
http://rs.tdwg.org/dwc/terms/GeologicalContext
+ + +
Definition
+
Geological information, such as stratigraphy, that qualifies a region or place.
+ +
Comment
+
Example: A lithostratigraphic layer.
+ +
Reference
+
http://terms.tdwg.org/wiki/dwc:GeologicalContext
+ +
History
+
http://rs.tdwg.org/dwc/terms/history.html#GeologicalContext-2014-10-23
+
+ + +
+
Name
+
geologicalContextID
+ +
Label
+
Geological Context ID
+ +
Identifier
+
http://rs.tdwg.org/dwc/terms/geologicalContextID
Class
http://rs.tdwg.org/dwc/terms/GeologicalContext
@@ -2723,18 +3326,24 @@
Comment
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:geologicalContextID
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#geologicalContextID-2009-07-06
-
- -
+
Name
-
earliestEonOrLowestEonothem
+
earliestEonOrLowestEonothem
+ +
Label
+
Earliest Eon Or Lowest Eonothem
Identifier
-
http://rs.tdwg.org/dwc/terms/earliestEonOrLowestEonothem
+
http://rs.tdwg.org/dwc/terms/earliestEonOrLowestEonothem
Class
http://rs.tdwg.org/dwc/terms/GeologicalContext
@@ -2745,18 +3354,24 @@
Comment
Examples: "Phanerozoic", "Proterozoic"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:earliestEonOrLowestEonothem
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#earliestEonOrLowestEonothem-2009-04-24
-
- -
+
Name
-
latestEonOrHighestEonothem
+
latestEonOrHighestEonothem
+ +
Label
+
Latest Eon Or Highest Eonothem
Identifier
-
http://rs.tdwg.org/dwc/terms/latestEonOrHighestEonothem
+
http://rs.tdwg.org/dwc/terms/latestEonOrHighestEonothem
Class
http://rs.tdwg.org/dwc/terms/GeologicalContext
@@ -2767,18 +3382,24 @@
Comment
Examples: "Phanerozoic", "Proterozoic"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:latestEonOrHighestEonothem
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#latestEonOrHighestEonothem-2009-04-24
-
- -
+
Name
-
earliestEraOrLowestErathem
+
earliestEraOrLowestErathem
+ +
Label
+
Earliest Era Or Lowest Erathem
Identifier
-
http://rs.tdwg.org/dwc/terms/earliestEraOrLowestErathem
+
http://rs.tdwg.org/dwc/terms/earliestEraOrLowestErathem
Class
http://rs.tdwg.org/dwc/terms/GeologicalContext
@@ -2789,18 +3410,24 @@
Comment
Examples: "Cenozoic", "Mesozoic"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:earliestEraOrLowestErathem
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#earliestEraOrLowestErathem-2009-04-24
-
- -
+
Name
-
latestEraOrHighestErathem
+
latestEraOrHighestErathem
+ +
Label
+
Latest Era Or Highest Erathem
Identifier
-
http://rs.tdwg.org/dwc/terms/latestEraOrHighestErathem
+
http://rs.tdwg.org/dwc/terms/latestEraOrHighestErathem
Class
http://rs.tdwg.org/dwc/terms/GeologicalContext
@@ -2811,18 +3438,24 @@
Comment
Examples: "Cenozoic", "Mesozoic"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:latestEraOrHighestErathem
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#latestEraOrHighestErathem-2009-04-24
-
- -
+
Name
-
earliestPeriodOrLowestSystem
+
earliestPeriodOrLowestSystem
+ +
Label
+
Earliest Period Or Lowest System
Identifier
-
http://rs.tdwg.org/dwc/terms/earliestPeriodOrLowestSystem
+
http://rs.tdwg.org/dwc/terms/earliestPeriodOrLowestSystem
Class
http://rs.tdwg.org/dwc/terms/GeologicalContext
@@ -2833,18 +3466,24 @@
Comment
Examples: "Neogene", "Tertiary", "Quaternary"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:earliestPeriodOrLowestSystem
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#earliestPeriodOrLowestSystem-2009-04-24
-
- -
+
Name
-
latestPeriodOrHighestSystem
+
latestPeriodOrHighestSystem
+ +
Label
+
Latest Period Or Highest System
Identifier
-
http://rs.tdwg.org/dwc/terms/latestPeriodOrHighestSystem
+
http://rs.tdwg.org/dwc/terms/latestPeriodOrHighestSystem
Class
http://rs.tdwg.org/dwc/terms/GeologicalContext
@@ -2855,18 +3494,24 @@
Comment
Examples: "Neogene", "Tertiary", "Quaternary"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:latestPeriodOrHighestSystem
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#latestPeriodOrHighestSystem-2009-04-24
-
- -
+
Name
-
earliestEpochOrLowestSeries
+
earliestEpochOrLowestSeries
+ +
Label
+
Earliest Epoch Or Lowest Series
Identifier
-
http://rs.tdwg.org/dwc/terms/earliestEpochOrLowestSeries
+
http://rs.tdwg.org/dwc/terms/earliestEpochOrLowestSeries
Class
http://rs.tdwg.org/dwc/terms/GeologicalContext
@@ -2877,18 +3522,24 @@
Comment
Examples: "Holocene", "Pleistocene", "Ibexian Series"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:earliestEpochOrLowestSeries
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#earliestEpochOrLowestSeries-2009-04-24
-
- -
+
Name
-
latestEpochOrHighestSeries
+
latestEpochOrHighestSeries
+ +
Label
+
Latest Epoch Or Highest Series
Identifier
-
http://rs.tdwg.org/dwc/terms/latestEpochOrHighestSeries
+
http://rs.tdwg.org/dwc/terms/latestEpochOrHighestSeries
Class
http://rs.tdwg.org/dwc/terms/GeologicalContext
@@ -2899,18 +3550,24 @@
Comment
Examples: "Holocene", "Pleistocene", "Ibexian Series"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:latestEpochOrHighestSeries
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#latestEpochOrHighestSeries-2009-04-24
-
- -
+
Name
-
earliestAgeOrLowestStage
+
earliestAgeOrLowestStage
+ +
Label
+
Earliest Age Or Lowest Stage
Identifier
-
http://rs.tdwg.org/dwc/terms/earliestAgeOrLowestStage
+
http://rs.tdwg.org/dwc/terms/earliestAgeOrLowestStage
Class
http://rs.tdwg.org/dwc/terms/GeologicalContext
@@ -2921,18 +3578,24 @@
Comment
Examples: "Atlantic", "Boreal", "Skullrockian"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:earliestAgeOrLowestStage
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#earliestAgeOrLowestStage-2009-04-24
-
- -
+
Name
-
latestAgeOrHighestStage
+
latestAgeOrHighestStage
+ +
Label
+
Latest AgeOr Highest Stage
Identifier
-
http://rs.tdwg.org/dwc/terms/latestAgeOrHighestStage
+
http://rs.tdwg.org/dwc/terms/latestAgeOrHighestStage
Class
http://rs.tdwg.org/dwc/terms/GeologicalContext
@@ -2943,18 +3606,24 @@
Comment
Examples: "Atlantic", "Boreal", "Skullrockian"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:latestAgeOrHighestStage
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#latestAgeOrHighestStage-2009-04-24
-
- -
+
Name
-
lowestBiostratigraphicZone
+
lowestBiostratigraphicZone
+ +
Label
+
Lowest Biostratigraphic Zone
Identifier
-
http://rs.tdwg.org/dwc/terms/lowestBiostratigraphicZone
+
http://rs.tdwg.org/dwc/terms/lowestBiostratigraphicZone
Class
http://rs.tdwg.org/dwc/terms/GeologicalContext
@@ -2965,18 +3634,24 @@
Comment
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:lowestBiostratigraphicZone
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#lowestBiostratigraphicZone-2009-04-24
-
- -
+
Name
-
highestBiostratigraphicZone
+
highestBiostratigraphicZone
+ +
Label
+
Highest Biostratigraphic Zone
Identifier
-
http://rs.tdwg.org/dwc/terms/highestBiostratigraphicZone
+
http://rs.tdwg.org/dwc/terms/highestBiostratigraphicZone
Class
http://rs.tdwg.org/dwc/terms/GeologicalContext
@@ -2987,18 +3662,24 @@
Comment
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:highestBiostratigraphicZone
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#highestBiostratigraphicZone-2009-04-24
-
- -
+
Name
-
lithostratigraphicTerms
+
lithostratigraphicTerms
+ +
Label
+
Lithostratigraphic Terms
Identifier
-
http://rs.tdwg.org/dwc/terms/lithostratigraphicTerms
+
http://rs.tdwg.org/dwc/terms/lithostratigraphicTerms
Class
http://rs.tdwg.org/dwc/terms/GeologicalContext
@@ -3009,18 +3690,24 @@
Comment
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:lithostratigraphicTerms
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#lithostratigraphicTerms-2009-04-24
-
- -
+
Name
-
group
+
group
+ +
Label
+
Group
Identifier
-
http://rs.tdwg.org/dwc/terms/group
+
http://rs.tdwg.org/dwc/terms/group
Class
http://rs.tdwg.org/dwc/terms/GeologicalContext
@@ -3031,18 +3718,24 @@
Comment
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:group
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#group-2009-04-24
-
- -
+
Name
-
formation
+
formation
+ +
Label
+
Formation
Identifier
-
http://rs.tdwg.org/dwc/terms/formation
+
http://rs.tdwg.org/dwc/terms/formation
Class
http://rs.tdwg.org/dwc/terms/GeologicalContext
@@ -3053,18 +3746,24 @@
Comment
Examples: "Notch Peak Fromation", "House Limestone", "Fillmore Formation"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:formation
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#formation-2009-04-24
-
- -
+
Name
-
member
+
member
+ +
Label
+
Member
Identifier
-
http://rs.tdwg.org/dwc/terms/member
+
http://rs.tdwg.org/dwc/terms/member
Class
http://rs.tdwg.org/dwc/terms/GeologicalContext
@@ -3075,18 +3774,24 @@
Comment
Examples: "Lava Dam Member", "Hellnmaria Member"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:member
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#member-2009-04-24
-
- -
+
Name
-
bed
+
bed
+ +
Label
+
Bed
Identifier
-
http://rs.tdwg.org/dwc/terms/bed
+
http://rs.tdwg.org/dwc/terms/bed
Class
http://rs.tdwg.org/dwc/terms/GeologicalContext
@@ -3097,18 +3802,66 @@
Comment
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:bed
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#bed-2009-04-24
-
- -
+ +
+
+

Identification

+ +
+ +
Name
-
identificationID
+
Identification
+ +
Label
+
Identification
Identifier
-
http://rs.tdwg.org/dwc/terms/identificationID
+
http://rs.tdwg.org/dwc/terms/Identification
+ + +
Definition
+
A taxonomic determination (e.g., the assignment to a taxon).
+ +
Comment
+
Example: A subspecies determination of an organism.
+ +
Reference
+
http://terms.tdwg.org/wiki/dwc:Identification
+ +
History
+
http://rs.tdwg.org/dwc/terms/history.html#Identification-2014-10-23
+
+ + +
+
Name
+
identificationID
+ +
Label
+
Identification ID
+ +
Identifier
+
http://rs.tdwg.org/dwc/terms/identificationID
Class
http://rs.tdwg.org/dwc/terms/Identification
@@ -3119,18 +3872,24 @@
Comment
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:identificationID
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#identificationID-2009-04-24
-
- -
+
Name
-
identificationQualifier
+
identificationQualifier
+ +
Label
+
Identification Qualifier
Identifier
-
http://rs.tdwg.org/dwc/terms/identificationQualifier
+
http://rs.tdwg.org/dwc/terms/identificationQualifier
Class
http://rs.tdwg.org/dwc/terms/Identification
@@ -3141,18 +3900,24 @@
Comment
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.
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:identificationQualifier
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#identificationQualifier-2009-04-24
-
- -
+
Name
-
typeStatus
+
typeStatus
+ +
Label
+
Type Status
Identifier
-
http://rs.tdwg.org/dwc/terms/typeStatus
+
http://rs.tdwg.org/dwc/terms/typeStatus
Class
http://rs.tdwg.org/dwc/terms/Identification
@@ -3163,18 +3928,24 @@
Comment
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".
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:typeStatus
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#typeStatus-2014-10-23
-
- -
+
Name
-
identifiedBy
+
identifiedBy
+ +
Label
+
Identified By
Identifier
-
http://rs.tdwg.org/dwc/terms/identifiedBy
+
http://rs.tdwg.org/dwc/terms/identifiedBy
Class
http://rs.tdwg.org/dwc/terms/Identification
@@ -3185,18 +3956,24 @@
Comment
The recommended best practice is to separate the values with a vertical bar (' | '). Examples: "James L. Patton", "Theodore Pappenfuss | Robert Macey".
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:identifiedBy
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#identifiedBy-2014-10-23
-
- -
+
Name
-
dateIdentified
+
dateIdentified
+ +
Label
+
Date Identified
Identifier
-
http://rs.tdwg.org/dwc/terms/dateIdentified
+
http://rs.tdwg.org/dwc/terms/dateIdentified
Class
http://rs.tdwg.org/dwc/terms/Identification
@@ -3207,18 +3984,24 @@
Comment
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.
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:dateIdentified
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#dateIdentified-2009-08-24
-
- -
+
Name
-
identificationReferences
+
identificationReferences
+ +
Label
+
Identification References
Identifier
-
http://rs.tdwg.org/dwc/terms/identificationReferences
+
http://rs.tdwg.org/dwc/terms/identificationReferences
Class
http://rs.tdwg.org/dwc/terms/Identification
@@ -3229,18 +4012,24 @@
Comment
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.".
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:identificationReferences
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#identificationReferences-2014-10-23
-
- -
+
Name
-
identificationVerificationStatus
+
identificationVerificationStatus
+ +
Label
+
Identification Verification Status
Identifier
-
http://rs.tdwg.org/dwc/terms/identificationVerificationStatus
+
http://rs.tdwg.org/dwc/terms/identificationVerificationStatus
Class
http://rs.tdwg.org/dwc/terms/Identification
@@ -3251,18 +4040,24 @@
Comment
Examples: "0", "4"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:identificationVerificationStatus
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#identificationVerificationStatus-2011-10-16
-
- -
+
Name
-
identificationRemarks
+
identificationRemarks
+ +
Label
+
Identification Remarks
Identifier
-
http://rs.tdwg.org/dwc/terms/identificationRemarks
+
http://rs.tdwg.org/dwc/terms/identificationRemarks
Class
http://rs.tdwg.org/dwc/terms/Identification
@@ -3273,18 +4068,91 @@
Comment
Example: "Distinguished between Anthus correndera and Anthus hellmayri based on the comparative lengths of the uñas."
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:identificationRemarks
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#identificationRemarks-2009-04-24
-
- -
+ +
+
+

Taxon

+ +
+ +
Name
-
taxonID
+
Taxon
+ +
Label
+
Taxon
Identifier
-
http://rs.tdwg.org/dwc/terms/taxonID
+
http://rs.tdwg.org/dwc/terms/Taxon
+ + +
Definition
+
A group of organisms (sensu http://purl.obolibrary.org/obo/OBI_0100026) considered by taxonomists to form a homogeneous unit.
+ +
Comment
+
Example: The genus Truncorotaloides as published by Brönnimann et al. in 1953 in the Journal of Paleontology Vol. 27(6) p. 817-820.
+ +
Reference
+
http://terms.tdwg.org/wiki/dwc:Taxon
+ +
History
+
http://rs.tdwg.org/dwc/terms/history.html#Taxon-2014-10-23
+
+ + +
+
Name
+
taxonID
+ +
Label
+
Taxon ID
+ +
Identifier
+
http://rs.tdwg.org/dwc/terms/taxonID
Class
http://rs.tdwg.org/dwc/terms/Taxon
@@ -3295,18 +4163,24 @@
Comment
Examples: "8fa58e08-08de-4ac1-b69c-1235340b7001", "32567", "http://species.gbif.org/abies_alba_1753", "urn:lsid:gbif.org:usages:32567"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:taxonID
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#taxonID-2009-08-24
-
- -
+
Name
-
scientificNameID
+
scientificNameID
+ +
Label
+
Scientific Name ID
Identifier
-
http://rs.tdwg.org/dwc/terms/scientificNameID
+
http://rs.tdwg.org/dwc/terms/scientificNameID
Class
http://rs.tdwg.org/dwc/terms/Taxon
@@ -3317,18 +4191,24 @@
Comment
Example: "urn:lsid:ipni.org:names:37829-1:1.3"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:scientificNameID
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#scientificNameID-2009-08-24
-
- -
+
Name
-
acceptedNameUsageID
+
acceptedNameUsageID
+ +
Label
+
Accepted Name Usage ID
Identifier
-
http://rs.tdwg.org/dwc/terms/acceptedNameUsageID
+
http://rs.tdwg.org/dwc/terms/acceptedNameUsageID
Class
http://rs.tdwg.org/dwc/terms/Taxon
@@ -3339,18 +4219,24 @@
Comment
Example: "8fa58e08-08de-4ac1-b69c-1235340b7001"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:acceptedNameUsageID
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#acceptedNameUsageID-2009-09-21
-
- -
+
Name
-
parentNameUsageID
+
parentNameUsageID
+ +
Label
+
Parent Name Usage ID
Identifier
-
http://rs.tdwg.org/dwc/terms/parentNameUsageID
+
http://rs.tdwg.org/dwc/terms/parentNameUsageID
Class
http://rs.tdwg.org/dwc/terms/Taxon
@@ -3361,18 +4247,24 @@
Comment
Example: "8fa58e08-08de-4ac1-b69c-1235340b7001"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:parentNameUsageID
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#parentNameUsageID-2009-09-21
-
- -
+
Name
-
originalNameUsageID
+
originalNameUsageID
+ +
Label
+
Original Name Usage ID
Identifier
-
http://rs.tdwg.org/dwc/terms/originalNameUsageID
+
http://rs.tdwg.org/dwc/terms/originalNameUsageID
Class
http://rs.tdwg.org/dwc/terms/Taxon
@@ -3383,18 +4275,24 @@
Comment
Example: "http://species.gbif.org/abies_alba_1753"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:originalNameUsageID
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#originalNameUsageID-2009-09-21
-
- -
+
Name
-
nameAccordingToID
+
nameAccordingToID
+ +
Label
+
Name According To ID
Identifier
-
http://rs.tdwg.org/dwc/terms/nameAccordingToID
+
http://rs.tdwg.org/dwc/terms/nameAccordingToID
Class
http://rs.tdwg.org/dwc/terms/Taxon
@@ -3405,18 +4303,24 @@
Comment
Example: "doi:10.1016/S0269-915X(97)80026-2"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:nameAccordingToID
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#nameAccordingToID-2009-09-21
-
- -
+
Name
-
namePublishedInID
+
namePublishedInID
+ +
Label
+
Name Published In ID
Identifier
-
http://rs.tdwg.org/dwc/terms/namePublishedInID
+
http://rs.tdwg.org/dwc/terms/namePublishedInID
Class
http://rs.tdwg.org/dwc/terms/Taxon
@@ -3427,18 +4331,24 @@
Comment
Example: "http://hdl.handle.net/10199/7"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:namePublishedInID
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#namePublishedInID-2009-09-21
-
- -
+
Name
-
taxonConceptID
+
taxonConceptID
+ +
Label
+
Taxon Concept ID
Identifier
-
http://rs.tdwg.org/dwc/terms/taxonConceptID
+
http://rs.tdwg.org/dwc/terms/taxonConceptID
Class
http://rs.tdwg.org/dwc/terms/Taxon
@@ -3449,18 +4359,24 @@
Comment
Example: "8fa58e08-08de-4ac1-b69c-1235340b7001"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:taxonConceptID
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#taxonConceptID-2009-09-21
-
- -
+
Name
-
scientificName
+
scientificName
+ +
Label
+
Scientific Name
Identifier
-
http://rs.tdwg.org/dwc/terms/scientificName
+
http://rs.tdwg.org/dwc/terms/scientificName
Class
http://rs.tdwg.org/dwc/terms/Taxon
@@ -3471,18 +4387,24 @@
Comment
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)
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:scientificName
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#scientificName-2009-09-21
-
- -
+
Name
-
acceptedNameUsage
+
acceptedNameUsage
+ +
Label
+
Accepted Name Usage
Identifier
-
http://rs.tdwg.org/dwc/terms/acceptedNameUsage
+
http://rs.tdwg.org/dwc/terms/acceptedNameUsage
Class
http://rs.tdwg.org/dwc/terms/Taxon
@@ -3493,18 +4415,24 @@
Comment
Example: "Tamias minimus" valid name for "Eutamias minimus"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:acceptedNameUsage
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#acceptedNameUsage-2009-09-21
-
- -
+
Name
-
parentNameUsage
+
parentNameUsage
+ +
Label
+
Parent Name Usage
Identifier
-
http://rs.tdwg.org/dwc/terms/parentNameUsage
+
http://rs.tdwg.org/dwc/terms/parentNameUsage
Class
http://rs.tdwg.org/dwc/terms/Taxon
@@ -3515,18 +4443,24 @@
Comment
Examples: "Rubiaceae", "Gruiformes", "Testudinae"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:parentNameUsage
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#parentNameUsage-2009-09-21
-
- -
+
Name
-
originalNameUsage
+
originalNameUsage
+ +
Label
+
Original Name Usage
Identifier
-
http://rs.tdwg.org/dwc/terms/originalNameUsage
+
http://rs.tdwg.org/dwc/terms/originalNameUsage
Class
http://rs.tdwg.org/dwc/terms/Taxon
@@ -3537,18 +4471,24 @@
Comment
Examples: "Pinus abies", "Gasterosteus saltatrix Linnaeus 1768"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:originalNameUsage
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#originalNameUsage-2009-09-21
-
- -
+
Name
-
nameAccordingTo
+
nameAccordingTo
+ +
Label
+
Name According To
Identifier
-
http://rs.tdwg.org/dwc/terms/nameAccordingTo
+
http://rs.tdwg.org/dwc/terms/nameAccordingTo
Class
http://rs.tdwg.org/dwc/terms/Taxon
@@ -3559,18 +4499,24 @@
Comment
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"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:nameAccordingTo
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#nameAccordingTo-2009-09-21
-
- -
+
Name
-
namePublishedIn
+
namePublishedIn
+ +
Label
+
Name Published In
Identifier
-
http://rs.tdwg.org/dwc/terms/namePublishedIn
+
http://rs.tdwg.org/dwc/terms/namePublishedIn
Class
http://rs.tdwg.org/dwc/terms/Taxon
@@ -3581,18 +4527,24 @@
Comment
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"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:namePublishedIn
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#namePublishedIn-2009-09-21
-
- -
+
Name
-
namePublishedInYear
+
namePublishedInYear
+ +
Label
+
Name Published In Year
Identifier
-
http://rs.tdwg.org/dwc/terms/namePublishedInYear
+
http://rs.tdwg.org/dwc/terms/namePublishedInYear
Class
http://rs.tdwg.org/dwc/terms/Taxon
@@ -3603,18 +4555,24 @@
Comment
Examples: "1915", "2008"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:namePublishedInYear
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#namePublishedInYear-2011-10-16
-
- -
+
Name
-
higherClassification
+
higherClassification
+ +
Label
+
Higher Classification
Identifier
-
http://rs.tdwg.org/dwc/terms/higherClassification
+
http://rs.tdwg.org/dwc/terms/higherClassification
Class
http://rs.tdwg.org/dwc/terms/Taxon
@@ -3625,18 +4583,24 @@
Comment
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".
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:higherClassification
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#higherClassification-2014-10-23
-
- -
+
Name
-
kingdom
+
kingdom
+ +
Label
+
Kingdom
Identifier
-
http://rs.tdwg.org/dwc/terms/kingdom
+
http://rs.tdwg.org/dwc/terms/kingdom
Class
http://rs.tdwg.org/dwc/terms/Taxon
@@ -3647,18 +4611,24 @@
Comment
Examples: "Animalia", "Plantae"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:kingdom
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#kingdom-2009-08-24
-
- -
+
Name
-
phylum
+
phylum
+ +
Label
+
Phylum
Identifier
-
http://rs.tdwg.org/dwc/terms/phylum
+
http://rs.tdwg.org/dwc/terms/phylum
Class
http://rs.tdwg.org/dwc/terms/Taxon
@@ -3669,18 +4639,24 @@
Comment
Examples: "Chordata" (phylum), "Bryophyta" (division)
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:phylum
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#phylum-2009-08-24
-
- -
+
Name
-
class
+
class
+ +
Label
+
Class
Identifier
-
http://rs.tdwg.org/dwc/terms/class
+
http://rs.tdwg.org/dwc/terms/class
Class
http://rs.tdwg.org/dwc/terms/Taxon
@@ -3691,18 +4667,24 @@
Comment
Examples: "Mammalia", "Hepaticopsida"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:class
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#class-2009-08-24
-
- -
+
Name
-
order
+
order
+ +
Label
+
Order
Identifier
-
http://rs.tdwg.org/dwc/terms/order
+
http://rs.tdwg.org/dwc/terms/order
Class
http://rs.tdwg.org/dwc/terms/Taxon
@@ -3713,18 +4695,24 @@
Comment
Examples: "Carnivora", "Monocleales"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:order
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#order-2009-08-24
-
- -
+
Name
-
family
+
family
+ +
Label
+
Family
Identifier
-
http://rs.tdwg.org/dwc/terms/family
+
http://rs.tdwg.org/dwc/terms/family
Class
http://rs.tdwg.org/dwc/terms/Taxon
@@ -3735,18 +4723,24 @@
Comment
Examples: "Felidae", "Monocleaceae"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:family
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#family-2009-08-24
-
- -
+
Name
-
genus
+
genus
+ +
Label
+
Genus
Identifier
-
http://rs.tdwg.org/dwc/terms/genus
+
http://rs.tdwg.org/dwc/terms/genus
Class
http://rs.tdwg.org/dwc/terms/Taxon
@@ -3757,18 +4751,24 @@
Comment
Examples: "Puma", "Monoclea"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:genus
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#genus-2009-08-24
-
- -
+
Name
-
subgenus
+
subgenus
+ +
Label
+
Subgenus
Identifier
-
http://rs.tdwg.org/dwc/terms/subgenus
+
http://rs.tdwg.org/dwc/terms/subgenus
Class
http://rs.tdwg.org/dwc/terms/Taxon
@@ -3779,18 +4779,24 @@
Comment
Examples: "Strobus (Pinus)", "Puma (Puma)" "Loligo (Amerigo)", "Hieracium subgen. Pilosella"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:subgenus
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#subgenus-2009-08-24
-
- -
+
Name
-
specificEpithet
+
specificEpithet
+ +
Label
+
Specific Epithet
Identifier
-
http://rs.tdwg.org/dwc/terms/specificEpithet
+
http://rs.tdwg.org/dwc/terms/specificEpithet
Class
http://rs.tdwg.org/dwc/terms/Taxon
@@ -3801,18 +4807,24 @@
Comment
Examples: "concolor", "gottschei"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:specificEpithet
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#specificEpithet-2009-04-24
-
- -
+
Name
-
infraspecificEpithet
+
infraspecificEpithet
+ +
Label
+
Infraspecific Epithet
Identifier
-
http://rs.tdwg.org/dwc/terms/infraspecificEpithet
+
http://rs.tdwg.org/dwc/terms/infraspecificEpithet
Class
http://rs.tdwg.org/dwc/terms/Taxon
@@ -3823,18 +4835,24 @@
Comment
Examples: "concolor", "oxyadenia", "sayi"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:infraspecificEpithet
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#infraspecificEpithet-2009-08-24
-
- -
+
Name
-
taxonRank
+
taxonRank
+ +
Label
+
Taxon Rank
Identifier
-
http://rs.tdwg.org/dwc/terms/taxonRank
+
http://rs.tdwg.org/dwc/terms/taxonRank
Class
http://rs.tdwg.org/dwc/terms/Taxon
@@ -3845,18 +4863,24 @@
Comment
Examples: "subspecies", "varietas", "forma", "species", "genus"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:taxonRank
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#taxonRank-2009-09-21
-
- -
+
Name
-
verbatimTaxonRank
+
verbatimTaxonRank
+ +
Label
+
Verbatim Taxon Rank
Identifier
-
http://rs.tdwg.org/dwc/terms/verbatimTaxonRank
+
http://rs.tdwg.org/dwc/terms/verbatimTaxonRank
Class
http://rs.tdwg.org/dwc/terms/Taxon
@@ -3867,18 +4891,24 @@
Comment
Examples: "Agamospecies", "sub-lesus", "prole", "apomict", "nothogrex", "sp.", "subsp.", "var."
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:verbatimTaxonRank
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#verbatimTaxonRank-2009-09-21
-
- -
+
Name
-
scientificNameAuthorship
+
scientificNameAuthorship
+ +
Label
+
Scientific Name Authorship
Identifier
-
http://rs.tdwg.org/dwc/terms/scientificNameAuthorship
+
http://rs.tdwg.org/dwc/terms/scientificNameAuthorship
Class
http://rs.tdwg.org/dwc/terms/Taxon
@@ -3889,18 +4919,24 @@
Comment
Example: "(Torr.) J.T. Howell", "(Martinovský) Tzvelev", "(Györfi, 1952)"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:scientificNameAuthorship
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#scientificNameAuthorship-2009-04-24
-
- -
+
Name
-
vernacularName
+
vernacularName
+ +
Label
+
Vernacular Name
Identifier
-
http://rs.tdwg.org/dwc/terms/vernacularName
+
http://rs.tdwg.org/dwc/terms/vernacularName
Class
http://rs.tdwg.org/dwc/terms/Taxon
@@ -3911,18 +4947,24 @@
Comment
Examples: "Andean Condor", "Condor Andino", "American Eagle", "Gänsegeier"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:vernacularName
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#vernacularName-2009-07-06
-
- -
+
Name
-
nomenclaturalCode
+
nomenclaturalCode
+ +
Label
+
Nomenclatural Code
Identifier
-
http://rs.tdwg.org/dwc/terms/nomenclaturalCode
+
http://rs.tdwg.org/dwc/terms/nomenclaturalCode
Class
http://rs.tdwg.org/dwc/terms/Taxon
@@ -3933,18 +4975,24 @@
Comment
Examples: "ICBN", "ICZN", "BC", "ICNCP", "BioCode", "ICZN; ICBN"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:nomenclaturalCode
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#nomenclaturalCode-2009-09-21
-
- -
+
Name
-
taxonomicStatus
+
taxonomicStatus
+ +
Label
+
Taxonomic Status
Identifier
-
http://rs.tdwg.org/dwc/terms/taxonomicStatus
+
http://rs.tdwg.org/dwc/terms/taxonomicStatus
Class
http://rs.tdwg.org/dwc/terms/Taxon
@@ -3955,18 +5003,24 @@
Comment
Examples: "invalid", "misapplied", "homotypic synonym", "accepted"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:taxonomicStatus
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#taxonomicStatus-2009-04-24
-
- -
+
Name
-
nomenclaturalStatus
+
nomenclaturalStatus
+ +
Label
+
Nomenclatural Status
Identifier
-
http://rs.tdwg.org/dwc/terms/nomenclaturalStatus
+
http://rs.tdwg.org/dwc/terms/nomenclaturalStatus
Class
http://rs.tdwg.org/dwc/terms/Taxon
@@ -3977,18 +5031,24 @@
Comment
Examples: "nom. ambig.", "nom. illeg.", "nom. subnud."
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:nomenclaturalStatus
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#nomenclaturalStatus-2009-04-24
-
- -
+
Name
-
taxonRemarks
+
taxonRemarks
+ +
Label
+
Taxon Remarks
Identifier
-
http://rs.tdwg.org/dwc/terms/taxonRemarks
+
http://rs.tdwg.org/dwc/terms/taxonRemarks
Class
http://rs.tdwg.org/dwc/terms/Taxon
@@ -3999,18 +5059,65 @@
Comment
Example: "this name is a misspelling in common use"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:taxonRemarks
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#taxonRemarks-2009-08-24
-
- -
+ +
+
+

ResourceRelationship

+ +
+ +
Name
-
resourceRelationshipID
+
ResourceRelationship
+ +
Label
+
Resource Relationship
Identifier
-
http://rs.tdwg.org/dwc/terms/resourceRelationshipID
+
http://rs.tdwg.org/dwc/terms/ResourceRelationship
+ + +
Definition
+
A relationship of one rdfs:Resource (http://www.w3.org/2000/01/rdf-schema#Resource) to another.
+ +
Comment
+
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.
+ +
Reference
+
http://terms.tdwg.org/wiki/dwc:ResourceRelationship
+ +
History
+
http://rs.tdwg.org/dwc/terms/history.html#ResourceRelationship-2014-10-23
+
+ + +
+
Name
+
resourceRelationshipID
+ +
Label
+
Resource Relationship ID
+ +
Identifier
+
http://rs.tdwg.org/dwc/terms/resourceRelationshipID
Class
http://rs.tdwg.org/dwc/terms/ResourceRelationship
@@ -4021,18 +5128,24 @@
Comment
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:resourceRelationshipID
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#resourceRelationshipID-2009-04-24
-
- -
+
Name
-
resourceID
+
resourceID
+ +
Label
+
Resource ID
Identifier
-
http://rs.tdwg.org/dwc/terms/resourceID
+
http://rs.tdwg.org/dwc/terms/resourceID
Class
http://rs.tdwg.org/dwc/terms/ResourceRelationship
@@ -4043,18 +5156,24 @@
Comment
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:resourceID
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#resourceID-2009-04-24
-
- -
+
Name
-
relatedResourceID
+
relatedResourceID
+ +
Label
+
Related Resource ID
Identifier
-
http://rs.tdwg.org/dwc/terms/relatedResourceID
+
http://rs.tdwg.org/dwc/terms/relatedResourceID
Class
http://rs.tdwg.org/dwc/terms/ResourceRelationship
@@ -4065,18 +5184,24 @@
Comment
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:relatedResourceID
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#relatedResourceID-2009-04-24
-
- -
+
Name
-
relationshipOfResource
+
relationshipOfResource
+ +
Label
+
Relationship Of Resource
Identifier
-
http://rs.tdwg.org/dwc/terms/relationshipOfResource
+
http://rs.tdwg.org/dwc/terms/relationshipOfResource
Class
http://rs.tdwg.org/dwc/terms/ResourceRelationship
@@ -4087,18 +5212,24 @@
Comment
Examples: "duplicate of", "mother of", "endoparasite of", "host to", "sibling of", "valid synonym of", "located within"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:relationshipOfResource
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#relationshipOfResource-2009-04-24
-
- -
+
Name
-
relationshipAccordingTo
+
relationshipAccordingTo
+ +
Label
+
Relationship According To
Identifier
-
http://rs.tdwg.org/dwc/terms/relationshipAccordingTo
+
http://rs.tdwg.org/dwc/terms/relationshipAccordingTo
Class
http://rs.tdwg.org/dwc/terms/ResourceRelationship
@@ -4109,18 +5240,24 @@
Comment
Example: "Julie Woodruff"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:relationshipAccordingTo
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#relationshipAccordingTo-2009-04-24
-
- -
+
Name
-
relationshipEstablishedDate
+
relationshipEstablishedDate
+ +
Label
+
Relationship Established Date
Identifier
-
http://rs.tdwg.org/dwc/terms/relationshipEstablishedDate
+
http://rs.tdwg.org/dwc/terms/relationshipEstablishedDate
Class
http://rs.tdwg.org/dwc/terms/ResourceRelationship
@@ -4131,18 +5268,24 @@
Comment
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.
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:relationshipEstablishedDate
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#relationshipEstablishedDate-2009-04-24
-
- -
+
Name
-
relationshipRemarks
+
relationshipRemarks
+ +
Label
+
Relationship Remarks
Identifier
-
http://rs.tdwg.org/dwc/terms/relationshipRemarks
+
http://rs.tdwg.org/dwc/terms/relationshipRemarks
Class
http://rs.tdwg.org/dwc/terms/ResourceRelationship
@@ -4153,18 +5296,67 @@
Comment
Examples: "mother and offspring collected from the same nest", "pollinator captured in the act"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:relationshipRemarks
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#relationshipRemarks-2009-04-24
-
- -
+ +
+
+

MeasurementOrFact

+ +
+ +
Name
-
measurementID
+
MeasurementOrFact
+ +
Label
+
Measurement or Fact
Identifier
-
http://rs.tdwg.org/dwc/terms/measurementID
+
http://rs.tdwg.org/dwc/terms/MeasurementOrFact
+ + +
Definition
+
A measurement of or fact about an rdfs:Resource (http://www.w3.org/2000/01/rdf-schema#Resource).
+ +
Comment
+
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.
+ +
Reference
+
http://terms.tdwg.org/wiki/dwc:MeasurementOrFact
+ +
History
+
http://rs.tdwg.org/dwc/terms/history.html#MeasurementOrFact-2014-10-23
+
+ + +
+
Name
+
measurementID
+ +
Label
+
Measurement ID
+ +
Identifier
+
http://rs.tdwg.org/dwc/terms/measurementID
Class
http://rs.tdwg.org/dwc/terms/MeasurementOrFact
@@ -4175,18 +5367,24 @@
Comment
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:measurementID
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#measurementID-2009-04-24
-
- -
+
Name
-
measurementType
+
measurementType
+ +
Label
+
Measurement Type
Identifier
-
http://rs.tdwg.org/dwc/terms/measurementType
+
http://rs.tdwg.org/dwc/terms/measurementType
Class
http://rs.tdwg.org/dwc/terms/MeasurementOrFact
@@ -4197,18 +5395,24 @@
Comment
Examples: "tail length", "temperature", "trap line length", "survey area", "trap type"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:measurementType
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#measurementType-2009-04-24
-
- -
+
Name
-
measurementValue
+
measurementValue
+ +
Label
+
Measurement Value
Identifier
-
http://rs.tdwg.org/dwc/terms/measurementValue
+
http://rs.tdwg.org/dwc/terms/measurementValue
Class
http://rs.tdwg.org/dwc/terms/MeasurementOrFact
@@ -4219,18 +5423,24 @@
Comment
Examples: "45", "20", "1", "14.5", "UV-light"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:measurementValue
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#measurementValue-2009-04-24
-
- -
+
Name
-
measurementAccuracy
+
measurementAccuracy
+ +
Label
+
Measurement Accuracy
Identifier
-
http://rs.tdwg.org/dwc/terms/measurementAccuracy
+
http://rs.tdwg.org/dwc/terms/measurementAccuracy
Class
http://rs.tdwg.org/dwc/terms/MeasurementOrFact
@@ -4241,18 +5451,24 @@
Comment
Examples: "0.01", "normal distribution with variation of 2 m"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:measurementAccuracy
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#measurementAccuracy-2009-04-24
-
- -
+
Name
-
measurementUnit
+
measurementUnit
+ +
Label
+
Measurement Unit
Identifier
-
http://rs.tdwg.org/dwc/terms/measurementUnit
+
http://rs.tdwg.org/dwc/terms/measurementUnit
Class
http://rs.tdwg.org/dwc/terms/MeasurementOrFact
@@ -4263,18 +5479,24 @@
Comment
Examples: "mm", "C", "km", "ha"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:measurementUnit
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#measurementUnit-2009-04-24
-
- -
+
Name
-
measurementDeterminedBy
+
measurementDeterminedBy
+ +
Label
+
Measurement Determined By
Identifier
-
http://rs.tdwg.org/dwc/terms/measurementDeterminedBy
+
http://rs.tdwg.org/dwc/terms/measurementDeterminedBy
Class
http://rs.tdwg.org/dwc/terms/MeasurementOrFact
@@ -4285,18 +5507,24 @@
Comment
The recommended best practice is to separate the values with a vertical bar (' | '). Examples: "Rob Guralnick", "Julie Woodruff | Eileen Lacey".
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:measurementDeterminedBy
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#measurementDeterminedBy-2014-10-23
-
- -
+
Name
-
measurementDeterminedDate
+
measurementDeterminedDate
+ +
Label
+
Measurement Determined Date
Identifier
-
http://rs.tdwg.org/dwc/terms/measurementDeterminedDate
+
http://rs.tdwg.org/dwc/terms/measurementDeterminedDate
Class
http://rs.tdwg.org/dwc/terms/MeasurementOrFact
@@ -4307,18 +5535,24 @@
Comment
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.
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:measurementDeterminedDate
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#measurementDeterminedDate-2009-04-24
-
- -
+
Name
-
measurementMethod
+
measurementMethod
+ +
Label
+
Measurement Method
Identifier
-
http://rs.tdwg.org/dwc/terms/measurementMethod
+
http://rs.tdwg.org/dwc/terms/measurementMethod
Class
http://rs.tdwg.org/dwc/terms/MeasurementOrFact
@@ -4329,18 +5563,24 @@
Comment
Examples: "minimum convex polygon around burrow entrances" for a home range area, "barometric altimeter" for an elevation
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:measurementMethod
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#measurementMethod-2009-04-24
-
- -
+
Name
-
measurementRemarks
+
measurementRemarks
+ +
Label
+
Measurement Remarks
Identifier
-
http://rs.tdwg.org/dwc/terms/measurementRemarks
+
http://rs.tdwg.org/dwc/terms/measurementRemarks
Class
http://rs.tdwg.org/dwc/terms/MeasurementOrFact
@@ -4351,10 +5591,14 @@
Comment
Example: "tip of tail missing"
-
Details
+
Reference
+
http://terms.tdwg.org/wiki/dwc:measurementRemarks
+ +
History
http://rs.tdwg.org/dwc/terms/history.html#measurementRemarks-2009-04-24
-
+ +