/
Protocol Mapping: Signs-based Fauna Survey - Within-plot Belt Transect

Protocol Mapping: Signs-based Fauna Survey - Within-plot Belt Transect

Conceptual Modelling

This module is implemented within the 1 ha plot at 1, 2, 3 or 4 100 m transects consisting of 100, 1 m x 1 m consecutive quadrats. In each quadrat, the absence of signs is recorded, or the presence of each sign type along with the attributed species (minimum data requirement). The number of each sign type by attributed species can be recorded.

The feature of interest is fauna sign, and the feature type is fauna evidence . All observations are recorded for each site during a site visit. Weather conditions are recorded as observations too, and the feature type is weather.

Mapping Diagram

This diagram includes parameters used during the survey and their relationships.

Survey Data Mapping

https://dev.core-api.paratoo.tern.org.au/documentation/#/Sign-based-active-plot-search-survey/post%2Fsign-based-active-plot-search-surveys provides example survey data:

{ "data": { "surveyId": "string", "plot_visit": 0, "survey_type": "S", ##TBC "survey_intent": "O", "nearby_track_transect_survey": true, ##TBC "target_species": [ { "lut": "Goat", "other_species": "string" } ], "observer_details": [ { "observer_name": "string", "role": "S" } ], "weather": { "precipitation": "NO", "precipitation_duration": "I", "wind_description": "C", "cloud_cover": "SU", "temperature": 0, "moon_phase": "NM" }, "tracking_surface_info": "string", ##TBC "site_info_collection": true, ##TBC "createdBy": 0, "updatedBy": 0 } }

Surveys are mapped as Procedure in TERN Ontology. Protocol used is Method, and linked with Procedure via tern:hasMethod.

Reconnaissance and survey set-up are before conducting surveys, and parameters entered in this process are mapped as Attribute of survey Input.

TERN has Ontology for people and organisations https://linkeddata.tern.org.au/viewers/tern-org-ontology. Observer is mapped as Agent. Role is Attribute of Agent. Agent has property schema:name, and it’s the observer name.

Mapping parameters into TERN Ontology

Parameter in example data

Properties or classes in TERN Ontology

Parameter in example data

Properties or classes in TERN Ontology

surveyId

The URL of tern:Procedure class

plot_visit

The class tern:SiteVisit

survey_intent

The attribute of class tern:Input, fauna survey intent type

target_species

The attribute of class tern:Input, target species

observer_details

The class prov:Agent

observer_name

The property of prov:Agent, schema:name

Role

The attribute of prov:Agent, observer role

weather

The class tern:ObservationCollection with a collection of weather observations

precipitation

The class tern:Observationwith observable property precipitation type

precipitation_duration

The class tern:Observationwith observable property precipitation duration

wind description

The class tern:Observationwith observable property wind description

cloud_cover

The class tern:Observationwith observable property cloud cover

temperature

The class tern:Observationwith observable property air temperature

moon_phase

The class tern:Observationwith observable property moon phase

createdBy

The class prov:Agent

updatedBy

The class prov:Agent

Mapping example

If the survey data is:

{ "data": { "surveyId": "survey001", "plot_visit": site-visit-001, "survey_intent": "one-off measure", "target_species": [ { "lut": "Goat", "other_species": "Cat" } ], "observer_details": [ { "observer_name": "Luke Green", "role": "Experienced surveyor" } ], "weather": { "precipitation": "NO", "precipitation_duration": "I", "wind_description": "C", "cloud_cover": "SU", "temperature": 15, "moon_phase": "NM" }, "createdBy": "Luke Green", "updatedBy": "Luke Green" } }
  1. How is Survey represented? https://w3id.org/tern/ontologies/tern/Procedure

<http://example.com/survey/001> a tern:Procedure ; -------------------------------------------- #surveyId tern:hasMethod <http://example.com/url-of-within-plot-belt-transect-protocol> ; ------- #method URI in controlled vocabualries tern:hasInput <http://example.com/survey001/input-variables> ; prov:wasAssociatedWith <http://example.com/person/luke-green> . ----------------------- #observer / people who created or updated the record <http://example.com/survey001/input-variables> a tern:Input ; tern:hasAttribute <http://example.com/survey001/input-variables/survey-intent> ; ------ #survey_intent tern:hasAttribute <http://example.com/survey001/input-variables/target-species> . ----- #target_species
  1. How is attribute value represented? https://w3id.org/tern/ontologies/tern/Attribute

<http://example.com/survey001/input-variables/survey-intent> a tern:Attribute ; rdfs:label "fauna survey intent type" ; ----------------------------------------------- #attribute concept label in controlled vocabularies tern:attribute <https://example.com/url-of-attribute-fauna-survey-intent-type> ; ------ #attribute concept URI in controlled vocabularies tern:hasSimpleValue <http://example.com/lut-uri-in-cv-for-one-off-measure> ; ---------- #attribute value tern:hasValue [ a tern:IRI ; ---------------------------------------------------------------------- #attribute value type, IRI or Text or Float etc. rdf:value <http://example.com/lut-uri-in-cv-for-one-off-measure> ; ---------------- #attribute value ] .
  1. How is plot visit represented? https://w3id.org/tern/ontologies/tern/SiteVisit

<http://example.com/site/visit/001> a tern:SiteVisit ; prov:startedAtTime "start-time"^^xsd:dateTime ; prov:endedAtTime "end-time"^^xsd:dateTime ; tern:hasSite <http://example.com/site/001> . ---------------------------------------- #the site this survey visits <http://example.com/site/001> a tern:Site . ------------------------------------------------- #site relevant information is recorded here <http://example.com/observation-collection/weather> a tern:ObservationCollection ; tern:hasSiteVisit <http://example.com/site/visit/001> ; ----------------------------- #observations are done during this site visit prov:wasAssociatedWith <http://example.com/person/luke-green> ; --------------------- #observers sosa:usedProcedure <http://example.com/survey/001> ; -------------------------------- #this is the procedure mentioned above, observations are conducted by following the procedure sosa:hasMember <http://example.com/weather-observation/precipitation> ; ------------- #observation details sosa:hasMember <http://example.com/weather-observation/precipitation-duration> ; sosa:hasMember <http://example.com/weather-observation/wind-description> ; sosa:hasMember <http://example.com/weather-observation/air-temperature> ; sosa:hasMember <http://example.com/weather-observation/cloud-cover> ; sosa:hasMember <http://example.com/weather-observation/moon-phase> .
  1. How is observation represented? https://w3id.org/tern/ontologies/tern/Observation

<http://example.com/weather-observation/precipitation> a tern:Observation ; rdfs:label "precipitation type" ; sosa:hasFeatureOfInterest <https://example.com/feature-of-interest/weather> ; sosa:hasResult [ a tern:IRI , tern:Value ; rdfs:label "NO" ; -------------------------------------------------------------- #observation result value rdf:value <https://example.com/url-of-lut-NO-in-CV> ---------------------------- #if the value is from LUTs, this is the URL of categorical concept in controlled vocabularies ] ; sosa:hasSimpleResult "NO" ; sosa:observedProperty <https://https://example.com/url-of-observable-property-precipitation-type-in-CV> ; ---------- #The observable property in controlled vocabularies sosa:phenomenonTime <https://example.com/example-phenomenon-time> ; sosa:usedProcedure <http://example.com/survey/001> ; ----------------------------------- #this is the procedure mentioned above, observations are conducted by following the procedure tern:resultDateTime "2022-05-10T05:38:02"^^xsd:dateTime ; .
  1. How is person represented? https://w3id.org/tern/ontologies/org/Person

<http://example.com/person/luke-green> a prov:Agent ; schema:name "Luke Green" ; -------------------------------------------------------- #Person's name tern:hasAttribute <http://example.com/observer-role/survey001/luke-green> . ------- #observer role is inside the attribute

Related content

We at TERN acknowledge the Traditional Owners and Custodians throughout Australia, New Zealand and all nations.
We honour their profound connections to land, water, biodiversity and
culture and pay our respects to their Elders past, present and emerging.

TERN is supported by the Australian Government through the National Collaborative Research Infrastructure Strategy, NCRIS.