diff --git a/build/pw-cv-build/pw_build.py b/build/pw-cv-build/pw_build.py new file mode 100644 index 0000000..a96868b --- /dev/null +++ b/build/pw-cv-build/pw_build.py @@ -0,0 +1,326 @@ +# Script to build Markdown pages that provide term metadata for simple vocabularies +# Steve Baskauf 2020-06-28 CC0 +# This script merges static Markdown header and footer documents with term information tables (in Markdown) generated from data in the rs.tdwg.org repo from the TDWG Github site + +# Note: this script calls a function from http_library.py, which requires importing the requests, csv, and json modules +import re +import requests # best library to manage HTTP transactions +import csv # library to read/write/parse CSV files +import json # library to convert JSON to Python data structures +import pandas as pd + +# ----------------- +# Configuration section +# ----------------- + +# !!!! Note !!!! +# This is an example of a simple vocabulary without categories. For a complex example +# with multiple namespaces and several categories, see build-page-categories.ipynb + +# This is the base URL for raw files from the branch of the repo that has been pushed to GitHub. In this example, +# the branch is named "pathway" +githubBaseUri = 'https://raw.githubusercontent.com/tdwg/rs.tdwg.org/master/' + +headerFileName = 'termlist-header.md' +footerFileName = 'termlist-footer.md' +outFileName = '../../docs/pw/index.md' + +# This is a Python list of the database names of the term lists to be included in the document. +termLists = ['pathway'] + +# NOTE! There may be problems unless every term list is of the same vocabulary type since the number of columns will differ +# However, there probably aren't any circumstances where mixed types will be used to generate the same page. +vocab_type = 3 # 1 is simple vocabulary, 2 is simple controlled vocabulary, 3 is c.v. with broader hierarchy + +# Terms in large vocabularies like Darwin and Audubon Cores may be organized into categories using tdwgutility_organizedInClass +# If so, those categories can be used to group terms in the generated term list document. +organized_in_categories = False + +# If organized in categories, the display_order list must contain the IRIs that are values of tdwgutility_organizedInClass +# If not organized into categories, the value is irrelevant. There just needs to be one item in the list. +display_order = [''] +display_label = ['Vocabulary'] # these are the section labels for the categories in the page +display_comments = [''] # these are the comments about the category to be appended following the section labels +display_id = ['Vocabulary'] # these are the fragment identifiers for the associated sections for the categories + +# --------------- +# Function definitions +# --------------- + +# replace URL with link +# +def createLinks(text): + def repl(match): + if match.group(1)[-1] == '.': + return '' + match.group(1)[:-1] + '.' + return '' + match.group(1) + '' + + pattern = '(https?://[^\s,;\)"]*)' + result = re.sub(pattern, repl, text) + return result + +# 2021-08-06 Replace the createLinks() function with functions copied from the QRG build script written by S. Van Hoey +def convert_code(text_with_backticks): + """Takes all back-quoted sections in a text field and converts it to + the html tagged version of code blocks ... + """ + return re.sub(r'`([^`]*)`', r'\1', text_with_backticks) + +def convert_link(text_with_urls): + """Takes all links in a text field and converts it to the html tagged + version of the link + """ + def _handle_matched(inputstring): + """quick hack version of url handling on the current prime versions data""" + url = inputstring.group() + return "{}".format(url, url) + + regx = "(http[s]?://[\w\d:#@%/;$()~_?\+-;=\\\.&]*)(?\n' + curie = row['pref_ns_prefix'] + ":" + row['term_localName'] + curieAnchor = curie.replace(':','_') + text += '\t\n' + text += '\t\t\n' + text += '\t\t\tTerm Name ' + curie + '\n' + text += '\t\t\n' + text += '\t\n' + text += '\t\n' + text += '\t\t\n' + text += '\t\t\tTerm IRI\n' + uri = row['pref_ns_uri'] + row['term_localName'] + text += '\t\t\t' + uri + '\n' + text += '\t\t\n' + text += '\t\t\n' + text += '\t\t\tModified\n' + text += '\t\t\t' + row['term_modified'] + '\n' + text += '\t\t\n' + + if row['version_iri'] != '': + text += '\t\t\n' + text += '\t\t\tTerm version IRI\n' + text += '\t\t\t' + row['version_iri'] + '\n' + text += '\t\t\n' + + text += '\t\t\n' + text += '\t\t\tLabel\n' + text += '\t\t\t' + row['label'] + '\n' + text += '\t\t\n' + + if row['term_deprecated'] != '': + text += '\t\t\n' + text += '\t\t\t\n' + text += '\t\t\tThis term is deprecated and should no longer be used.\n' + text += '\t\t\n' + + text += '\t\t\n' + text += '\t\t\tDefinition\n' + text += '\t\t\t' + row['definition'] + '\n' + text += '\t\t\n' + + if row['usage'] != '': + text += '\t\t\n' + text += '\t\t\tUsage\n' + text += '\t\t\t' + convert_link(convert_code(row['usage'])) + '\n' + text += '\t\t\n' + + if row['notes'] != '': + text += '\t\t\n' + text += '\t\t\tNotes\n' + text += '\t\t\t' + convert_link(convert_code(row['notes'])) + '\n' + text += '\t\t\n' + + if (vocab_type == 2 or vocab_type == 3) and row['controlled_value_string'] != '': # controlled vocabulary + text += '\t\t\n' + text += '\t\t\tControlled value\n' + text += '\t\t\t' + row['controlled_value_string'] + '\n' + text += '\t\t\n' + + if vocab_type == 3 and row['skos_broader'] != '': # controlled vocabulary with skos:broader relationships + text += '\t\t\n' + text += '\t\t\tHas broader concept\n' + curieAnchor = row['skos_broader'].replace(':','_') + text += '\t\t\t' + row['skos_broader'] + '\n' + text += '\t\t\n' + + text += '\t\t\n' + text += '\t\t\tType\n' + if row['type'] == 'http://www.w3.org/1999/02/22-rdf-syntax-ns#Property': + text += '\t\t\tProperty\n' + elif row['type'] == 'http://www.w3.org/2000/01/rdf-schema#Class': + text += '\t\t\tClass\n' + elif row['type'] == 'http://www.w3.org/2004/02/skos/core#Concept': + text += '\t\t\tConcept\n' + else: + text += '\t\t\t' + row['type'] + '\n' # this should rarely happen + text += '\t\t\n' + + # Look up decisions related to this term + for drow_index,drow in decisions_df.iterrows(): + if drow['linked_affected_resource'] == uri: + text += '\t\t\n' + text += '\t\t\tExecutive Committee decision\n' + text += '\t\t\thttp://rs.tdwg.org/decisions/' + drow['decision_localName'] + '\n' + text += '\t\t\n' + + text += '\t\n' + text += '\n' + text += '\n' + text += '\n' +term_table = text + +text = index_by_label + term_table + +# read in header and footer, merge with terms table, and output + +headerObject = open(headerFileName, 'rt', encoding='utf-8') +header = headerObject.read() +headerObject.close() + +footerObject = open(footerFileName, 'rt', encoding='utf-8') +footer = footerObject.read() +footerObject.close() + +output = header + text + footer +outputObject = open(outFileName, 'wt', encoding='utf-8') +outputObject.write(output) +outputObject.close() + +print('done') + diff --git a/build/pw-cv-build/termlist-header.md b/build/pw-cv-build/termlist-header.md index bd59eb8..4da4dbf 100644 --- a/build/pw-cv-build/termlist-header.md +++ b/build/pw-cv-build/termlist-header.md @@ -10,7 +10,7 @@ Preferred namespace abbreviation : dwcpw: Date version issued -: 2020-10-13 +: 2021-09-01 Date created : 2020-10-13 @@ -19,11 +19,14 @@ Part of TDWG Standard : This document version -: +: Latest version of document : +Previous version +: + Abstract : The Darwin Core term `pathway` provides information about the process by which an Organism came to be in a given place at a given time. The Pathway Controlled Vocabulary provides terms that should be used as values for `dwc:pathway` and `dwciri:pathway`. @@ -34,7 +37,7 @@ Creator : TDWG Darwin Core Maintenance Group Bibliographic citation -: Darwin Core Maintenance Group. 2020. Pathway Controlled Vocabulary List of Terms. Biodiversity Information Standards (TDWG). +: Darwin Core Maintenance Group. 2021. Pathway Controlled Vocabulary List of Terms. Biodiversity Information Standards (TDWG). ## 1 Introduction diff --git a/docs/pw/2020-10-13.md b/docs/pw/2020-10-13.md new file mode 100644 index 0000000..a41571f --- /dev/null +++ b/docs/pw/2020-10-13.md @@ -0,0 +1,2821 @@ +# Pathway Controlled Vocabulary List of Terms + +Title +: Pathway Controlled Vocabulary List of Terms + +Namespace URI +: + +Preferred namespace abbreviation +: dwcpw: + +Date version issued +: 2020-10-13 + +Date created +: 2020-10-13 + +Part of TDWG Standard +: + +This document version +: + +Latest version of document +: + +Replaced by +: + +Abstract +: The Darwin Core term `pathway` provides information about the process by which an Organism came to be in a given place at a given time. The Pathway Controlled Vocabulary provides terms that should be used as values for `dwc:pathway` and `dwciri:pathway`. + +Contributors +: Quentin Groom, Peter Desmet, Lien Reyserhove, Tim Adriaens, Damiano Oldoni, Sonia Vanderhoeven, Steven J Baskauf, Arthur Chapman, Melodie McGeoch, Ramona Walls, John Wieczorek, John R.U. Wilson, Paula F F Zermoglio, Annie Simpson + +Creator +: TDWG Darwin Core Maintenance Group + +Bibliographic citation +: Darwin Core Maintenance Group. 2020. Pathway Controlled Vocabulary List of Terms. Biodiversity Information Standards (TDWG). + + +## 1 Introduction + +This document includes terms intended to be used as a controlled value for Darwin Core terms with local name `pathway`. For details and rationale, see Groom et al. 2019. Improving Darwin Core for research and management of alien species. + +### 1.1 Status of the content of this document + +In Section 4, the values of the `Term IRI`, `Definition`, and `Controlled value` are normative. The value of `Usage` (if it exists for a given term) is normative. The value of `Has broader concept` is normative. The values of `Term Name` are non-normative, although one can expect that the namespace abbreviation prefix is one commonly used for the term namespace. `Label` and the values of all other properties (such as `Notes`) are non-normative. + +### 1.2 RFC 2119 key words +The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in [RFC 2119](https://tools.ietf.org/html/rfc2119). + +## 2 Use of Terms + +Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https://dwc.tdwg.org/rdf/#143-use-of-darwin-core-terms-in-rdf-normative), term IRIs MUST be used as values of `dwciri:pathway`. Controlled value strings MUST be used as values of `dwc:pathway`. + +## 3 Term index + + +[agriculture (including biofuel feedstocks)](#dwcpw_p009) | +[angling/fishing equipment](#dwcpw_p031) | +[aquaculture/mariculture](#dwcpw_p010) | +[biological control](#dwcpw_p001) | +[botanic garden/zoo/aquaria (excluding domestic aquaria)](#dwcpw_p011) | +[conservation or wildlife management](#dwcpw_p006) | +[container/bulk](#dwcpw_p032) | +[contaminant nursery material](#dwcpw_p021) | +[contaminant on animals (except parasites, organisms transported by host/vector)](#dwcpw_p024) | +[contaminant on plants (except parasites, species transported by host/vector)](#dwcpw_p026) | +[contaminated bait](#dwcpw_p022) | +[corridor](#dwcpw_p049) | +[corridor and dispersal](#dwcpw_p053) | +[erosion control](#dwcpw_p002) | +[escape from confinement](#dwcpw_p046) | +[farmed animals (including animals left under limited control)](#dwcpw_p013) | +[fishery in the wild](#dwcpw_p003) | +[food contaminant (including of live food)](#dwcpw_p023) | +[forestry (including reforestation)](#dwcpw_p014) | +[fur farms](#dwcpw_p015) | +[hitchhikers in or on airplane](#dwcpw_p033) | +[hitchhikers on ship/boat (excluding ballast water and hull fouling)](#dwcpw_p034) | +[horticulture](#dwcpw_p016) | +[hunting](#dwcpw_p004) | +[intentional](#dwcpw_p051) | +[interconnected waterways/basins/seas](#dwcpw_p042) | +[landscape improvement](#dwcpw_p005) | +[live food and live bait](#dwcpw_p019) | +[machinery/equipment](#dwcpw_p035) | +[natural dispersal across borders of invasive alien organisms](#dwcpw_p044) | +[organic packing material, in particular wood packaging](#dwcpw_p037) | +[ornamental purpose other than horticulture](#dwcpw_p017) | +[other escape from confinement](#dwcpw_p020) | +[other intentional release](#dwcpw_p008) | +[other means of transport](#dwcpw_p041) | +[parasites on animals (including organisms transported by host and vector)](#dwcpw_p025) | +[parasites on plants (including species transported by host and vector)](#dwcpw_p027) | +[pathway concept scheme](#dwcpw_p) | +[people and their luggage/equipment (in particular tourism)](#dwcpw_p036) | +[pet/aquarium/terrarium species (including live food for such species)](#dwcpw_p012) | +[release in nature](#dwcpw_p045) | +[released for use](#dwcpw_p007) | +[research and ex-situ breeding (in facilities)](#dwcpw_p018) | +[seed contaminant](#dwcpw_p028) | +[ship/boat ballast water](#dwcpw_p038) | +[ship/boat hull fouling](#dwcpw_p039) | +[timber trade](#dwcpw_p029) | +[transport-contaminant](#dwcpw_p047) | +[transport-stowaway](#dwcpw_p048) | +[transportation of habitat material (soil, vegetation, wood etc)](#dwcpw_p030) | +[tunnels and land bridges](#dwcpw_p043) | +[unaided](#dwcpw_p050) | +[unintentional](#dwcpw_p052) | +[vehicles (car, train, etc.)](#dwcpw_p040) + +## 4 Vocabulary + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p
Term IRIhttp://rs.tdwg.org/dwcpw/values/p
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p-2020-10-13
Labelpathway concept scheme
DefinitionA SKOS Concept Scheme to be used as a controlled vocabulary for the Darwin Core terms dwc:pathway and dwciri:pathway
Typehttp://www.w3.org/2004/02/skos/core#ConceptScheme
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p001
Term IRIhttp://rs.tdwg.org/dwcpw/values/p001
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p001-2020-10-13
Labelbiological control
DefinitionOrganisms occuring in an area because they were introduced for the purpose of biological control of another organism.
NotesReleased intentionally into the (semi)natural environment with the purpose of controlling the population(s) of one or more organisms. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valuebiologicalControl
Has broader conceptdwcpw:p045
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p002
Term IRIhttp://rs.tdwg.org/dwcpw/values/p002
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p002-2020-10-13
Labelerosion control
DefinitionOrganisms introduced for the purpose of erosion control/dune stabilization (windbreaks, hedges, etc).
NotesProbably only applicable only to plants. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valueerosionControl
Has broader conceptdwcpw:p045
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p003
Term IRIhttp://rs.tdwg.org/dwcpw/values/p003
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p003-2020-10-13
Labelfishery in the wild
DefinitionFish stocked into the wild either to create a fishery or for recreational angling.
NotesLargely applicable to freshwater and anadromous fish. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valuefisheryInTheWild
Has broader conceptdwcpw:p045
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p004
Term IRIhttp://rs.tdwg.org/dwcpw/values/p004
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p004-2020-10-13
Labelhunting
DefinitionAnimals stocked into the wild specifically with the intention that they would be hunted for sport.
NotesLargely applicable to terrestrial vertebrates. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valuehunting
Has broader conceptdwcpw:p045
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p005
Term IRIhttp://rs.tdwg.org/dwcpw/values/p005
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p005-2020-10-13
Labellandscape improvement
DefinitionLandscape/flora/fauna "improvement" in the wild.
Notes"Improvement" in this context is intended for introductions for the purpose of aesthetic enhancement of the landscape, as opposed to practical introductions for the purpose of erosion control, agriculture, forestry etc. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valuelandscapeImprovement
Has broader conceptdwcpw:p045
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p006
Term IRIhttp://rs.tdwg.org/dwcpw/values/p006
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p006-2020-10-13
Labelconservation or wildlife management
DefinitionOrganisms introduced for conservation purposes or wildlife management.
NotesThe organism was released with the intention of improving its conservation status of the species or the conservation status other species in the habitat. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valueconservationOrWildlifeManagement
Has broader conceptdwcpw:p045
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p007
Term IRIhttp://rs.tdwg.org/dwcpw/values/p007
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p007-2020-10-13
Labelreleased for use
DefinitionRelease in nature for use (other than above, e.g., fur, transport, medical use).
NotesThis term refers to organisms intentionally and directly released into the wild to serve a specific purpose. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valuereleasedForUse
Has broader conceptdwcpw:p045
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p008
Term IRIhttp://rs.tdwg.org/dwcpw/values/p008
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p008-2020-10-13
Labelother intentional release
DefinitionA catch-all for intentional releases not for human use that are not covered by other more specific terms.
NotesCompare with "other escape from confinement". See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valueotherIntentionalRelease
Has broader conceptdwcpw:p045
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p009
Term IRIhttp://rs.tdwg.org/dwcpw/values/p009
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p009-2020-10-13
Labelagriculture (including biofuel feedstocks)
DefinitionPlants grown with then intention of harvesting.
NotesSee also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valueagriculture
Has broader conceptdwcpw:p046
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p010
Term IRIhttp://rs.tdwg.org/dwcpw/values/p010
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p010-2020-10-13
Labelaquaculture/mariculture
DefinitionThe analog of agriculture and farmed animals, specifically related to aquatic organisms.
NotesSee also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valueaquacultureMariculture
Has broader conceptdwcpw:p046
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p011
Term IRIhttp://rs.tdwg.org/dwcpw/values/p011
Modified2020-10-28
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p011-2020-10-28
Labelbotanic garden/zoo/aquaria (excluding domestic aquaria)
DefinitionOrganisms in public collections of plants and/or animals.
NotesSee also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valuepublicGardenZooAquaria
Has broader conceptdwcpw:p046
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p012
Term IRIhttp://rs.tdwg.org/dwcpw/values/p012
Modified2020-10-28
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p012-2020-10-28
Labelpet/aquarium/terrarium species (including live food for such species)
DefinitionPrivately kept animals.
UsageAnimals kept for hunting, such as falcons and ferrets SHOULD be included here, not under the hunting term
NotesSee also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valuepet
Has broader conceptdwcpw:p046
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p013
Term IRIhttp://rs.tdwg.org/dwcpw/values/p013
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p013-2020-10-13
Labelfarmed animals (including animals left under limited control)
DefinitionAnimals cared for and bred with the specific intention of using their products, such as meat and milk.
NotesFarmed animals are generally kept in a defined area, such as a fields. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valuefarmedAnimals
Has broader conceptdwcpw:p046
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p014
Term IRIhttp://rs.tdwg.org/dwcpw/values/p014
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p014-2020-10-13
Labelforestry (including reforestation)
DefinitionTrees specifically introduced to provide timber and other forestry products.
NotesSee also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valueforestry
Has broader conceptdwcpw:p046
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p015
Term IRIhttp://rs.tdwg.org/dwcpw/values/p015
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p015-2020-10-13
Labelfur farms
DefinitionOrganisms escaped from a fur farms, including unauthorised releases.
NotesProbably only applicable to vertebrates raised for their pelts and skins. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valuefur
Has broader conceptdwcpw:p046
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p016
Term IRIhttp://rs.tdwg.org/dwcpw/values/p016
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p016-2020-10-13
Labelhorticulture
DefinitionPlants distributed by the ornamental and decorative plants industry.
UsageThis term excludes plants and other organisms from aquaria and terrariums from the aquarium and terrarium trade which SHOULD be classified under the pet/aquarium/terrarium term.
NotesSee also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valuehorticulture
Has broader conceptdwcpw:p046
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p017
Term IRIhttp://rs.tdwg.org/dwcpw/values/p017
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p017-2020-10-13
Labelornamental purpose other than horticulture
DefinitionOrnamental plants introduced through pathways other than the horticultural industry.
NotesSee also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valueornamentalNonHorticulture
Has broader conceptdwcpw:p046
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p018
Term IRIhttp://rs.tdwg.org/dwcpw/values/p018
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p018-2020-10-13
Labelresearch and ex-situ breeding (in facilities)
DefinitionPlants and animals introduced for the purpose of breeding, scientific and medical research, including science education.
NotesSee also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valueresearch
Has broader conceptdwcpw:p046
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p019
Term IRIhttp://rs.tdwg.org/dwcpw/values/p019
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p019-2020-10-13
Labellive food and live bait
DefinitionLive food imported for human consumption, such as shellfish and snails, and for live bait.
NotesLive food, such as mealworms, for the organisms kept as pets should be classified under the pet term. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valueliveFoodLiveBait
Has broader conceptdwcpw:p046
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p020
Term IRIhttp://rs.tdwg.org/dwcpw/values/p020
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p020-2020-10-13
Labelother escape from confinement
DefinitionOrganisms brought into an area with the intention of keeping them in captivity permanently, but that have subsequently escaped.
NotesSee also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valueotherEscape
Has broader conceptdwcpw:p046
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p021
Term IRIhttp://rs.tdwg.org/dwcpw/values/p021
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p021-2020-10-13
Labelcontaminant nursery material
DefinitionOrganisms transported into an area together with plant material.
NotesThese may be other plants, diseases, fungi and animals. They may be attached to the plant or within the soil. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valuecontaminantNursery
Has broader conceptdwcpw:p047
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p022
Term IRIhttp://rs.tdwg.org/dwcpw/values/p022
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p022-2020-10-13
Labelcontaminated bait
DefinitionContaminants, pathogens and parasites transported with live, frozen or preserved bait used to catch fish or other organisms.
NotesTypical examples include crustaceans, cephalopods and molluscs. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valuecontaminateBait
Has broader conceptdwcpw:p047
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p023
Term IRIhttp://rs.tdwg.org/dwcpw/values/p023
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p023-2020-10-13
Labelfood contaminant (including of live food)
DefinitionFoods for human consumption, whether they are transported life or dead.
NotesThis term includes unintentional introduction of contaminants such as diseases on those foods and in the case of plants, should include seeds. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valuefoodContaminant
Has broader conceptdwcpw:p047
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p024
Term IRIhttp://rs.tdwg.org/dwcpw/values/p024
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p024-2020-10-13
Labelcontaminant on animals (except parasites, organisms transported by host/vector)
DefinitionContaminants carried either on or in the body of transported animals.
UsageThis term excludes parasites and pathogens, which SHOULD be classified under their own specific term ("parasites on animals").
NotesTransported animals carry other organisms in their coat, on thier gut and in soil on their hooves and feet. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valuecontaminantOnAnimals
Has broader conceptdwcpw:p047
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p025
Term IRIhttp://rs.tdwg.org/dwcpw/values/p025
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p025-2020-10-13
Labelparasites on animals (including organisms transported by host and vector)
DefinitionParasitic and pathogenic organisms transported with their host or vector animal.
NotesSee also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valueparasitesOnAnimals
Has broader conceptdwcpw:p047
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p026
Term IRIhttp://rs.tdwg.org/dwcpw/values/p026
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p026-2020-10-13
Labelcontaminant on plants (except parasites, species transported by host/vector)
DefinitionOrganisms transported on plant material.
UsageThis term excludes organisms carried on contaminant nursery material, seed contaminants, and the timber trade, which SHOULD be classified under their own pathway terms.
NotesSee also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valuecontaminantOnPlants
Has broader conceptdwcpw:p047
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p027
Term IRIhttp://rs.tdwg.org/dwcpw/values/p027
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p027-2020-10-13
Labelparasites on plants (including species transported by host and vector)
DefinitionParasitic and pathogenic organisms transported with their host or vector plant.
NotesSee also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valueparasitesOnPlants
Has broader conceptdwcpw:p047
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p028
Term IRIhttp://rs.tdwg.org/dwcpw/values/p028
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p028-2020-10-13
Labelseed contaminant
DefinitionOrganisms contaminating transported seeds.
NotesThese may be parasites or pathogens of the seeds, seeds of other species not intended to be transported, or species that eat seeds. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valueseedContaminant
Has broader conceptdwcpw:p047
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p029
Term IRIhttp://rs.tdwg.org/dwcpw/values/p029
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p029-2020-10-13
Labeltimber trade
DefinitionContaminants on unprocessed timber, processed wood and wood derived products.
UsageThis term excludes packing material and habitat material made from wood that SHOULD be included under their own terms ("packing material" and "transportation of habitat material").
NotesExamples include wooden furniture, saw dust and fire wood. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valuetimberTrade
Has broader conceptdwcpw:p047
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p030
Term IRIhttp://rs.tdwg.org/dwcpw/values/p030
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p030-2020-10-13
Labeltransportation of habitat material (soil, vegetation, wood etc)
DefinitionOrganisms transported with their habitat material to a new location.
NotesExamples include materials such as soil, vegetation, straw and wood chips. Unless these materials are sterilised the organisms can be transported with their habitat to a new location. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valuetransportationHabitatMaterial
Has broader conceptdwcpw:p047
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p031
Term IRIhttp://rs.tdwg.org/dwcpw/values/p031
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p031-2020-10-13
Labelangling/fishing equipment
DefinitionAquatic organisms moved between sites on equipment of recreational anglers and professional fishermen.
NotesSee also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valuefishingEquipment
Has broader conceptdwcpw:p048
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p032
Term IRIhttp://rs.tdwg.org/dwcpw/values/p032
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p032-2020-10-13
Labelcontainer/bulk
DefinitionStowaways transported in or on the cargo containers or bulk cargo units themselves.
NotesThe difference between this category and others, such as "hitchhikers on ship/boat", is that the organism embarked and disembarked from the container itself rather than the ship. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valuecontainerBulk
Has broader conceptdwcpw:p048
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p033
Term IRIhttp://rs.tdwg.org/dwcpw/values/p033
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p033-2020-10-13
Labelhitchhikers in or on airplane
DefinitionOrganisms that enter airplanes or other aircraft, such as helicopters, and are transported by them to another location.
NotesThis term does not apply to organisms that embarked onto containers that were subsequently loaded on to an aircraft. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valuehitchhikersAirplane
Has broader conceptdwcpw:p048
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p034
Term IRIhttp://rs.tdwg.org/dwcpw/values/p034
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p034-2020-10-13
Labelhitchhikers on ship/boat (excluding ballast water and hull fouling)
DefinitionOrganisms that enter directly onto boats or ships and are transported by them to another location.
NotesThis term does not apply to organisms that embarked containers that are subsequently loaded on the ship, nor to contaminents of products loaded on the ship. The term is intended for organisms that directly interact with the boat or ship. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valuehitchhikersShip
Has broader conceptdwcpw:p048
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p035
Term IRIhttp://rs.tdwg.org/dwcpw/values/p035
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p035-2020-10-13
Labelmachinery/equipment
DefinitionOrganisms carried on the surfaces of or within heavy machinery and equipment.
NotesThis includes military equipment, farm machinery and manufacturing equipment. This term does not include products carried by vehicles. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valuemachineryEquipment
Has broader conceptdwcpw:p048
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p036
Term IRIhttp://rs.tdwg.org/dwcpw/values/p036
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p036-2020-10-13
Labelpeople and their luggage/equipment (in particular tourism)
DefinitionOrganisms transported on people themselves and/or their personal luggage.
UsageThis term excludes recreational angling equipment, which SHOULD be classified under its own term ("angling/fishing equipment").
NotesExamples include organisms transported by tourists. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valuepeople
Has broader conceptdwcpw:p048
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p037
Term IRIhttp://rs.tdwg.org/dwcpw/values/p037
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p037-2020-10-13
Labelorganic packing material, in particular wood packaging
DefinitionOrganic material, particularly unprocessed plant material that is used to pack transported goods.
NotesExamples include woodern pallets, boxes, bags and baskets. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valuepackingMaterial
Has broader conceptdwcpw:p048
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p038
Term IRIhttp://rs.tdwg.org/dwcpw/values/p038
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p038-2020-10-13
Labelship/boat ballast water
DefinitionOrganisms transported within the water pumped into boats and ships to provide ballast.
NotesSee also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valueballastWater
Has broader conceptdwcpw:p048
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p039
Term IRIhttp://rs.tdwg.org/dwcpw/values/p039
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p039-2020-10-13
Labelship/boat hull fouling
DefinitionOrganisms that attach themselves to the subsurface hull of boats and ships.
NotesSee also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valuehullFouling
Has broader conceptdwcpw:p048
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p040
Term IRIhttp://rs.tdwg.org/dwcpw/values/p040
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p040-2020-10-13
Labelvehicles (car, train, etc.)
DefinitionOther vehicle hitchhikers that have been unintentionally dispersed, but are not covered by other terms.
NotesThese organisms may be carried on or within the vehicle. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valuevehicles
Has broader conceptdwcpw:p048
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p041
Term IRIhttp://rs.tdwg.org/dwcpw/values/p041
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p041-2020-10-13
Labelother means of transport
DefinitionA catchall term for any transport related dispersal that is not covered in other terms.
NotesExamples include the movement of offshore installations, such as drilling platforms, but also pipeline and cable transport. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valueotherTransport
Has broader conceptdwcpw:p048
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p042
Term IRIhttp://rs.tdwg.org/dwcpw/values/p042
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p042-2020-10-13
Labelinterconnected waterways/basins/seas
DefinitionOrganisms that dispersed through artificial waterways created to connect previosuly unconnected water bodies.
UsageOrganisms transported along these corridors in ballast, on as hull fouling SHOULD be categorised under the "ship/boat ballast water" or "ship/boat hull fouling" terms.
NotesSee also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valuewaterwaysBasinsSeas
Has broader conceptdwcpw:p049
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p043
Term IRIhttp://rs.tdwg.org/dwcpw/values/p043
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p043-2020-10-13
Labeltunnels and land bridges
DefinitionUnintentional dispersal by organisms using artificial tunnels, bridges, roads and railways.
NotesSee also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valuetunnelsBridges
Has broader conceptdwcpw:p049
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p044
Term IRIhttp://rs.tdwg.org/dwcpw/values/p044
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p044-2020-10-13
Labelnatural dispersal across borders of invasive alien organisms
DefinitionDispersal of organisms to new regions by natural dispersal from regions in which they are alien.
NotesThese are alien species that have previously been introduced through one of these pathways: release in nature, excape from confinement, transport-contaminant, transport-stowaway, or corridor. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valuenaturalDispersal
Has broader conceptdwcpw:p050
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p045
Term IRIhttp://rs.tdwg.org/dwcpw/values/p045
Modified2020-10-28
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p045-2020-10-28
Labelrelease in nature
DefinitionOrganisms transported and released by humans in a (semi)natural environment with the intention that they should live there without further human aid.
NotesSee also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valuereleaseInNature
Has broader conceptdwcpw:p051
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p046
Term IRIhttp://rs.tdwg.org/dwcpw/values/p046
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p046-2020-10-13
Labelescape from confinement
DefinitionOrganisms intentionally transported by humans and intended to be kept in captivity or cultivation, but having inadvertently escaped from human control.
NotesSee also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valueescapeFromConfinement
Has broader conceptdwcpw:p051
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p047
Term IRIhttp://rs.tdwg.org/dwcpw/values/p047
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p047-2020-10-13
Labeltransport-contaminant
DefinitionAn umbrella term for all species transported as contaninents in other products.
NotesAn alien species is a contaminant if it had a trophic or biotic relationship to organisms or items being transported and was to some extent dependent on them for survival. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valuetransportContaminant
Has broader conceptdwcpw:p052
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p048
Term IRIhttp://rs.tdwg.org/dwcpw/values/p048
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p048-2020-10-13
Labeltransport-stowaway
DefinitionAn umbrella term for all species transported by riding on forms of transport where the organism has a direct interation with the transport and is not merely carried as part of, or a contaminent of cargo.
NotesA stowaway has no trophic or biotic relationship to the organisms or items being transported. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valuetransportStowaway
Has broader conceptdwcpw:p052
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p049
Term IRIhttp://rs.tdwg.org/dwcpw/values/p049
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p049-2020-10-13
Labelcorridor
DefinitionInfrastructure, such as bridges, tunnels and canals have removed natural barriers to dispersal and allowed a species to move into a novel location.
NotesSee also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valuecorridor
Has broader conceptdwcpw:p053
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p050
Term IRIhttp://rs.tdwg.org/dwcpw/values/p050
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p050-2020-10-13
Labelunaided
DefinitionOrganisms that spread by natural dispersal, without action or assistance by humans, from regions in which they are also alien.
NotesThe term refers to secondary dispersal from an area where the taxon is also alien. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valueunaided
Has broader conceptdwcpw:p053
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p051
Term IRIhttp://rs.tdwg.org/dwcpw/values/p051
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p051-2020-10-13
Labelintentional
DefinitionOrganisms were brought to new area with the specific intention of keeping them alive in the new region, regardless of whether they were intended to be cultivated or released into the wild.
NotesSee also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valueintentional
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p052
Term IRIhttp://rs.tdwg.org/dwcpw/values/p052
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p052-2020-10-13
Labelunintentional
DefinitionThe organism was unintentionally brought to a new region.
NotesSee also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valueunintentional
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name dwcpw:p053
Term IRIhttp://rs.tdwg.org/dwcpw/values/p053
Modified2020-10-13
Term version IRIhttp://rs.tdwg.org/dwcpw/values/version/p053-2020-10-13
Labelcorridor and dispersal
DefinitionOrganisms dispersed naturally, even if that dispersal was aided by changes in the landscape created by humans.
NotesSee also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129
Controlled valuecorridorAndDispersal
TypeConcept
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_22
+ + diff --git a/docs/pw/index.md b/docs/pw/index.md index f44db4f..dceed74 100644 --- a/docs/pw/index.md +++ b/docs/pw/index.md @@ -10,7 +10,7 @@ Preferred namespace abbreviation : dwcpw: Date version issued -: 2020-10-13 +: 2021-09-01 Date created : 2020-10-13 @@ -19,11 +19,14 @@ Part of TDWG Standard : This document version -: +: Latest version of document : +Previous version +: + Abstract : The Darwin Core term `pathway` provides information about the process by which an Organism came to be in a given place at a given time. The Pathway Controlled Vocabulary provides terms that should be used as values for `dwc:pathway` and `dwciri:pathway`. @@ -34,7 +37,7 @@ Creator : TDWG Darwin Core Maintenance Group Bibliographic citation -: Darwin Core Maintenance Group. 2020. Pathway Controlled Vocabulary List of Terms. Biodiversity Information Standards (TDWG). +: Darwin Core Maintenance Group. 2021. Pathway Controlled Vocabulary List of Terms. Biodiversity Information Standards (TDWG). ## 1 Introduction @@ -162,11 +165,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p001-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p001-2021-09-01 Label @@ -178,7 +181,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Notes - Released intentionally into the (semi)natural environment with the purpose of controlling the population(s) of one or more organisms. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + Released intentionally into the (semi)natural environment with the purpose of controlling the population(s) of one or more organisms. See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -212,11 +215,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p002-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p002-2021-09-01 Label @@ -224,11 +227,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Definition - Organisms introduced for the purpose of erosion control/dune stabilization (windbreaks, hedges, etc). + Organisms introduced for the purpose of erosion control/dune stabilization (windbreaks, hedges, etc.). Notes - Probably only applicable only to plants. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + Probably only applicable to plants. See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -262,11 +265,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p003-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p003-2021-09-01 Label @@ -278,7 +281,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Notes - Largely applicable to freshwater and anadromous fish. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + Largely applicable to freshwater and anadromous fish. See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -312,11 +315,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p004-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p004-2021-09-01 Label @@ -328,7 +331,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Notes - Largely applicable to terrestrial vertebrates. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + Largely applicable to terrestrial vertebrates. See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -362,11 +365,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p005-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p005-2021-09-01 Label @@ -378,7 +381,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Notes - "Improvement" in this context is intended for introductions for the purpose of aesthetic enhancement of the landscape, as opposed to practical introductions for the purpose of erosion control, agriculture, forestry etc. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + "Improvement" in this context is intended for introductions for the purpose of aesthetic enhancement of the landscape, as opposed to practical introductions for the purpose of erosion control, agriculture, forestry etc. See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -412,11 +415,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p006-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p006-2021-09-01 Label @@ -428,7 +431,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Notes - The organism was released with the intention of improving its conservation status of the species or the conservation status other species in the habitat. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + The organism was released with the intention of improving the conservation status of the species or the conservation status other species in the habitat. See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -462,11 +465,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p007-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p007-2021-09-01 Label @@ -478,7 +481,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Notes - This term refers to organisms intentionally and directly released into the wild to serve a specific purpose. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + This term refers to organisms intentionally and directly released into the wild to serve a specific purpose. See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -512,11 +515,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p008-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p008-2021-09-01 Label @@ -524,11 +527,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Definition - A catch-all for intentional releases not for human use that are not covered by other more specific terms. + A catch-all term for intentional releases not for human use that are not covered by other more specific terms. Notes - Compare with "other escape from confinement". See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + Compare with "other escape from confinement". See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -562,11 +565,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p009-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p009-2021-09-01 Label @@ -574,11 +577,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Definition - Plants grown with then intention of harvesting. + Plants grown with the intention of harvesting. Notes - See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -612,11 +615,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p010-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p010-2021-09-01 Label @@ -628,7 +631,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Notes - See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -662,11 +665,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-28 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p011-2020-10-28 + http://rs.tdwg.org/dwcpw/values/version/p011-2021-09-01 Label @@ -678,7 +681,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Notes - See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -712,11 +715,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-28 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p012-2020-10-28 + http://rs.tdwg.org/dwcpw/values/version/p012-2021-09-01 Label @@ -728,11 +731,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Usage - Animals kept for hunting, such as falcons and ferrets SHOULD be included here, not under the hunting term + Animals kept for hunting, such as falcons and ferrets, SHOULD be included here, not under the hunting term. Notes - See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -766,11 +769,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p013-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p013-2021-09-01 Label @@ -782,7 +785,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Notes - Farmed animals are generally kept in a defined area, such as a fields. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + Farmed animals are generally kept in a defined area, such as a fields. See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -816,11 +819,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p014-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p014-2021-09-01 Label @@ -832,7 +835,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Notes - See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -866,11 +869,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p015-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p015-2021-09-01 Label @@ -878,11 +881,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Definition - Organisms escaped from a fur farms, including unauthorised releases. + Organisms escaped from a fur farm, including unauthorised releases. Notes - Probably only applicable to vertebrates raised for their pelts and skins. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + Probably only applicable to vertebrates raised for their pelts and skins. See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -916,11 +919,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p016-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p016-2021-09-01 Label @@ -928,15 +931,15 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Definition - Plants distributed by the ornamental and decorative plants industry. + Plants distributed by the ornamental and decorative plants industry. Usage - This term excludes plants and other organisms from aquaria and terrariums from the aquarium and terrarium trade which SHOULD be classified under the pet/aquarium/terrarium term. + This term excludes plants and other organisms from aquaria and terrariums, which SHOULD be classified under the pet/aquarium/terrarium term. Notes - See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -970,11 +973,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p017-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p017-2021-09-01 Label @@ -986,7 +989,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Notes - See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -1020,11 +1023,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p018-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p018-2021-09-01 Label @@ -1032,11 +1035,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Definition - Plants and animals introduced for the purpose of breeding, scientific and medical research, including science education. + Plants and animals introduced for the purpose of breeding or scientific and medical research, including science education. Notes - See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -1070,11 +1073,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p019-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p019-2021-09-01 Label @@ -1082,11 +1085,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Definition - Live food imported for human consumption, such as shellfish and snails, and for live bait. + Live food imported for human consumption or live bait, such as shellfish and snails. Notes - Live food, such as mealworms, for the organisms kept as pets should be classified under the pet term. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + Live food, such as mealworms, for the organisms kept as pets should be classified under the pet term. See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -1120,11 +1123,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p020-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p020-2021-09-01 Label @@ -1136,7 +1139,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Notes - See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -1170,11 +1173,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p021-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p021-2021-09-01 Label @@ -1186,7 +1189,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Notes - These may be other plants, diseases, fungi and animals. They may be attached to the plant or within the soil. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + These may be other plants, diseases, fungi and animals. They may be attached to the plant or within the soil. See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -1220,11 +1223,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p022-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p022-2021-09-01 Label @@ -1236,7 +1239,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Notes - Typical examples include crustaceans, cephalopods and molluscs. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + Typical examples include crustaceans, cephalopods and molluscs. See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -1270,11 +1273,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p023-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p023-2021-09-01 Label @@ -1282,11 +1285,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Definition - Foods for human consumption, whether they are transported life or dead. + Foods for human consumption, whether they are transported live or dead. Notes - This term includes unintentional introduction of contaminants such as diseases on those foods and in the case of plants, should include seeds. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + This term includes unintentional introduction of contaminants such as diseases on those foods and in the case of plants, should include seeds. See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -1320,11 +1323,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p024-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p024-2021-09-01 Label @@ -1336,11 +1339,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Usage - This term excludes parasites and pathogens, which SHOULD be classified under their own specific term ("parasites on animals"). + This term excludes parasites and pathogens, which SHOULD be classified under their own specific term ("parasites on animals"). Notes - Transported animals carry other organisms in their coat, on thier gut and in soil on their hooves and feet. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + Transported animals carry other organisms in their coats, in their guts and in soil on their hooves and feet. See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -1374,11 +1377,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p025-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p025-2021-09-01 Label @@ -1390,7 +1393,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Notes - See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -1424,11 +1427,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p026-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p026-2021-09-01 Label @@ -1440,11 +1443,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Usage - This term excludes organisms carried on contaminant nursery material, seed contaminants, and the timber trade, which SHOULD be classified under their own pathway terms. + This term excludes organisms carried on contaminant nursery material, seed contaminants, and the material from the timber trade, which SHOULD be classified under their own pathway terms. Notes - See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -1478,11 +1481,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p027-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p027-2021-09-01 Label @@ -1494,7 +1497,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Notes - See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -1528,11 +1531,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p028-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p028-2021-09-01 Label @@ -1544,7 +1547,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Notes - These may be parasites or pathogens of the seeds, seeds of other species not intended to be transported, or species that eat seeds. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + These may be parasites or pathogens of seeds or species that eat seeds, whether intended to be transported or not. See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -1578,11 +1581,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p029-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p029-2021-09-01 Label @@ -1590,15 +1593,15 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Definition - Contaminants on unprocessed timber, processed wood and wood derived products. + Contaminants on unprocessed timber, processed wood and wood-derived products. Usage - This term excludes packing material and habitat material made from wood that SHOULD be included under their own terms ("packing material" and "transportation of habitat material"). + This term excludes packing material and habitat material made from wood, which SHOULD be included under their own terms ("packing material" and "transportation of habitat material"). Notes - Examples include wooden furniture, saw dust and fire wood. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + Examples include wooden furniture, saw dust and fire wood. See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -1632,11 +1635,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p030-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p030-2021-09-01 Label @@ -1648,7 +1651,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Notes - Examples include materials such as soil, vegetation, straw and wood chips. Unless these materials are sterilised the organisms can be transported with their habitat to a new location. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + Examples include materials such as soil, vegetation, straw and wood chips. Unless these materials are sterilised the organisms can be transported with their habitat to a new location. See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -1682,11 +1685,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p031-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p031-2021-09-01 Label @@ -1698,7 +1701,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Notes - See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -1732,11 +1735,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p032-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p032-2021-09-01 Label @@ -1744,11 +1747,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Definition - Stowaways transported in or on the cargo containers or bulk cargo units themselves. + Stowaways transported in or on cargo containers or bulk cargo units. Notes - The difference between this category and others, such as "hitchhikers on ship/boat", is that the organism embarked and disembarked from the container itself rather than the ship. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + The difference between this category and others, such as "hitchhikers on ship/boat", is that the organism embarked and disembarked from the container rather than the ship. See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -1782,11 +1785,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p033-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p033-2021-09-01 Label @@ -1798,7 +1801,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Notes - This term does not apply to organisms that embarked onto containers that were subsequently loaded on to an aircraft. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + This term does not apply to organisms that embarked in containers that were subsequently loaded onto an aircraft. See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -1832,11 +1835,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p034-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p034-2021-09-01 Label @@ -1848,7 +1851,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Notes - This term does not apply to organisms that embarked containers that are subsequently loaded on the ship, nor to contaminents of products loaded on the ship. The term is intended for organisms that directly interact with the boat or ship. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + This term does not apply to organisms that embarked in containers that are subsequently loaded onto the ship, nor to contaminants of products loaded onto the ship. The term is intended for organisms that directly interact with the boat or ship. See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -1882,11 +1885,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p035-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p035-2021-09-01 Label @@ -1898,7 +1901,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Notes - This includes military equipment, farm machinery and manufacturing equipment. This term does not include products carried by vehicles. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + This includes military equipment, farm machinery and manufacturing equipment. This term does not include products carried by vehicles. See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -1932,11 +1935,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p036-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p036-2021-09-01 Label @@ -1944,15 +1947,15 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Definition - Organisms transported on people themselves and/or their personal luggage. + Organisms transported on people and/or their personal luggage. Usage - This term excludes recreational angling equipment, which SHOULD be classified under its own term ("angling/fishing equipment"). + This term excludes recreational angling equipment, which SHOULD be classified under its own term ("angling/fishing equipment"). Notes - Examples include organisms transported by tourists. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + Examples include organisms transported by tourists. See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -1986,11 +1989,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p037-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p037-2021-09-01 Label @@ -2002,7 +2005,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Notes - Examples include woodern pallets, boxes, bags and baskets. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + Examples include woodern pallets, boxes, bags and baskets. See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -2036,11 +2039,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p038-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p038-2021-09-01 Label @@ -2052,7 +2055,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Notes - See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -2086,11 +2089,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p039-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p039-2021-09-01 Label @@ -2098,11 +2101,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Definition - Organisms that attach themselves to the subsurface hull of boats and ships. + Organisms that attach themselves to the subsurface hull of boats and ships. Notes - See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -2136,11 +2139,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p040-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p040-2021-09-01 Label @@ -2152,7 +2155,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Notes - These organisms may be carried on or within the vehicle. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + These organisms may be carried on or within the vehicle. See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -2186,11 +2189,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p041-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p041-2021-09-01 Label @@ -2198,11 +2201,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Definition - A catchall term for any transport related dispersal that is not covered in other terms. + A catch-all term for any transport related dispersal that is not covered in other terms. Notes - Examples include the movement of offshore installations, such as drilling platforms, but also pipeline and cable transport. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + Examples include fouling from offshore oil and gas platforms, offshore renewable energy sites (such as wind farms, pipelines, cable transport, etc. See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -2236,11 +2239,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p042-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p042-2021-09-01 Label @@ -2248,15 +2251,15 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Definition - Organisms that dispersed through artificial waterways created to connect previosuly unconnected water bodies. + Organisms that dispersed through artificial waterways created to connect previosuly unconnected water bodies. Usage - Organisms transported along these corridors in ballast, on as hull fouling SHOULD be categorised under the "ship/boat ballast water" or "ship/boat hull fouling" terms. + Organisms transported along these corridors in ballast or as hull fouling SHOULD be categorised under the "ship/boat ballast water" or "ship/boat hull fouling" terms. Notes - See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -2290,11 +2293,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p043-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p043-2021-09-01 Label @@ -2306,7 +2309,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Notes - See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -2340,11 +2343,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p044-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p044-2021-09-01 Label @@ -2356,7 +2359,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Notes - These are alien species that have previously been introduced through one of these pathways: release in nature, excape from confinement, transport-contaminant, transport-stowaway, or corridor. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + These are alien species that have previously been introduced through one of these pathways: release in nature, excape from confinement, transport-contaminant, transport-stowaway, or corridor. See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -2390,11 +2393,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-28 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p045-2020-10-28 + http://rs.tdwg.org/dwcpw/values/version/p045-2021-09-01 Label @@ -2406,7 +2409,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Notes - See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -2440,11 +2443,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p046-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p046-2021-09-01 Label @@ -2456,7 +2459,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Notes - See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -2490,11 +2493,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p047-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p047-2021-09-01 Label @@ -2506,7 +2509,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Notes - An alien species is a contaminant if it had a trophic or biotic relationship to organisms or items being transported and was to some extent dependent on them for survival. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + An alien species is a contaminant if it had a trophic or biotic relationship to organisms or items being transported and was to some extent dependent on them for survival. See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -2540,11 +2543,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p048-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p048-2021-09-01 Label @@ -2552,11 +2555,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Definition - An umbrella term for all species transported by riding on forms of transport where the organism has a direct interation with the transport and is not merely carried as part of, or a contaminent of cargo. + An umbrella term for all species transported by riding on forms of transport where the organism has a direct interaction with the transport and is not merely carried as part of, or a contaminant of cargo. Notes - A stowaway has no trophic or biotic relationship to the organisms or items being transported. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + A stowaway has no trophic or biotic relationship to the organisms or items being transported. See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -2590,11 +2593,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p049-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p049-2021-09-01 Label @@ -2606,7 +2609,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Notes - See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -2640,11 +2643,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p050-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p050-2021-09-01 Label @@ -2656,7 +2659,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Notes - The term refers to secondary dispersal from an area where the taxon is also alien. See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + The term refers to secondary dispersal from an area where the taxon is also alien. See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -2690,11 +2693,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p051-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p051-2021-09-01 Label @@ -2706,7 +2709,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Notes - See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -2736,11 +2739,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p052-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p052-2021-09-01 Label @@ -2752,7 +2755,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Notes - See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value @@ -2782,11 +2785,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Modified - 2020-10-13 + 2021-09-01 Term version IRI - http://rs.tdwg.org/dwcpw/values/version/p053-2020-10-13 + http://rs.tdwg.org/dwcpw/values/version/p053-2021-09-01 Label @@ -2798,7 +2801,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](https:// Notes - See also Harrower et al. 2017 http://nora.nerc.ac.uk/id/eprint/519129 + See also Harrower et al. 2017. http://nora.nerc.ac.uk/id/eprint/519129 Controlled value