SpecimenNames

DonovanSharp - Wed Aug 30 2006 - Version 1.5
Parent topic: SddContents

SDD Part 0: Introduction and Primer to the SDD Standard

3.5 Defining specimen names

3.5.1 Defining specimen names

Sample data descriptions usually comprise repeated measurements of parts of individual specimens, and are the basis from which the more abstracted descriptions in natural language and coded descriptions are derived. Few taxonomists consistently record and archive their raw data in a standardised format and specimen naming conventions will vary between institutions and workers.

Specimen names in SDD may be provided directly within the document, or they may be linked to or derived from external taxonomic databases. Each specimen is assigned a human readable name.

Adding specimen names to an SDD instance document simply requires a unique identifier for each specimen as below:


		<Specimens>
			<Specimen id="sp1">
				<Representation>
					<Label>TJM45337</Label>
				</Representation>
			</Specimen>
			<Specimen id="sp2">
				<Representation>
					<Label>TLM33466</Label>
				</Representation>
			</Specimen>
		</Specimens>

Specimen names are required for the recording of sample data in SDD instance documents.

The unique identifier for eact specimen is recoeded in the <Representation> element.

Other information which may be recorded within the element include elements recording a taxonomic name for the specimen, an indication of the certainty applied to this taxonomic name and whether the specimen is preserved in a collection.

			<Specimen id="sp1">
				<Representation>
					<Label>TJM45337</Label>
				</Representation>
				<TaxonName ref="t1"/>
				<IdentificationCertainty>IdentificationUncertain</IdentificationCertainty>
				<IsPreservedInCollection>true</IsPreservedInCollection>
			</Specimen>

<TaxonName> refers to a TaxonName specified in the <TaxonName> element (See the topic Defining taxon names for more detail).

There are currently four allowable modifiers for the element <IdentificationCertainty>; IdentificationCertain, IdentificationCertaintyUnknown, IdentificationSimilarTo and IdentificationUncertain.

For the element <IsPreservedInCollection> true means the specimen is preserved in a collection, false means it is not.

-- Main.DonovanSharp - 07 Jul 2006