Modeling site visits and observations of taxon occurrences #77
Replies: 4 comments 2 replies
|
Hi @dr-shorthair Thanks for sharing these examples, they are really helpful. Can I just clarify that these are O&M models, but not necessarily using the TERN specific ontology/vocabularies? I am still working through my understanding of Site in particular. When the Site is a Feature of Interest, what is the Feature Type of the Site using the TERN vocabularies? |
|
The original conceptual model was defined in the OGC/ISO specification for O&M. The terminology in these diagrams is from the SSN/SOSA implementation of O&M as an OWL ontology. The TERN Ontology makes some small additions to SOSA - |
|
Updated the diagrams a little to show that Taxon instances are concepts that have (potentially multiple) names, and are not names directly. @kheerand |
|
@kheerand directed me here after our recent discussion on the quest for the "Ontology of Taxonomic Reference". I'm interested in the use of If this abstraction of taxon makes sense, the act of 'naming' an organism (or group of them) is actually the application of a TaxonConcept; the taxon itself has no name. However in 'normal' usage, people will generally use 'taxon' to mean 'taxon concept'. (Reification) |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Following up on a conversation with Kevin Thiele and @kheerand on 2021-12-08 regarding the O&M models for observing taxon occurrences during site visits/inventories, I prepared three Concept Maps for describing a notional instance which use models of increasing complexity. Note that these are all 'valid' uses of the ontology, but have different levels of complexity supporting different levels of expressiveness.
I find it easiest to explore what's going on with instance examples.
Observations of the Site
In the simple case the site-as-a-whole is the feature-of-interest for observations made in-situ. The
observedPropertyis "Taxon Occurrence Present" with the observation result being a specificTaxoninstance. This property is commensurate with the type of the feature-of-interest - a Site. The procedure used for the (in situ) observation is "Field Inspection" and the sensor (observer) is a person denoted here by their ORCID. The details of the Taxon definitions are only shown in part - they would come from the NSL.This is the simplest representation following the O&M model, as implemented in SSN/SOSA which is the basis for the TERN Ontology. This interpretation elides the existence of the specific organisms (trees) at the site, which were judged to be a members of the taxa E. regnans and B. serrata. The trees are not explicit in this description. The observation relates to the site rather than an organism – the observed property is ‘taxon occurrence present’. This is the basic field-inventory of a site. However, this description does not allow for any sampling and separate confirmation of an identification in a museum or herbarium, etc.
The details of the observation description could be modelled a little differently, for example with the Taxon being a parameter of the Observation, so the result would be ‘present’. But I was assuming that it is not normal to explicitly record ‘absent’ taxa so I just used the ‘result’ slot for the taxon. But this is really just implementation detail. The point is that it is the site that is being characterized through field observations.
The set of observations made on the same site at the same time can be grouped in a
tern:SiteVisitor alternatively in a sosa:ObservationCollection.Ex-situ observations on samples taken from the site
Stepping up one level of complexity, we might take a sample leaf from each identified tree, and then do the identification in a museum or herbarium. The observed property is now "Taxon Membership" which is commensurate with a different feature-of-interest type - here a leaf. The leaf is described as a Sample of the Site, and the Site is a sample of an Environmental System. The organism (tree) is still elided in this model.
Under this scenario there is an act-of-sampling that takes place during the site-visit, and then an ex situ act-of-observation later, at the museum. So the
resultTimeof the act of observation (i.e. identification) is later than thephenomenonTimeof the result which is the sampling time, i.e. during the site-visit. Of course you don't have to have all this detail unless it is important.I showed the same person doing both sampling and observing, but that is not necessary. Under this scenario it is possible to check the original identification with another observation on the same leaf sample, which could use a different procedure, by a different observer, etc.
In-situ observations at the site + ex-situ observations on samples
More complex still, in this scenario we recognise the tree as well. So the leaf is a sample of the tree which is a sample of the site which is a sample of the Environmental System. There are two acts-of-sampling shown - to spot the tree and to take the leaf - still not shown is the act-of-sampling which selected the Site! The tree is at the site, so ST123 is an act of sampling to choose the one to identify and to take a leaf from. ST123 is probably not at all interesting - here it is shown primarily to justify the
isSampleOfrelation from the tree to the site. It can be inferred and probably need not be recorded in practice.This allows us to be more explicit about the two acts-of-observation - in the field it was on the tree, while in the museum it is on the leaf, with different results! The observed property is "Taxon Membership" again, which is commensurate with the feature-of-interest type - here a tree and a leaf. I haven't shown all the properties of every act or thing - you only need to record the ones that matter scientifically. All the samplings and the first observation are done by the same person, but a different person did the museum work.
Note also that the individual things can be members of more than one class: the tree is a
Samplein relation to theSite, and it is aFeatureOfInterestin relation to one act-of-sampling as well as one act-of-observation.The fact that there is a long chain of relations to get from the Taxon to the Site should not be a problem in querying a graph designed this way - SPARQL supports property paths that can include ‘one or more’ matches of the same predicate. This is where the
isSampleOflinks come in: you can query for an observation with a givenhasResultwherehasFeatureOfInterest/isSampleOf*ties it to a particular site of interest, or to find the sites where a particular taxon is observed.All reactions