CodedDescription

DonovanSharp - Tue Jul 18 2006 - Version 1.10
Parent topic: SddContents

SDD Part 0: Introduction and Primer to the SDD Standard

4.1 Coded Descriptions

The <CodedDescription> element contains the actual data associated with each dataset.

SDD deals with two distinct subtypes of coded data, summary data and raw observational data. Summary data is data representative of recognised taxonomic entities (family, genus, species), while raw observation data is that representative of a single specimen or occurence.

The <CodedDescription> element also contains a <Scope> element, where the entities covered by the description may be defined.

4.1.1 SDD for summary data

Summary data records occurence for a related group of individuals (i.e. species, genus). Data may be aggregated from sample data using statistical measures, state distributions, etc. The element is optional to support descriptions containing only sample data or media objects. Characters are NOT required to have unique ref attributes! Data for one character may be recorded with different modifications (in spring/autumn, at tip/base).

Example 4.1.1.1 - A simple summary data description
    <CodedDescriptions>
      <CodedDescription id="cd1">
        <Representation>
          <Label>Korthalsella</Label>
        </Representation>
        <Scope>
          <TaxonName ref="t2"/>
        </Scope>
        <SummaryData>
          <Categorical ref="c3">
            <State ref="s7"/>
          </Categorical>
          <Categorical ref="c1">
            <State ref="s2"/>
          </Categorical>
          <Quantitative ref="c4">
            <Measure type="Min" value="5.0"/>
            <Measure type="UMethLower" value="10.0"/>
            <Measure type="UMethUpper" value="20.0"/>
            <Measure type="Max" value="25.0"/>
          </Quantitative>
        </SummaryData>
      </CodedDescription>
    </CodedDescriptions>

In this example the taxon Korthalsella (taxon t2) is scored present for character c3 state s7, present for character c1 state s2 and (5-)10-20(-25) for the quantitative character c4. The names assigned to these character and state names can be found within the <Characters> element.

4.1.2 SDD for <SampleData>

Raw sample data are recorded here. The analysed and generalized (e. g. using statistical measures) results are normally also reflected under <SummaryData> (with origin = 'calculated' and <BasedOnSample> referring to a sample ID.

Example 4.1.2.1 - A simple raw data description

<CodedDescriptions>
  <CodedDescription id="cd1">
   <Representation>
    <Label>Korthalsella </Label>
   </Representation>
   <Scope>
    <TaxonName ref="t2"/>
   </Scope>
   <SampleData>
    <SamplingEvent id="sev1000">
     <DateTime/>
     <SamplingUnit>
      <Categorical ref="c1">
       <State ref="s2"/>
      </Categorical>
      <Quantitative ref="c2" value="110"/>
     </SamplingUnit>
     <SamplingUnit>
      <Categorical ref="c1">
       <State ref="s1"/>
      </Categorical>
      <Quantitative ref="c2" value="112"/>
     </SamplingUnit>
     <SamplingUnit>
      <Categorical ref="c1">
       <State ref="s1"/>
      </Categorical>
      <Quantitative ref="c2" value="110"/>
     </SamplingUnit>
     <SamplingUnit>
      <Categorical ref="c1">
       <State ref="s1"/>
      </Categorical>
      <Quantitative ref="c2" value="118"/>
     </SamplingUnit>
    </SamplingEvent>
   </SampleData>
  </CodedDescription>
 </CodedDescriptions>

This example records the results of five sampling events for a categorical and a quantitative character. The names assigned to these character and state names can be found within the <Characters> element.

-- Main.DonovanSharp - 02 Jun 2006