Welcome to TERN Knowledge Base
Other endpoints
EcoPlots endpoints allows access to a number of other more specialised data points.
Feature of interest attributes
During a sampling event, observations (e.g. number of flowers, vegetation height, body mass) are performed on features of interest (foi). Features of interest are the “real world” objects that we are interested in sampling/measuring across different ecological scales (e.g. plant individual, animal population, soil profile or climate). TERN’s LinkedData site has more information about Features of Interest.
Every instance of a FOI has additional attributes related exclusively to that instance. For example, the FOI is an individual plant, and there can be multiple instances of the FOI such as a specific tree or plant (tree1, tree2, tree3, etc).
This information can be accessed via the /foi/attributes
endpoint.
Request example:
curl -X POST "https://ecoplots.tern.org.au/api/v1.0/foi/attributes?dformat=ndjson" -H "accept: */*" -H "X-Api-Key: aAbBcC...xXyYzZ" -H "Content-Type: application/json" -d "{\"page_number\": 1, \"page_size\": 10, \"query\": {}}"
Response excerpt:
{
"attributeId":"http://linked.data.gov.au/dataset/ausplots/soil_characterisation-attr-lower_depth-122923",
"featureId":"http://linked.data.gov.au/dataset/ausplots/site_visit_id-58580-soil_char_id-122923",
"attributeName":"soil depth max",
"attributeConceptId":"http://linked.data.gov.au/def/tern-cv/263d7143-e88d-4105-83e7-00d75035a2b3",
"value":0.1,
"valueId":"N/A",
"valueUnit":"Metre",
"valueUnitId":"http://qudt.org/vocab/unit/M"
}
{
"attributeId":"http://linked.data.gov.au/dataset/ausplots/soil_characterisation-attr-upper_depth-122923",
"featureId":"http://linked.data.gov.au/dataset/ausplots/site_visit_id-58580-soil_char_id-122923",
"attributeName":"soil depth min",
"attributeConceptId":"http://linked.data.gov.au/def/tern-cv/376efe60-0550-42b4-b90b-110015806dc7",
"value":0.0,
"valueId":"N/A",
"valueUnit":"Metre",
"valueUnitId":"http://qudt.org/vocab/unit/M"
}
...
{
"attributeId":"http://linked.data.gov.au/dataset/ausplots/soil_characterisation-attr-layer_barcode-122923",
"featureId":"http://linked.data.gov.au/dataset/ausplots/site_visit_id-58580-soil_char_id-122923",
"attributeName":"voucher barcode",
"attributeConceptId":"http://linked.data.gov.au/def/tern-cv/6d351831-45da-403c-919b-1cee41950488",
"value":"NST004264",
"valueId":"N/A",
"valueUnit":"N/A",
"valueUnitId":"N/A"
}
System attributes
When a system (instrument) was used to measure the result of an observation, the type of system and the system instance identifier was recorded along the observation data.
Information about system attributes that are related exclusively to an instance can be accessed via the /systems/attributes
endpoint.
Request example:
curl -X POST "https://ecoplots.tern.org.au/api/v1.0/systems/attributes?dformat=ndjson" -H "accept: */*" -H "X-Api-Key: aAbBcC...xXyYzZ" -H "Content-Type: application/json" -d "{\"page_number\": 1, \"page_size\": 10, \"query\": {}}"
Response excerpt:
Taxon
EcoPlots stores Taxonomic information about all vegetative species collected in the various datasets. This information is sourced from Australian Plant Name Index
Taxon data can be retrieved using the /taxon
endpoint.
Request example:
Response excerpt:
Provide your feedback about the experience with Knowledge base