From 5d2bb7ad95b782ece7eed41062b817465c8d9278 Mon Sep 17 00:00:00 2001 From: Steve Baskauf Date: Tue, 19 Aug 2025 11:10:18 -0400 Subject: [PATCH 1/9] Modify List of Terms build script to dynamically insert document metadata --- build/build-termlist.py | 114 ++++++++++++++++++++++++++++++++++++++- build/termlist-header.md | 30 +++++------ 2 files changed, 128 insertions(+), 16 deletions(-) diff --git a/build/build-termlist.py b/build/build-termlist.py index 6656b49..467b123 100644 --- a/build/build-termlist.py +++ b/build/build-termlist.py @@ -1,5 +1,6 @@ # Script to build Markdown pages that provide term metadata for complex vocabularies # Steve Baskauf 2020-06-28 CC0 +# Modified to populate document metadata dynamically by Steve Baskauf 2025-08-19 # 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 import re @@ -7,13 +8,31 @@ import csv # library to read/write/parse CSV files import json # library to convert JSON to Python data structures import pandas as pd +import yaml +import sys + +# ----------------- +# Command line arguments +# ----------------- + +arg_vals = sys.argv[1:] +opts = [opt for opt in arg_vals if opt.startswith('-')] +args = [arg for arg in arg_vals if not arg.startswith('-')] + +# Branch of rs.tdwg.org repo to be used +# "master" for production, something else for development +# Example: First part of branch URL is "https://raw.githubusercontent.com/tdwg/rs.tdwg.org/chrono-dev/", branch is "chrono-dev". +if '--branch' in opts: + github_branch = args[opts.index('--branch')] +else: + github_branch = 'master' # ----------------- # Configuration section # ----------------- # This is the base URL for raw files from the branch of the repo that has been pushed to GitHub -githubBaseUri = 'https://raw.githubusercontent.com/tdwg/rs.tdwg.org/master/' +githubBaseUri = 'https://raw.githubusercontent.com/tdwg/rs.tdwg.org/' + github_branch + '/' headerFileName = 'termlist-header.md' footerFileName = 'termlist-footer.md' @@ -22,6 +41,10 @@ # This is a Python list of the database names of the term lists to be included in the document. termLists = ['chronometricage', 'chronoiri'] +# If this list of terms is for terms in a single namespace, set the value of has_namespace to True. The value +# of has_namespace should be False for a list of terms that contains multiple namespaces. +has_namespace = False + # 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 = 1 # 1 is simple vocabulary, 2 is simple controlled vocabulary, 3 is c.v. with broader hierarchy @@ -32,11 +55,52 @@ # 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. +# ** Note 2025-08-19: I don't understand why the first two categories are there. Is it just a hack to get some of the +# terms to display at the end of the first section? display_order = [ 'http://rs.tdwg.org/chrono/terms/ChronometricAge', 'http://tdwg.org/chrono/terms/ChronometricAge', 'http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI'] display_label = ['Chronometric Age', 'Chronometric Age', 'IRI-value terms'] display_comments = ['','',''] display_id = ['chronometric_age', 'chronometric_age', 'use_with_iri'] +# --------------- +# Load header data +# --------------- + +config_file_path = 'process/document_metadata_processing/dwc_doc_chrono/' +contributors_yaml_file = 'authors_configuration.yaml' +document_configuration_yaml_file = 'document_configuration.yaml' + +if has_namespace: + # Load the data about the namespace from term lists metadata at rs.tdwg.org + term_lists_df = pd.read_csv(githubBaseUri + 'term-lists/term-lists.csv') + # Find the row in the term-lists.csv file that corresponds to the database. + term_list_row = term_lists_df.loc[term_lists_df['database'] == termLists[0]] + # Extract the namespace IRI and preferred namespace prefix from the row. + namespace_uri = term_list_row['vann_preferredNamespaceUri'].values[0] + pref_namespace_prefix = term_list_row['vann_preferredNamespacePrefix'].values[0] + + ''' + + metadata_config_text = requests.get(githubBaseUri + config_file_path + 'config.yaml').text + metadata_config = yaml.load(metadata_config_text, Loader=yaml.FullLoader) + namespace_uri = metadata_config['namespaces'][0]['namespace_uri'] + pref_namespace_prefix = metadata_config['namespaces'][0]['pref_namespace_prefix'] + ''' + +# Load the contributors YAML file from its GitHub URL +contributors_yaml_url = githubBaseUri + config_file_path + contributors_yaml_file +contributors_yaml = requests.get(contributors_yaml_url).text +if contributors_yaml == '404: Not Found': + print('Contributors YAML file not found. Check the URL.') + print(contributors_yaml_url) + exit() +contributors_yaml = yaml.load(contributors_yaml, Loader=yaml.FullLoader) + +# Load the document configuration YAML file from its GitHub URL +document_configuration_yaml_url = githubBaseUri + config_file_path + document_configuration_yaml_file +document_configuration_yaml = requests.get(document_configuration_yaml_url).text +document_configuration_yaml = yaml.load(document_configuration_yaml, Loader=yaml.FullLoader) + # --------------- # Function definitions # --------------- @@ -394,6 +458,54 @@ def convert_examples(text_with_list_of_examples: str) -> str: header = headerObject.read() headerObject.close() +# Build the Markdown for the contributors list +contributors = '' +for contributor in contributors_yaml: + contributors += '[' + contributor['contributor_literal'] + '](' + contributor['contributor_iri'] + ') ' + contributors += '([' + contributor['affiliation'] + '](' + contributor['affiliation_uri'] + ')), ' +contributors = contributors[:-2] # Remove the last comma and space + +# Substitute values of ratification_date and contributors into the header template +header = header.replace('{document_title}', document_configuration_yaml['documentTitle']) +header = header.replace('{ratification_date}', document_configuration_yaml['doc_modified']) +header = header.replace('{created_date}', document_configuration_yaml['doc_created']) +header = header.replace('{contributors}', contributors) +header = header.replace('{standard_iri}', document_configuration_yaml['dcterms_isPartOf']) +header = header.replace('{current_iri}', document_configuration_yaml['current_iri']) +header = header.replace('{abstract}', document_configuration_yaml['abstract']) +header = header.replace('{creator}', document_configuration_yaml['creator']) +header = header.replace('{publisher}', document_configuration_yaml['publisher']) +year = document_configuration_yaml['doc_modified'].split('-')[0] +header = header.replace('{year}', year) +if has_namespace: + header = header.replace('{namespace_uri}', namespace_uri) + header = header.replace('{pref_namespace_prefix}', pref_namespace_prefix) + +# Determine whether there was a previous version of the document. +if document_configuration_yaml['doc_created'] != document_configuration_yaml['doc_modified']: + # Load versions list from document versions data in the rs.tdwg.org repo and find most recent version. + versions_data_url = githubBaseUri + 'docs/docs-versions.csv' + versions_list_df = pd.read_csv(versions_data_url, na_filter=False) + # Slice all rows for versions of this document. + matching_versions = versions_list_df[versions_list_df['current_iri']==document_configuration_yaml['current_iri']] + # Sort the matching versions by version IRI in descending order so that the most recent version is first. + matching_versions = matching_versions.sort_values(by=['version_iri'], ascending=[False]) + # The previous version is the second row in the dataframe (row 1). + # The version IRI is in the second column (column 1). + most_recent_version_iri = matching_versions.iat[1, 1] + #print(most_recent_version_iri) + + # Insert the previous version information into the header + previous_version_metadata_string = '''Previous version +: <''' + most_recent_version_iri + '''> + +''' + # Insert the previous version information into the designated slot. + header = header.replace('{previous_version_slot}\n\n', previous_version_metadata_string) +else: + # If there was no previous version, remove the slot from the header. + header = header.replace('{previous_version_slot}\n\n', '') + footerObject = open(footerFileName, 'rt', encoding='utf-8') footer = footerObject.read() footerObject.close() diff --git a/build/termlist-header.md b/build/termlist-header.md index 52aef96..7afa761 100644 --- a/build/termlist-header.md +++ b/build/termlist-header.md @@ -1,7 +1,7 @@ -# Chronometric Age Vocabulary List of Terms +# {document_title} Title -: Chronometric Age Vocabulary List of Terms +: {document_title} Namespace IRI: : http://rs.tdwg.org/chrono/terms/ @@ -10,39 +10,39 @@ Preferred namespace abbreviation : chrono: Date version issued -: 2025-06-12 +: {ratification_date} Date created -: 2021-04-27 +: {created_date} Part of TDWG Standard -: +: <{standard_iri}> This version -: +: <{current_iri}{ratification_date}> Latest version -: +: <{current_iri}> -Previous version -: +{previous_version_slot} Abstract -: The Chronometric Age Vocabulary is a standard for transmitting information about chronometric ages - the processes and results of an assay or other analysis used to determine the age of a MaterialSample. This document lists all terms in namespaces currently used in the vocabulary. +: {abstract} Contributors -: John Wieczorek, Laura Brenskelle, Robert Guralnick, Kitty Emery, Michelle LeFebvre, Neill Wallis, Steve Baskauf, Marie Elise Lecoq, Eric Kansa, Sarah Kansa, Denné Reed +: {contributors} Creator -: TDWG Darwin Core Chronometric Age Extension Task Group +: {creator} Bibliographic citation -: TDWG Darwin Core Chronometric Age Extension Task Group. 2025. Chronometric Age Vocabulary. Biodiversity Information Standards (TDWG). - +: {creator}. {year}. {document_title}. {publisher}. <{current_iri}{ratification_date}> ## 1 Introduction -This document contains all versions of terms in the Chronometric Age vocabulary (). The vocabulary uses the namespace abbreviation `chrono:`. Earlier term versions using the `zooarchnet:` namespace are deprecated and should no longer be used. These deprecated terms can be found at . +This document contains all versions of terms in the Chronometric Age vocabulary (). The vocabulary uses the namespace abbreviation `chrono:`. Earlier term versions using the `zooarchnet:` namespace are deprecated and should no longer be used. These deprecated terms can be found at . + +Some terms are intended for use with values that are IRIs. Those terms use the namespace abbreviation `chronoiri:` (`http://rs.tdwg.org/chrono/iri/`). For a simplified list that contains only the currently recommended terms, see the Chronometric Age Quick Reference Guide (). From bb5b81bc7d367b7adcdcd3dbfe6d4bc77e8cab47 Mon Sep 17 00:00:00 2001 From: Steve Baskauf Date: Tue, 19 Aug 2025 11:15:19 -0400 Subject: [PATCH 2/9] Update README.md --- build/README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/build/README.md b/build/README.md index 6630c41..3629182 100644 --- a/build/README.md +++ b/build/README.md @@ -32,6 +32,10 @@ It generates the file `term_versions.csv`, which is used as the input for the `b ## Generating the "list of terms" document -The Jupyter notebook `build-termlist.ipynb` inputs the header information from `termlist-header.md`, then builds the list of terms and their metadata from data in the [rs.tdwg.org](http://github.com/tdwg/rs.tdwg.org) repository. The script also inputs `termlist-footer.md` and appends it to the end of the generated document, but currently it has no content. The constructed Markdown document is saved as `/docs/list/index.md`. +The Python script `build-termlist.py` inputs the header information from `termlist-header.md`, then builds the list of terms and their metadata from data in the [rs.tdwg.org](http://github.com/tdwg/rs.tdwg.org) repository. It dynamically inserts document metadata from YAML files in a [directory in the rs.tdwg.org repo](https://github.com/tdwg/rs.tdwg.org/tree/master/process/document_metadata_processing/dwc_doc_chrono). These files should be updated if author or document metadata has changed. The script also inputs `termlist-footer.md` and appends it to the end of the generated document, but currently it has no content. The constructed Markdown document is saved as `/docs/list/index.md`. -Note: when this is all working, the code can be pulled from the Jupyter notebook cells and just be saved as a `.py` Python script. +Run the script from the command line: + +``` +python build-termlist.py +``` From b6d5995ef116f6c9d133e13b7c0dceeef27f5849 Mon Sep 17 00:00:00 2001 From: Steve Baskauf Date: Tue, 19 Aug 2025 11:23:10 -0400 Subject: [PATCH 3/9] Get rid of apparent hack that is messing up categorization of the indices --- build/build-termlist.py | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/build/build-termlist.py b/build/build-termlist.py index 467b123..6b2e4ac 100644 --- a/build/build-termlist.py +++ b/build/build-termlist.py @@ -55,12 +55,10 @@ # 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. -# ** Note 2025-08-19: I don't understand why the first two categories are there. Is it just a hack to get some of the -# terms to display at the end of the first section? -display_order = [ 'http://rs.tdwg.org/chrono/terms/ChronometricAge', 'http://tdwg.org/chrono/terms/ChronometricAge', 'http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI'] -display_label = ['Chronometric Age', 'Chronometric Age', 'IRI-value terms'] -display_comments = ['','',''] -display_id = ['chronometric_age', 'chronometric_age', 'use_with_iri'] +display_order = [ 'http://rs.tdwg.org/chrono/terms/ChronometricAge', 'http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI'] +display_label = ['Chronometric Age', 'IRI-value terms'] +display_comments = ['',''] +display_id = ['chronometric_age', 'use_with_iri'] # --------------- # Load header data From 4062b570377e84432b03efde5b64feed65a4b4be Mon Sep 17 00:00:00 2001 From: Steve Baskauf Date: Tue, 19 Aug 2025 11:41:47 -0400 Subject: [PATCH 4/9] cosmetic tweek --- build/build-termlist.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build/build-termlist.py b/build/build-termlist.py index 6b2e4ac..b76ed4b 100644 --- a/build/build-termlist.py +++ b/build/build-termlist.py @@ -238,7 +238,7 @@ def convert_examples(text_with_list_of_examples: str) -> str: curie = row['pref_ns_prefix'] + ":" + row['term_localName'] curie_anchor = curie.replace(':','_') text += '[' + curie + '](#' + curie_anchor + ') |\n' -text = text[:len(text)-2] # remove final trailing vertical bar and newline +text = text[:len(text)-3] # remove final trailing space, vertical bar, and newline text += '\n\n' # put back removed newline for category in range(0,len(display_order)): @@ -255,7 +255,7 @@ def convert_examples(text_with_list_of_examples: str) -> str: curie = row['pref_ns_prefix'] + ":" + row['term_localName'] curie_anchor = curie.replace(':','_') text += '[' + curie + '](#' + curie_anchor + ') |\n' - text = text[:len(text)-2] # remove final trailing vertical bar and newline + text = text[:len(text)-3] # remove final trailing space, vertical bar, and newline text += '\n\n' # put back removed newline index_by_name = text @@ -275,7 +275,7 @@ def convert_examples(text_with_list_of_examples: str) -> str: if row['rdf_type'] == 'http://www.w3.org/2000/01/rdf-schema#Class': curie_anchor = row['pref_ns_prefix'] + "_" + row['term_localName'] text += '[' + row['label'] + '](#' + curie_anchor + ') |\n' -text = text[:len(text)-2] # remove final trailing vertical bar and newline +text = text[:len(text)-3] # remove final trailing space, vertical bar, and newline text += '\n\n' # put back removed newline for category in range(0,len(display_order)): @@ -292,7 +292,7 @@ def convert_examples(text_with_list_of_examples: str) -> str: if row['rdf_type'] != 'http://www.w3.org/2000/01/rdf-schema#Class': curie_anchor = row['pref_ns_prefix'] + "_" + row['term_localName'] text += '[' + row['label'] + '](#' + curie_anchor + ') |\n' - text = text[:len(text)-2] # remove final trailing vertical bar and newline + text = text[:len(text)-3] # remove final trailing space, vertical bar, and newline text += '\n\n' # put back removed newline index_by_label = text From b6e86be7ba5c9f2dce6d89707af285e903b007a8 Mon Sep 17 00:00:00 2001 From: Steve Baskauf Date: Tue, 19 Aug 2025 11:47:29 -0400 Subject: [PATCH 5/9] make former current doc a dated version and rebuild current list of terms --- docs/list/2025-06-12.md | 1761 +++++++++++++++++++++++++++++++++++++++ docs/list/index.md | 88 +- 2 files changed, 1821 insertions(+), 28 deletions(-) create mode 100644 docs/list/2025-06-12.md diff --git a/docs/list/2025-06-12.md b/docs/list/2025-06-12.md new file mode 100644 index 0000000..fb2532d --- /dev/null +++ b/docs/list/2025-06-12.md @@ -0,0 +1,1761 @@ +# Chronometric Age Vocabulary List of Terms + +Title +: Chronometric Age Vocabulary List of Terms + +Namespace IRI: +: http://rs.tdwg.org/chrono/terms/ + +Preferred namespace abbreviation +: chrono: + +Date version issued +: 2025-06-12 + +Date created +: 2021-04-27 + +Part of TDWG Standard +: + +This version +: + +Latest version +: + +Previous version +: + +Replaced by +: + +Abstract +: The Chronometric Age Vocabulary is a standard for transmitting information about chronometric ages - the processes and results of an assay or other analysis used to determine the age of a MaterialSample. This document lists all terms in namespaces currently used in the vocabulary. + +Contributors +: John Wieczorek, Laura Brenskelle, Robert Guralnick, Kitty Emery, Michelle LeFebvre, Neill Wallis, Steve Baskauf, Marie Elise Lecoq, Eric Kansa, Sarah Kansa, Denné Reed + +Creator +: TDWG Darwin Core Chronometric Age Extension Task Group + +Bibliographic citation +: TDWG Darwin Core Chronometric Age Extension Task Group. 2025. Chronometric Age Vocabulary. Biodiversity Information Standards (TDWG). + + +## 1 Introduction + +This document contains all versions of terms in the Chronometric Age vocabulary (). The vocabulary uses the namespace abbreviation `chrono:`. Earlier term versions using the `zooarchnet:` namespace are deprecated and should no longer be used. These deprecated terms can be found at . + +For a simplified list that contains only the currently recommended terms, see the Chronometric Age Quick Reference Guide (). + +### 1.1 Status of the content of this document + +In Section 4, the values of the `Term IRI`, and `Definition` are 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` and `Examples`) 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 + +The terms in this standard are meant to provide stable definitions that can be used in a variety of contexts, but were envisioned principally to function together as an extension to Darwin Core, where each core record may be annotated by one or more chronometric ages. + +## 3 Term index +### 3.1 Index By Term Name + +(See also [3.2 Index By Label](#32-index-by-label)) + +**Classes** + +[chrono:ChronometricAge](#chrono_ChronometricAge) + +**Chronometric Age** + +[chrono:chronometricAgeConversionProtocol](#chrono_chronometricAgeConversionProtocol) | +[chrono:chronometricAgeDeterminedBy](#chrono_chronometricAgeDeterminedBy) | +[chrono:chronometricAgeDeterminedDate](#chrono_chronometricAgeDeterminedDate) | +[chrono:chronometricAgeID](#chrono_chronometricAgeID) | +[chrono:chronometricAgeProtocol](#chrono_chronometricAgeProtocol) | +[chrono:chronometricAgeReferences](#chrono_chronometricAgeReferences) | +[chrono:chronometricAgeRemarks](#chrono_chronometricAgeRemarks) | +[chrono:chronometricAgeUncertaintyInYears](#chrono_chronometricAgeUncertaintyInYears) | +[chrono:chronometricAgeUncertaintyMethod](#chrono_chronometricAgeUncertaintyMethod) | +[chrono:earliestChronometricAge](#chrono_earliestChronometricAge) | +[chrono:earliestChronometricAgeReferenceSystem](#chrono_earliestChronometricAgeReferenceSystem) | +[chrono:latestChronometricAge](#chrono_latestChronometricAge) | +[chrono:latestChronometricAgeReferenceSystem](#chrono_latestChronometricAgeReferenceSystem) | +[chrono:materialDated](#chrono_materialDated) | +[chrono:materialDatedID](#chrono_materialDatedID) | +[chrono:materialDatedRelationship](#chrono_materialDatedRelationship) | +[chrono:maximumChronometricAge](#chrono_maximumChronometricAge) | +[chrono:maximumChronometricAgeReferenceSystem](#chrono_maximumChronometricAgeReferenceSystem) | +[chrono:minimumChronometricAge](#chrono_minimumChronometricAge) | +[chrono:minimumChronometricAgeReferenceSystem](#chrono_minimumChronometricAgeReferenceSystem) | +[chrono:uncalibratedChronometricAge](#chrono_uncalibratedChronometricAge) | +[chrono:verbatimChronometricAge](#chrono_verbatimChronometricAge) + +**IRI-value terms** + +[chronoiri:chronometricAgeConversionProtocol](#chronoiri_chronometricAgeConversionProtocol) | +[chronoiri:chronometricAgeDeterminedBy](#chronoiri_chronometricAgeDeterminedBy) | +[chronoiri:chronometricAgeProtocol](#chronoiri_chronometricAgeProtocol) | +[chronoiri:chronometricAgeUncertaintyMethod](#chronoiri_chronometricAgeUncertaintyMethod) | +[chronoiri:earliestChronometricAgeReferenceSystem](#chronoiri_earliestChronometricAgeReferenceSystem) | +[chronoiri:latestChronometricAgeReferenceSystem](#chronoiri_latestChronometricAgeReferenceSystem) | +[chronoiri:materialDated](#chronoiri_materialDated) + +### 3.2 Index By Label + +(See also [3.1 Index By Term Name](#31-index-by-term-name)) + +**Classes** + +[Chronometric Age](#chrono_ChronometricAge) + +**Chronometric Age** + +[Chronometric Age Conversion Protocol](#chrono_chronometricAgeConversionProtocol) | +[Chronometric Age Determined By](#chrono_chronometricAgeDeterminedBy) | +[Chronometric Age Determined Date](#chrono_chronometricAgeDeterminedDate) | +[Chronometric Age ID](#chrono_chronometricAgeID) | +[Chronometric Age Protocol](#chrono_chronometricAgeProtocol) | +[Chronometric Age References](#chrono_chronometricAgeReferences) | +[Chronometric Age Remarks](#chrono_chronometricAgeRemarks) | +[Chronometric Age Uncertainty In Years](#chrono_chronometricAgeUncertaintyInYears) | +[Chronometric Age Uncertainty Method](#chrono_chronometricAgeUncertaintyMethod) | +[Earliest Chronometric Age](#chrono_earliestChronometricAge) | +[Earliest Chronometric Age Reference System](#chrono_earliestChronometricAgeReferenceSystem) | +[Latest Chronometric Age](#chrono_latestChronometricAge) | +[Latest Chronometric Age Reference System](#chrono_latestChronometricAgeReferenceSystem) | +[Material Dated](#chrono_materialDated) | +[Material Dated ID](#chrono_materialDatedID) | +[Material Dated Relationship](#chrono_materialDatedRelationship) | +[Maximum Chronometric Age](#chrono_maximumChronometricAge) | +[Maximum Chronometric Age Reference System](#chrono_maximumChronometricAgeReferenceSystem) | +[Minimum Chronometric Age](#chrono_minimumChronometricAge) | +[Minimum Chronometric Age Reference System](#chrono_minimumChronometricAgeReferenceSystem) | +[Uncalibrated Chronometric Age](#chrono_uncalibratedChronometricAge) | +[Verbatim Chronometric Age](#chrono_verbatimChronometricAge) + +**IRI-value terms** + +[Chronometric Age Conversion Protocol (IRI)](#chronoiri_chronometricAgeConversionProtocol) | +[Chronometric Age Determined By (IRI)](#chronoiri_chronometricAgeDeterminedBy) | +[Chronometric Age Protocol (IRI)](#chronoiri_chronometricAgeProtocol) | +[Chronometric Age Uncertainty Method (IRI)](#chronoiri_chronometricAgeUncertaintyMethod) | +[Earliest Chronometric Age Reference System (IRI)](#chronoiri_earliestChronometricAgeReferenceSystem) | +[Latest Chronometric Age Reference System (IRI)](#chronoiri_latestChronometricAgeReferenceSystem) | +[Material Dated (IRI)](#chronoiri_materialDated) + +## 4 Vocabulary + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name chrono:ChronometricAge
Term IRIhttp://rs.tdwg.org/chrono/terms/ChronometricAge
Modified2021-02-21
Term version IRIhttp://rs.tdwg.org/chrono/terms/version/ChronometricAge-2021-02-21
LabelChronometric Age
DefinitionAn approximation of a temporal position (in the sense conveyed by https://www.w3.org/TR/owl-time/#time:TemporalPosition) that is supported via evidence.
NotesThe age of a specimen and how this age is known, whether by a dating assay, a relative association with dated material, or legacy collections information.
Examples
    +
  • An age range associated with a specimen derived from an AMS dating assay applied to an oyster shell in the same stratum
  • +
  • An age range associated with a specimen derived from a ceramics analysis based on other materials found in the same stratum
  • +
  • A maximum age associated with a specimen derived from K-Ar dating applied to a proximal volcanic tuff found stratigraphically below the specimen
  • +
  • An age range of a specimen based on its biostratigraphic context
  • +
  • An age of a specimen based on what is reported in legacy collections data.
  • +
ABCD equivalencehttps://terms.tdwg.org/wiki/abcd-efg:StratigraphicAttributions-RadiometricDates
TypeClass
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-04-27_33
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name chrono:chronometricAgeConversionProtocol
Term IRIhttp://rs.tdwg.org/chrono/terms/chronometricAgeConversionProtocol
Modified2025-06-12
Term version IRIhttp://rs.tdwg.org/chrono/terms/version/chronometricAgeConversionProtocol-2025-06-12
LabelChronometric Age Conversion Protocol
DefinitionThe method used for converting the chrono:uncalibratedChronometricAge into a chronometric age in years, as captured in the chrono:earliestChronometricAge, chrono:earliestChronometricAgeReferenceSystem, chrono:latestChronometricAge, and chrono:latestChronometricAgeReferenceSystem fields.
NotesFor example, calibration of conventional radiocarbon age or the currently accepted age range of a cultural or geological period. This term has an equivalent in the chronoiri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.
Examples
    +
  • INTCAL13
  • +
  • sequential 6 phase Bayesian model and IntCal13 calibration
  • +
ABCD equivalencehttps://terms.tdwg.org/wiki/abcd-efg:StratigraphicAttributions-ChronostratigraphicAttribution-Method
TypeProperty
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-04-27_33
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2025-06-12_45
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name chronoiri:chronometricAgeConversionProtocol
Term IRIhttp://rs.tdwg.org/chrono/iri/chronometricAgeConversionProtocol
Modified2025-06-12
Term version IRIhttp://rs.tdwg.org/chrono/iri/version/chronometricAgeConversionProtocol-2025-06-12
LabelChronometric Age Conversion Protocol (IRI)
DefinitionThe method used to convert the chrono:uncalibratedChronometricAge into a chronometric age in years, as captured in chrono:earliestChronometricAge, chrono:earliestChronometricAgeReferenceSystem, chrono:latestChronometricAge, and chrono:latestChronometricAgeReferenceSystem.
NotesTerms in the chronoiri namespace are intended to be used in RDF with non-literal objects.
ABCD equivalencenot in ABCD
TypeProperty
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-04-27_33
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2025-06-12_45
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name chrono:chronometricAgeDeterminedBy
Term IRIhttp://rs.tdwg.org/chrono/terms/chronometricAgeDeterminedBy
Modified2025-06-12
Term version IRIhttp://rs.tdwg.org/chrono/terms/version/chronometricAgeDeterminedBy-2025-06-12
LabelChronometric Age Determined By
DefinitionA list (concatenated and separated) of names of people, groups, or organizations who determined the chrono:ChronometricAge.
NotesRecommended best practice is to separate the values in a list with space vertical bar space ( | ). This term has an equivalent in the chronoiri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.
ExamplesMichelle LeFebvre | Neill Wallis
ABCD equivalencehttps://terms.tdwg.org/wiki/abcd-efg:StratigraphicAttributions-ChronostratigraphicAttribution-Identifiers
TypeProperty
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-04-27_33
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2025-06-12_45
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name chronoiri:chronometricAgeDeterminedBy
Term IRIhttp://rs.tdwg.org/chrono/iri/chronometricAgeDeterminedBy
Modified2025-06-12
Term version IRIhttp://rs.tdwg.org/chrono/iri/version/chronometricAgeDeterminedBy-2025-06-12
LabelChronometric Age Determined By (IRI)
DefinitionA person, group, or organization that determined the chrono:ChronometricAge.
NotesTerms in the chronoiri namespace are intended to be used in RDF with non-literal objects.
ABCD equivalencenot in ABCD
TypeProperty
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-04-27_33
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2025-06-12_45
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name chrono:chronometricAgeDeterminedDate
Term IRIhttp://rs.tdwg.org/chrono/terms/chronometricAgeDeterminedDate
Modified2025-06-12
Term version IRIhttp://rs.tdwg.org/chrono/terms/version/chronometricAgeDeterminedDate-2025-06-12
LabelChronometric Age Determined Date
DefinitionThe date on which the chrono:ChronometricAge was determined.
NotesRecommended best practice is to use a date that conforms to ISO 8601-1:2019.
Examples
    +
  • 1963-03-08T14:07-0600 (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC)
  • +
  • 2009-02-20T08:40Z (20 February 2009 8:40am UTC)
  • +
  • 2018-08-29T15:19 (3:19pm local time on 29 August 2018)
  • +
  • 1809-02-12 (some time during 12 February 1809)
  • +
  • 1906-06 (some time in June 1906)
  • +
  • 1971 (some time in the year 1971)
  • +
ABCD equivalencehttps://terms.tdwg.org/wiki/abcd-efg:StratigraphicAttributions-RadiometricDate-AnalysisDateTime
TypeProperty
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-04-27_33
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2025-06-12_45
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name chrono:chronometricAgeID
Term IRIhttp://rs.tdwg.org/chrono/terms/chronometricAgeID
Modified2025-06-12
Term version IRIhttp://rs.tdwg.org/chrono/terms/version/chronometricAgeID-2025-06-12
LabelChronometric Age ID
DefinitionAn identifier for the set of information associated with a chrono:ChronometricAge.
NotesMay be a global unique identifier or an identifier specific to the dataset. This can be used to link this record to another repository where more information about the dataset is shared.
Exampleshttps://www.canadianarchaeology.ca/samples/70673
ABCD equivalencenot in ABCD
TypeProperty
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-04-27_33
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2025-06-12_45
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name chrono:chronometricAgeProtocol
Term IRIhttp://rs.tdwg.org/chrono/terms/chronometricAgeProtocol
Modified2025-06-12
Term version IRIhttp://rs.tdwg.org/chrono/terms/version/chronometricAgeProtocol-2025-06-12
LabelChronometric Age Protocol
DefinitionA description of or reference to the methods used to determine the chrono:ChronometricAge.
Notes This term has an equivalent in the chronoiri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.
Examples
    +
  • radiocarbon AMS
  • +
  • K-Ar dates for the lower most marker tuff
  • +
  • historic documentation
  • +
  • ceramic seriation
  • +
ABCD equivalencehttps://terms.tdwg.org/wiki/abcd-efg:StratigraphicAttributions-ChronostratigraphicAttribution-Method
TypeProperty
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-04-27_33
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2025-06-12_45
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name chronoiri:chronometricAgeProtocol
Term IRIhttp://rs.tdwg.org/chrono/iri/chronometricAgeProtocol
Modified2025-06-12
Term version IRIhttp://rs.tdwg.org/chrono/iri/version/chronometricAgeProtocol-2025-06-12
LabelChronometric Age Protocol (IRI)
DefinitionA method used to determine the chrono:ChronometricAge.
NotesTerms in the chronoiri namespace are intended to be used in RDF with non-literal objects.
ABCD equivalencenot in ABCD
TypeProperty
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-04-27_33
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2025-06-12_45
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name chrono:chronometricAgeReferences
Term IRIhttp://rs.tdwg.org/chrono/terms/chronometricAgeReferences
Modified2025-06-12
Term version IRIhttp://rs.tdwg.org/chrono/terms/version/chronometricAgeReferences-2025-06-12
LabelChronometric Age References
DefinitionA list (concatenated and separated) of identifiers (publication, bibliographic reference, global unique identifier, URI) of literature associated with the chrono:ChronometricAge.
NotesRecommended best practice is to separate the values in a list with space vertical bar space ( | ).
ExamplesPluckhahn, Thomas J., Neill J. Wallis, and Victor D. Thompson. 2020 The History and Future of Migrationist Explanation in the Archaeology of the Eastern Woodlands: A Review and Case Study of the Woodland Period Gulf Coast. Journal of Archaeological Research. https://doi.org/10.1007/s10814-019-09140-x
ABCD equivalencehttps://terms.tdwg.org/wiki/abcd-efg:StratigraphicAttributions-ChronostratigraphicAttribution-MeasurementOrFactReference
TypeProperty
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-04-27_33
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2025-06-12_45
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name chrono:chronometricAgeRemarks
Term IRIhttp://rs.tdwg.org/chrono/terms/chronometricAgeRemarks
Modified2025-06-12
Term version IRIhttp://rs.tdwg.org/chrono/terms/version/chronometricAgeRemarks-2025-06-12
LabelChronometric Age Remarks
DefinitionNotes or comments about the chrono:ChronometricAge.
ExamplesBeta Analytic number: 323913 | One of the Crassostrea virginica right valve specimens from North Midden Feature 17 was chosen for AMS dating, but it is unclear exactly which specimen it was.
ABCD equivalencehttps://terms.tdwg.org/wiki/abcd-efg:UnitStratigraphicDetermination-DatingComment
TypeProperty
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-04-27_33
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2025-06-12_45
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name chrono:chronometricAgeUncertaintyInYears
Term IRIhttp://rs.tdwg.org/chrono/terms/chronometricAgeUncertaintyInYears
Modified2025-06-12
Term version IRIhttp://rs.tdwg.org/chrono/terms/version/chronometricAgeUncertaintyInYears-2025-06-12
LabelChronometric Age Uncertainty In Years
DefinitionThe temporal uncertainty of the chrono:earliestChronometricAge and chrono:latestChronometicAge in years.
NotesThe expected unit for this field is years. The value in this field is number of years before and after the values given in the chrono:earliestChronometricAge and chrono:latestChronometricAge fields within which the actual values are estimated to be.
Examples100
ABCD equivalencehttps://terms.tdwg.org/wiki/abcd-efg:UnitStratigraphicDetermination-ChronostratigraphicAttribution-Accuracy
TypeProperty
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-04-27_33
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2025-06-12_45
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name chronoiri:chronometricAgeUncertaintyMethod
Term IRIhttp://rs.tdwg.org/chrono/iri/chronometricAgeUncertaintyMethod
Modified2025-06-12
Term version IRIhttp://rs.tdwg.org/chrono/iri/version/chronometricAgeUncertaintyMethod-2025-06-12
LabelChronometric Age Uncertainty Method (IRI)
DefinitionThe method used to generate the value of chrono:chronometricAgeUncertaintyInYears.
NotesTerms in the chronoiri namespace are intended to be used in RDF with non-literal objects.
ABCD equivalencenot in ABCD
TypeProperty
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-04-27_33
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2025-06-12_45
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name chrono:chronometricAgeUncertaintyMethod
Term IRIhttp://rs.tdwg.org/chrono/terms/chronometricAgeUncertaintyMethod
Modified2025-06-12
Term version IRIhttp://rs.tdwg.org/chrono/terms/version/chronometricAgeUncertaintyMethod-2025-06-12
LabelChronometric Age Uncertainty Method
DefinitionThe method used to generate the value of chrono:chronometricAgeUncertaintyInYears.
Notes This term has an equivalent in the chronoiri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.
Examples
    +
  • 2-sigma calibrated range
  • +
  • Half of 95% confidence interval
  • +
ABCD equivalencehttps://terms.tdwg.org/wiki/abcd-efg:StratigraphicAttributions-ChronostratigraphicAttribution-Method
TypeProperty
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-04-27_33
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2025-06-12_45
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name chrono:earliestChronometricAge
Term IRIhttp://rs.tdwg.org/chrono/terms/earliestChronometricAge
Modified2025-06-12
Term version IRIhttp://rs.tdwg.org/chrono/terms/version/earliestChronometricAge-2025-06-12
LabelEarliest Chronometric Age
DefinitionThe maximum/earliest/oldest possible age of a specimen as determined by a dating method.
NotesThe expected unit for this field is years. This field, if populated, must have an associated chrono:earliestChronometricAgeReferenceSystem.
Examples100
ABCD equivalencehttps://terms.tdwg.org/wiki/abcd-efg:StratigraphicAttributions-ChronostratigraphicAttribution-UpperValue
TypeProperty
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-04-27_33
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2025-06-12_45
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name chronoiri:earliestChronometricAgeReferenceSystem
Term IRIhttp://rs.tdwg.org/chrono/iri/earliestChronometricAgeReferenceSystem
Modified2025-06-12
Term version IRIhttp://rs.tdwg.org/chrono/iri/version/earliestChronometricAgeReferenceSystem-2025-06-12
LabelEarliest Chronometric Age Reference System (IRI)
DefinitionThe reference system associated with the chrono:earliestChronometricAge.
NotesTerms in the chronoiri namespace are intended to be used in RDF with non-literal objects.
ABCD equivalencenot in ABCD
TypeProperty
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-04-27_33
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2025-06-12_45
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name chrono:earliestChronometricAgeReferenceSystem
Term IRIhttp://rs.tdwg.org/chrono/terms/earliestChronometricAgeReferenceSystem
Modified2025-06-12
Term version IRIhttp://rs.tdwg.org/chrono/terms/version/earliestChronometricAgeReferenceSystem-2025-06-12
LabelEarliest Chronometric Age Reference System
DefinitionThe reference system associated with the chrono:earliestChronometricAge.
NotesRecommended best practice is to use a controlled vocabulary. This term has an equivalent in the chronoiri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.
Examples
    +
  • kya
  • +
  • mya
  • +
  • BP
  • +
  • AD
  • +
  • BCE
  • +
  • ka
  • +
  • Ma
  • +
  • Ga
  • +
ABCD equivalencenot in ABCD
TypeProperty
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-04-27_33
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2025-06-12_45
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name chrono:latestChronometricAge
Term IRIhttp://rs.tdwg.org/chrono/terms/latestChronometricAge
Modified2025-06-12
Term version IRIhttp://rs.tdwg.org/chrono/terms/version/latestChronometricAge-2025-06-12
LabelLatest Chronometric Age
DefinitionThe minimum/latest/youngest possible age of a specimen as determined by a dating method.
NotesThe expected unit for this field is years. This field, if populated, must have an associated chrono:latestChronometricAgeReferenceSystem.
Examples27
ABCD equivalencehttps://terms.tdwg.org/wiki/abcd-efg:UnitStratigraphicDetermination-ChronostratigraphicAttribution-LowerValue
TypeProperty
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-04-27_33
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2025-06-12_45
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name chrono:latestChronometricAgeReferenceSystem
Term IRIhttp://rs.tdwg.org/chrono/terms/latestChronometricAgeReferenceSystem
Modified2025-06-12
Term version IRIhttp://rs.tdwg.org/chrono/terms/version/latestChronometricAgeReferenceSystem-2025-06-12
LabelLatest Chronometric Age Reference System
DefinitionThe reference system associated with the chrono:latestChronometricAge.
NotesRecommended best practice is to use a controlled vocabulary. This term has an equivalent in the chronoiri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.
Examples
    +
  • kya
  • +
  • mya
  • +
  • BP
  • +
  • AD
  • +
  • BCE
  • +
  • ka
  • +
  • Ma
  • +
  • Ga
  • +
ABCD equivalencenot in ABCD
TypeProperty
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-04-27_33
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2025-06-12_45
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name chronoiri:latestChronometricAgeReferenceSystem
Term IRIhttp://rs.tdwg.org/chrono/iri/latestChronometricAgeReferenceSystem
Modified2025-06-12
Term version IRIhttp://rs.tdwg.org/chrono/iri/version/latestChronometricAgeReferenceSystem-2025-06-12
LabelLatest Chronometric Age Reference System (IRI)
DefinitionThe reference system associated with the chrono:latestChronometricAge.
NotesTerms in the chronoiri namespace are intended to be used in RDF with non-literal objects.
ABCD equivalencenot in ABCD
TypeProperty
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-04-27_33
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2025-06-12_45
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name chronoiri:materialDated
Term IRIhttp://rs.tdwg.org/chrono/iri/materialDated
Modified2025-06-12
Term version IRIhttp://rs.tdwg.org/chrono/iri/version/materialDated-2025-06-12
LabelMaterial Dated (IRI)
DefinitionThe material on which the chrono:chronometricAgeProtocol was actually performed.
NotesTerms in the chronoiri namespace are intended to be used in RDF with non-literal objects.
ABCD equivalencenot in ABCD
TypeProperty
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-04-27_33
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2025-06-12_45
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name chrono:materialDated
Term IRIhttp://rs.tdwg.org/chrono/terms/materialDated
Modified2025-06-12
Term version IRIhttp://rs.tdwg.org/chrono/terms/version/materialDated-2025-06-12
LabelMaterial Dated
DefinitionA description of the material on which the chrono:chronometricAgeProtocol was actually performed, if known.
Notes This term has an equivalent in the chronoiri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.
Examples
    +
  • Double Tuff
  • +
  • Charcoal found in Stratum V
  • +
  • charred wood
  • +
  • tooth
  • +
ABCD equivalencehttps://terms.tdwg.org/wiki/abcd-efg:UnitStratigraphicDetermination-MaterialDated
TypeProperty
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-04-27_33
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2025-06-12_45
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name chrono:materialDatedID
Term IRIhttp://rs.tdwg.org/chrono/terms/materialDatedID
Modified2025-06-12
Term version IRIhttp://rs.tdwg.org/chrono/terms/version/materialDatedID-2025-06-12
LabelMaterial Dated ID
DefinitionAn identifier for the dwc:MaterialEntity on which the chrono:chronometricAgeProtocol was performed, if applicable.
Examplesdwc:materialEntityID: https://www.ebi.ac.uk/metagenomics/samples/SRS1930158
ABCD equivalencenot in ABCD
TypeProperty
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-04-27_33
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2025-06-12_45
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name chrono:materialDatedRelationship
Term IRIhttp://rs.tdwg.org/chrono/terms/materialDatedRelationship
Modified2025-06-12
Term version IRIhttp://rs.tdwg.org/chrono/terms/version/materialDatedRelationship-2025-06-12
LabelMaterial Dated Relationship
DefinitionThe relationship of the chrono:materialDated to the subject of the chrono:ChronometricAge record, from which the chrono:ChronometricAge of the subject is inferred.
NotesRecommended best practice is to use a controlled vocabulary.
Examples
    +
  • sameAs (cases where the subject material was completely destructively subsampled to get the ChronometricAge)
  • +
  • subsampleOf (cases where part of the original specimen was extracted as the material used to determine the ChronometricAge)
  • +
  • inContextWith (cases where the ChronometricAge is inferred from materialDated, such as sediments or cultural objects, in related temporal context)
  • +
  • stratigraphicallyCorrelatedWith (cases where the ChronometricAge is inferred from materialDated in a stratigraphically correlated context)
  • +
ABCD equivalencenot in ABCD
TypeProperty
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-04-27_33
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2025-06-12_45
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name chrono:maximumChronometricAge
Term IRIhttp://rs.tdwg.org/chrono/terms/maximumChronometricAge
Modified2021-01-26
LabelMaximum Chronometric Age
This term is deprecated and should no longer be used.
Is replaced byhttp://rs.tdwg.org/chrono/terms/earliestChronometricAge
DefinitionUpper limit for the age of a specimen as determined by a dating method.
NotesThe expected unit for this field is years. This field, if populated, must have an associated maximumChronometricAgeReferenceSystem.
Examples27
ABCD equivalencehttps://terms.tdwg.org/wiki/abcd-efg:StratigraphicAttributions-ChronostratigraphicAttribution-UpperValue
TypeProperty
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-04-27_33
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name chrono:maximumChronometricAgeReferenceSystem
Term IRIhttp://rs.tdwg.org/chrono/terms/maximumChronometricAgeReferenceSystem
Modified2021-01-26
LabelMaximum Chronometric Age Reference System
This term is deprecated and should no longer be used.
Is replaced byhttp://rs.tdwg.org/chrono/terms/earliestChronometricAgeReferenceSystem
DefinitionThe reference system associated with the maximumChronometricAge.
Exampleskya,mya,BP,AD,BCE
ABCD equivalencehttps://terms.tdwg.org/wiki/abcd-efg:UnitStratigraphicDetermination-TimeUnit
TypeProperty
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-04-27_33
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name chrono:minimumChronometricAge
Term IRIhttp://rs.tdwg.org/chrono/terms/minimumChronometricAge
Modified2021-01-26
LabelMinimum Chronometric Age
This term is deprecated and should no longer be used.
Is replaced byhttp://rs.tdwg.org/chrono/terms/latestChronometricAge
DefinitionLower limit for the age of a specimen as determined by a dating method.
NotesThe expected unit for this field is years. This field, if populated, must have an associated maximumChronometricAgeReferenceSystem.
Examples100
ABCD equivalencehttps://terms.tdwg.org/wiki/abcd-efg:UnitStratigraphicDetermination-ChronostratigraphicAttribution-LowerValue
TypeProperty
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-04-27_33
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name chrono:minimumChronometricAgeReferenceSystem
Term IRIhttp://rs.tdwg.org/chrono/terms/minimumChronometricAgeReferenceSystem
Modified2021-01-26
LabelMinimum Chronometric Age Reference System
This term is deprecated and should no longer be used.
Is replaced byhttp://rs.tdwg.org/chrono/terms/latestChronometricAgeReferenceSystem
DefinitionThe reference system associated with the minimumChronometricAge.
Exampleskya,mya,BP,AD,BCE
ABCD equivalencehttps://terms.tdwg.org/wiki/abcd-efg:UnitStratigraphicDetermination-TimeUnit
TypeProperty
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-04-27_33
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name chrono:uncalibratedChronometricAge
Term IRIhttp://rs.tdwg.org/chrono/terms/uncalibratedChronometricAge
Modified2020-09-14
Term version IRIhttp://rs.tdwg.org/chrono/terms/version/uncalibratedChronometricAge-2020-09-14
LabelUncalibrated Chronometric Age
DefinitionThe output of a dating assay before it is calibrated into an age using a specific conversion protocol.
Examples1510 +/- 25 14C yr BP, 16.26 Ma +/- 0.016
ABCD equivalencenot in ABCD
TypeProperty
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-04-27_33
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Term Name chrono:verbatimChronometricAge
Term IRIhttp://rs.tdwg.org/chrono/terms/verbatimChronometricAge
Modified2020-09-14
Term version IRIhttp://rs.tdwg.org/chrono/terms/version/verbatimChronometricAge-2020-09-14
LabelVerbatim Chronometric Age
DefinitionThe verbatim age for a specimen, whether reported by a dating assay, associated references, or legacy information.
NotesFor example, this could be the radiocarbon age as given in an AMS dating report. This could also be simply what is reported as the age of a specimen in legacy collections data.
Examples27 BC to 14 AD, stratigraphically pre-1104
ABCD equivalencenot in ABCD
TypeProperty
Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-04-27_33
diff --git a/docs/list/index.md b/docs/list/index.md index e9dfa0f..582837a 100644 --- a/docs/list/index.md +++ b/docs/list/index.md @@ -10,7 +10,7 @@ Preferred namespace abbreviation : chrono: Date version issued -: 2025-06-12 +: 2025-07-10 Date created : 2021-04-27 @@ -19,30 +19,31 @@ Part of TDWG Standard : This version -: +: Latest version : Previous version -: +: Abstract : The Chronometric Age Vocabulary is a standard for transmitting information about chronometric ages - the processes and results of an assay or other analysis used to determine the age of a MaterialSample. This document lists all terms in namespaces currently used in the vocabulary. Contributors -: John Wieczorek, Laura Brenskelle, Robert Guralnick, Kitty Emery, Michelle LeFebvre, Neill Wallis, Steve Baskauf, Marie Elise Lecoq, Eric Kansa, Sarah Kansa, Denné Reed +: [John Wieczorek](https://orcid.org/0000-0003-1144-0290) ([VertNet](http://www.wikidata.org/entity/Q98382028)), [Laura Brenskelle](https://orcid.org/0000-0002-9284-8871) ([University of Florida](http://www.wikidata.org/entity/Q501758)), [Robert Guralnick](https://orcid.org/0000-0001-6682-1504) ([University of Florida](http://www.wikidata.org/entity/Q501758)), [Kitty Emery](https://orcid.org/0000-0002-4031-1968) ([University of Florida](http://www.wikidata.org/entity/Q501758)), [Michelle LeFebvre](https://orcid.org/0000-0002-1741-9997) ([University of Florida](http://www.wikidata.org/entity/Q501758)), [Neill Wallis](https://orcid.org/0000-0003-4740-286X) ([University of Florida](http://www.wikidata.org/entity/Q501758)), [Steven J Baskauf](https://orcid.org/0000-0003-4365-3135) ([Vanderbilt University Libraries](http://www.wikidata.org/entity/Q16849893)), [Marie Elise Lecoq](https://orcid.org/0000-0002-8481-9034) ([GBIF France](https://www.wikidata.org/wiki/Q1531570)), [Eric Kansa](https://orcid.org/0000-0001-5620-4764) ([Harvard University](http://www.wikidata.org/entity/Q13371)), [Sarah Kansa](https://orcid.org/0000-0001-7920-5321) ([The Alexandria Archive Institute](https://www.wikidata.org/wiki/Q30257865)), [Denné Reed](https://orcid.org/0000-0001-9325-3100) ([University of Texas at Austin](https://www.wikidata.org/wiki/Q49213)) Creator : TDWG Darwin Core Chronometric Age Extension Task Group Bibliographic citation -: TDWG Darwin Core Chronometric Age Extension Task Group. 2025. Chronometric Age Vocabulary. Biodiversity Information Standards (TDWG). - +: TDWG Darwin Core Chronometric Age Extension Task Group. 2025. Chronometric Age Vocabulary List of Terms. Biodiversity Information Standards (TDWG). ## 1 Introduction -This document contains all versions of terms in the Chronometric Age vocabulary (). The vocabulary uses the namespace abbreviation `chrono:`. Earlier term versions using the `zooarchnet:` namespace are deprecated and should no longer be used. These deprecated terms can be found at . +This document contains all versions of terms in the Chronometric Age vocabulary (). The vocabulary uses the namespace abbreviation `chrono:`. Earlier term versions using the `zooarchnet:` namespace are deprecated and should no longer be used. These deprecated terms can be found at . + +Some terms are intended for use with values that are IRIs. Those terms use the namespace abbreviation `chronoiri:` (`http://rs.tdwg.org/chrono/iri/`). For a simplified list that contains only the currently recommended terms, see the Chronometric Age Quick Reference Guide (). @@ -58,6 +59,7 @@ The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "S The terms in this standard are meant to provide stable definitions that can be used in a variety of contexts, but were envisioned principally to function together as an extension to Darwin Core, where each core record may be annotated by one or more chronometric ages. ## 3 Term index + ### 3.1 Index By Term Name (See also [3.2 Index By Label](#32-index-by-label)) @@ -271,11 +273,11 @@ The terms in this standard are meant to provide stable definitions that can be u Modified - 2025-06-12 + 2025-07-10 Term version IRI - http://rs.tdwg.org/chrono/iri/version/chronometricAgeConversionProtocol-2025-06-12 + http://rs.tdwg.org/chrono/iri/version/chronometricAgeConversionProtocol-2025-07-10 Label @@ -287,7 +289,7 @@ The terms in this standard are meant to provide stable definitions that can be u Notes - Terms in the chronoiri namespace are intended to be used in RDF with non-literal objects. + Terms in the chronoiri: namespace are intended to be used in RDF with non-literal objects. ABCD equivalence @@ -305,6 +307,10 @@ The terms in this standard are meant to provide stable definitions that can be u Executive Committee decision http://rs.tdwg.org/decisions/decision-2025-06-12_45 + + Executive Committee decision + http://rs.tdwg.org/decisions/decision-2025-07-10_49 + @@ -375,11 +381,11 @@ The terms in this standard are meant to provide stable definitions that can be u Modified - 2025-06-12 + 2025-07-10 Term version IRI - http://rs.tdwg.org/chrono/iri/version/chronometricAgeDeterminedBy-2025-06-12 + http://rs.tdwg.org/chrono/iri/version/chronometricAgeDeterminedBy-2025-07-10 Label @@ -391,7 +397,7 @@ The terms in this standard are meant to provide stable definitions that can be u Notes - Terms in the chronoiri namespace are intended to be used in RDF with non-literal objects. + Terms in the chronoiri: namespace are intended to be used in RDF with non-literal objects. ABCD equivalence @@ -409,6 +415,10 @@ The terms in this standard are meant to provide stable definitions that can be u Executive Committee decision http://rs.tdwg.org/decisions/decision-2025-06-12_45 + + Executive Committee decision + http://rs.tdwg.org/decisions/decision-2025-07-10_49 + @@ -599,11 +609,11 @@ The terms in this standard are meant to provide stable definitions that can be u Modified - 2025-06-12 + 2025-07-10 Term version IRI - http://rs.tdwg.org/chrono/iri/version/chronometricAgeProtocol-2025-06-12 + http://rs.tdwg.org/chrono/iri/version/chronometricAgeProtocol-2025-07-10 Label @@ -615,7 +625,7 @@ The terms in this standard are meant to provide stable definitions that can be u Notes - Terms in the chronoiri namespace are intended to be used in RDF with non-literal objects. + Terms in the chronoiri: namespace are intended to be used in RDF with non-literal objects. ABCD equivalence @@ -633,6 +643,10 @@ The terms in this standard are meant to provide stable definitions that can be u Executive Committee decision http://rs.tdwg.org/decisions/decision-2025-06-12_45 + + Executive Committee decision + http://rs.tdwg.org/decisions/decision-2025-07-10_49 + @@ -807,11 +821,11 @@ The terms in this standard are meant to provide stable definitions that can be u Modified - 2025-06-12 + 2025-07-10 Term version IRI - http://rs.tdwg.org/chrono/iri/version/chronometricAgeUncertaintyMethod-2025-06-12 + http://rs.tdwg.org/chrono/iri/version/chronometricAgeUncertaintyMethod-2025-07-10 Label @@ -823,7 +837,7 @@ The terms in this standard are meant to provide stable definitions that can be u Notes - Terms in the chronoiri namespace are intended to be used in RDF with non-literal objects. + Terms in the chronoiri: namespace are intended to be used in RDF with non-literal objects. ABCD equivalence @@ -841,6 +855,10 @@ The terms in this standard are meant to provide stable definitions that can be u Executive Committee decision http://rs.tdwg.org/decisions/decision-2025-06-12_45 + + Executive Committee decision + http://rs.tdwg.org/decisions/decision-2025-07-10_49 + @@ -968,11 +986,11 @@ The terms in this standard are meant to provide stable definitions that can be u Modified - 2025-06-12 + 2025-07-10 Term version IRI - http://rs.tdwg.org/chrono/iri/version/earliestChronometricAgeReferenceSystem-2025-06-12 + http://rs.tdwg.org/chrono/iri/version/earliestChronometricAgeReferenceSystem-2025-07-10 Label @@ -984,7 +1002,7 @@ The terms in this standard are meant to provide stable definitions that can be u Notes - Terms in the chronoiri namespace are intended to be used in RDF with non-literal objects. + Terms in the chronoiri: namespace are intended to be used in RDF with non-literal objects. ABCD equivalence @@ -1002,6 +1020,10 @@ The terms in this standard are meant to provide stable definitions that can be u Executive Committee decision http://rs.tdwg.org/decisions/decision-2025-06-12_45 + + Executive Committee decision + http://rs.tdwg.org/decisions/decision-2025-07-10_49 + @@ -1198,11 +1220,11 @@ The terms in this standard are meant to provide stable definitions that can be u Modified - 2025-06-12 + 2025-07-10 Term version IRI - http://rs.tdwg.org/chrono/iri/version/latestChronometricAgeReferenceSystem-2025-06-12 + http://rs.tdwg.org/chrono/iri/version/latestChronometricAgeReferenceSystem-2025-07-10 Label @@ -1214,7 +1236,7 @@ The terms in this standard are meant to provide stable definitions that can be u Notes - Terms in the chronoiri namespace are intended to be used in RDF with non-literal objects. + Terms in the chronoiri: namespace are intended to be used in RDF with non-literal objects. ABCD equivalence @@ -1232,6 +1254,10 @@ The terms in this standard are meant to provide stable definitions that can be u Executive Committee decision http://rs.tdwg.org/decisions/decision-2025-06-12_45 + + Executive Committee decision + http://rs.tdwg.org/decisions/decision-2025-07-10_49 + @@ -1248,11 +1274,11 @@ The terms in this standard are meant to provide stable definitions that can be u Modified - 2025-06-12 + 2025-07-10 Term version IRI - http://rs.tdwg.org/chrono/iri/version/materialDated-2025-06-12 + http://rs.tdwg.org/chrono/iri/version/materialDated-2025-07-10 Label @@ -1264,7 +1290,7 @@ The terms in this standard are meant to provide stable definitions that can be u Notes - Terms in the chronoiri namespace are intended to be used in RDF with non-literal objects. + Terms in the chronoiri: namespace are intended to be used in RDF with non-literal objects. ABCD equivalence @@ -1282,6 +1308,10 @@ The terms in this standard are meant to provide stable definitions that can be u Executive Committee decision http://rs.tdwg.org/decisions/decision-2025-06-12_45 + + Executive Committee decision + http://rs.tdwg.org/decisions/decision-2025-07-10_49 + @@ -1756,3 +1786,5 @@ The terms in this standard are meant to provide stable definitions that can be u + + From 94714ad9f26b8577fa87a4345f79cf31fafbb40b Mon Sep 17 00:00:00 2001 From: Steve Baskauf Date: Tue, 19 Aug 2025 11:47:53 -0400 Subject: [PATCH 6/9] add update script --- build/README.md | 8 +++ build/update_previous_doc.py | 119 +++++++++++++++++++++++++++++++++++ 2 files changed, 127 insertions(+) create mode 100644 build/update_previous_doc.py diff --git a/build/README.md b/build/README.md index 3629182..4d5352e 100644 --- a/build/README.md +++ b/build/README.md @@ -32,6 +32,14 @@ It generates the file `term_versions.csv`, which is used as the input for the `b ## Generating the "list of terms" document +Prior to building the production List of Terms document, the Python script "update_previous_doc.py" must be run to change the headers of the previous version of the document and to rename that previous version to a dated version. This must be done first, otherwise the previous index.md file will be overwritten by the new one that is generated by the build-termlist.py script. NOTE: The vocabulary and document metadata in the rs.tdwg.org repository must have been updated before running this script. See for details. Command line arguments are: + +`--slug` (required): the last part of the document URL actual document URL (not the permanent IRI) before the trailing slash. For the Chronometric Age Extension List of Terms, this is `list`. + +`--dir` (required): the subdirectory of the `process/document_metadata_processing/` directory in the rs.tdwg.org repository where the `author_metadata.yaml` and `document_metadata.yaml` files are located. For the Humboldt Extension List of Terms, this is `dwc_doc_chrono`. + +`--branch` (optional): the branch of the rs.tdwg.org repository where the metadata are located. The default is `master`. + The Python script `build-termlist.py` inputs the header information from `termlist-header.md`, then builds the list of terms and their metadata from data in the [rs.tdwg.org](http://github.com/tdwg/rs.tdwg.org) repository. It dynamically inserts document metadata from YAML files in a [directory in the rs.tdwg.org repo](https://github.com/tdwg/rs.tdwg.org/tree/master/process/document_metadata_processing/dwc_doc_chrono). These files should be updated if author or document metadata has changed. The script also inputs `termlist-footer.md` and appends it to the end of the generated document, but currently it has no content. The constructed Markdown document is saved as `/docs/list/index.md`. Run the script from the command line: diff --git a/build/update_previous_doc.py b/build/update_previous_doc.py new file mode 100644 index 0000000..58526b2 --- /dev/null +++ b/build/update_previous_doc.py @@ -0,0 +1,119 @@ +# Script to make the current document be the previous document +# This program is released under a GNU General Public License v3.0 http://www.gnu.org/licenses/gpl-3.0 +# Author: Steve Baskauf + +script_version = '0.1.1' +version_modified = '2024-03-03' + +# NOTE: This script should be run only after the script updating the machine-readable metadata has been run. +# It must be run before the script that generates the new document version. + +import requests +import pandas as pd +import yaml +import os +import sys + +# ----------------- +# Command line arguments +# ----------------- + +arg_vals = sys.argv[1:] +opts = [opt for opt in arg_vals if opt.startswith('-')] +args = [arg for arg in arg_vals if not arg.startswith('-')] + +# Name of the last part of the URL of the doc +if '--slug' in opts: + document_slug = args[opts.index('--slug')] +else: + print('Must specify URL slug for document using --slug option') + print('For example, if the permanent URL is "http://rs.tdwg.org/dwc/doc/eco/", the slug is "eco".') + exit() + +# Used as the directory name +if '--dir' in opts: + directory_name = args[opts.index('--dir')] +else: + print('Must specify name of directory containing template and configs using --dir option') + print('For example, if the path to the templates in the rs.tdwg.org repo') + print('is "process/document_metadata_processing/dwc_doc_eco/", the directory name is "dwc_doc_eco".') + exit() + +# "master" for production, something else for development +# Example: First part of branch URL is "https://raw.githubusercontent.com/tdwg/rs.tdwg.org/eco/", branch is "eco". +if '--branch' in opts: + github_branch = args[opts.index('--branch')] +else: + github_branch = 'master' + + +# ----------------- +# Configuration section +# ----------------- + +githubBaseUri = 'https://raw.githubusercontent.com/tdwg/rs.tdwg.org/' + github_branch + '/' + +config_file_path = 'process/document_metadata_processing/' + directory_name + '/' +document_configuration_yaml_file = 'document_configuration.yaml' + +path_of_doc_relative_to_build_dir = '../docs/' + document_slug + '/' + +# Load the document configuration YAML file from its GitHub URL +document_configuration_yaml_url = githubBaseUri + config_file_path + document_configuration_yaml_file +document_configuration_yaml = requests.get(document_configuration_yaml_url).text +document_configuration_yaml = yaml.load(document_configuration_yaml, Loader=yaml.FullLoader) + +# Determine date of the document that is to be turned into the previous document and the version IRI +# of the most recent version of that document. + +# Load versions list from document versions data in the rs.tdwg.org repo and find most recent version. +versions_data_url = githubBaseUri + 'docs-versions/docs-versions.csv' +versions_list_df = pd.read_csv(versions_data_url, na_filter=False) + +# Slice all rows for versions of this document. +matching_versions = versions_list_df[versions_list_df['current_iri']==document_configuration_yaml['current_iri']] +# Sort the matching versions by version IRI in descending order so that the most recent version is first. +matching_versions = matching_versions.sort_values(by=['version_iri'], ascending=[False]) + +# Check for the error condition of there being no matching versions. +if len(matching_versions.index) == 0: + print('There are no versions of this document. Did you run the script to update the document metadata?') + exit() + +# If there is only one row in the matching_versions dataframe (only one version), then the rest of the script should not be run. +if len(matching_versions.index) == 1: + print('There is only one version of this document. No changes are being made to the documents.') + exit() + +# The most recent version is the first row in the dataframe (row 0). + +# Find the column index of the column named "version_iri". +version_iri_column_index = matching_versions.columns.get_loc('version_iri') +most_recent_version_iri = matching_versions.iat[0, version_iri_column_index] +print(most_recent_version_iri) + +# Find the date of the previous version, which is in the second row of the dataframe (row 1). +# Find the column index of the column named "version_issued". +version_iri_column_index = matching_versions.columns.get_loc('version_issued') +previous_version_date = matching_versions.iat[1, version_iri_column_index] +print(previous_version_date) + +# The document to be converted is named "index.md". Its name must be changed to the date of the previous version. +os.rename(path_of_doc_relative_to_build_dir + 'index.md', path_of_doc_relative_to_build_dir + previous_version_date + '.md') + +# Open the renamed file and read its text. +with open(path_of_doc_relative_to_build_dir + previous_version_date + '.md', 'rt') as file_object: + file_text = file_object.read() + +# Insert the replacement version information into the header +replacement_version_metadata_string = '''Replaced by +: <''' + most_recent_version_iri + '''> + +''' + +# Insert the previous version information into the header above the Abstract section. +header = file_text.replace('Abstract\n:', replacement_version_metadata_string + 'Abstract\n:') + +# Write the updated file text to the file. +with open(path_of_doc_relative_to_build_dir + previous_version_date + '.md', 'wt') as file_object: + file_object.write(header) From b64ce5ae4656fdb7fea38ee3037d1908eda0a8bc Mon Sep 17 00:00:00 2001 From: Steve Baskauf Date: Tue, 19 Aug 2025 11:50:35 -0400 Subject: [PATCH 7/9] Update term_versions.csv --- vocabulary/term_versions.csv | 107 +++++++++++++++++++---------------- 1 file changed, 57 insertions(+), 50 deletions(-) diff --git a/vocabulary/term_versions.csv b/vocabulary/term_versions.csv index a336ccd..a5d14bb 100644 --- a/vocabulary/term_versions.csv +++ b/vocabulary/term_versions.csv @@ -1,9 +1,9 @@ iri,term_localName,label,definition,comments,examples,organized_in,issued,status,replaces,rdf_type,term_iri,abcd_equivalence,flags -http://rs.tdwg.org/chrono/terms/version/ChronometricAge-2021-02-21,ChronometricAge,Chronometric Age,An approximation of a temporal position (in the sense conveyed by https://www.w3.org/TR/owl-time/#time:TemporalPosition) that is supported via evidence.,"The age of a specimen and how this age is known, whether by a dating assay, a relative association with dated material, or legacy collections information.",`An age range associated with a specimen derived from an AMS dating assay applied to an oyster shell in the same stratum`; `An age range associated with a specimen derived from a ceramics analysis based on other materials found in the same stratum`; `A maximum age associated with a specimen derived from K-Ar dating applied to a proximal volcanic tuff found stratigraphically below the specimen`; `An age range of a specimen based on its biostratigraphic context`; `An age of a specimen based on what is reported in legacy collections data`.,,2021-02-21,recommended,http://rs.tdwg.org/chrono/terms/version/ChronometricAge-2021-01-26,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/chrono/terms/ChronometricAge,https://terms.tdwg.org/wiki/abcd-efg:StratigraphicAttributions-RadiometricDates,extension +http://rs.tdwg.org/chrono/terms/version/ChronometricAge-2021-02-21,ChronometricAge,Chronometric Age,An approximation of a temporal position (in the sense conveyed by https://www.w3.org/TR/owl-time/#time:TemporalPosition) that is supported via evidence.,"The age of a specimen and how this age is known, whether by a dating assay, a relative association with dated material, or legacy collections information.",`An age range associated with a specimen derived from an AMS dating assay applied to an oyster shell in the same stratum`; `An age range associated with a specimen derived from a ceramics analysis based on other materials found in the same stratum`; `A maximum age associated with a specimen derived from K-Ar dating applied to a proximal volcanic tuff found stratigraphically below the specimen`; `An age range of a specimen based on its biostratigraphic context`; `An age of a specimen based on what is reported in legacy collections data`.,http://rs.tdwg.org/chrono/terms/ChronometricAge,2021-02-21,recommended,http://rs.tdwg.org/chrono/terms/version/ChronometricAge-2021-01-26,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/chrono/terms/ChronometricAge,https://terms.tdwg.org/wiki/abcd-efg:StratigraphicAttributions-RadiometricDates,extension http://rs.tdwg.org/chrono/terms/version/chronometricAgeID-2025-06-12,chronometricAgeID,Chronometric Age ID,An identifier for the set of information associated with a chrono:ChronometricAge.,May be a global unique identifier or an identifier specific to the dataset. This can be used to link this record to another repository where more information about the dataset is shared.,`https://www.canadianarchaeology.ca/samples/70673`,http://rs.tdwg.org/chrono/terms/ChronometricAge,2025-06-12,recommended,http://rs.tdwg.org/chrono/terms/version/chronometricAgeID-2020-09-14,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/chronometricAgeID,not in ABCD, -http://rs.tdwg.org/chrono/terms/version/verbatimChronometricAge-2020-09-14,verbatimChronometricAge,Verbatim Chronometric Age,"The verbatim age for a specimen, whether reported by a dating assay, associated references, or legacy information.","For example, this could be the radiocarbon age as given in an AMS dating report. This could also be simply what is reported as the age of a specimen in legacy collections data.","`27 BC to 14 AD`, `stratigraphically pre-1104`",http://tdwg.org/chrono/terms/ChronometricAge,2020-09-14,recommended,http://zooarchnet.org/dwc/terms/version/verbatimChronometricAge-2018-11-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/verbatimChronometricAge,not in ABCD,extension +http://rs.tdwg.org/chrono/terms/version/verbatimChronometricAge-2020-09-14,verbatimChronometricAge,Verbatim Chronometric Age,"The verbatim age for a specimen, whether reported by a dating assay, associated references, or legacy information.","For example, this could be the radiocarbon age as given in an AMS dating report. This could also be simply what is reported as the age of a specimen in legacy collections data.","`27 BC to 14 AD`, `stratigraphically pre-1104`",http://rs.tdwg.org/chrono/terms/ChronometricAge,2020-09-14,recommended,http://zooarchnet.org/dwc/terms/version/verbatimChronometricAge-2018-11-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/verbatimChronometricAge,not in ABCD,extension http://rs.tdwg.org/chrono/terms/version/chronometricAgeProtocol-2025-06-12,chronometricAgeProtocol,Chronometric Age Protocol,A description of or reference to the methods used to determine the chrono:ChronometricAge.," This term has an equivalent in the chronoiri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.",`radiocarbon AMS`; `K-Ar dates for the lower most marker tuff`; `historic documentation`; `ceramic seriation`,http://rs.tdwg.org/chrono/terms/ChronometricAge,2025-06-12,recommended,http://rs.tdwg.org/chrono/terms/version/chronometricAgeProtocol-2020-11-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/chronometricAgeProtocol,https://terms.tdwg.org/wiki/abcd-efg:StratigraphicAttributions-ChronostratigraphicAttribution-Method, -http://rs.tdwg.org/chrono/terms/version/uncalibratedChronometricAge-2020-09-14,uncalibratedChronometricAge,Uncalibrated Chronometric Age,The output of a dating assay before it is calibrated into an age using a specific conversion protocol.,,"`1510 +/- 25 14C yr BP`, `16.26 Ma +/- 0.016`",http://tdwg.org/chrono/terms/ChronometricAge,2020-09-14,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/uncalibratedChronometricAge,not in ABCD,extension +http://rs.tdwg.org/chrono/terms/version/uncalibratedChronometricAge-2020-09-14,uncalibratedChronometricAge,Uncalibrated Chronometric Age,The output of a dating assay before it is calibrated into an age using a specific conversion protocol.,,"`1510 +/- 25 14C yr BP`, `16.26 Ma +/- 0.016`",http://rs.tdwg.org/chrono/terms/ChronometricAge,2020-09-14,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/uncalibratedChronometricAge,not in ABCD,extension http://rs.tdwg.org/chrono/terms/version/chronometricAgeConversionProtocol-2025-06-12,chronometricAgeConversionProtocol,Chronometric Age Conversion Protocol,"The method used for converting the chrono:uncalibratedChronometricAge into a chronometric age in years, as captured in the chrono:earliestChronometricAge, chrono:earliestChronometricAgeReferenceSystem, chrono:latestChronometricAge, and chrono:latestChronometricAgeReferenceSystem fields.","For example, calibration of conventional radiocarbon age or the currently accepted age range of a cultural or geological period. This term has an equivalent in the chronoiri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.",`INTCAL13`; `sequential 6 phase Bayesian model and IntCal13 calibration`,http://rs.tdwg.org/chrono/terms/ChronometricAge,2025-06-12,recommended,http://rs.tdwg.org/chrono/terms/version/chronometricAgeConversionProtocol-2021-02-02,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/chronometricAgeConversionProtocol,https://terms.tdwg.org/wiki/abcd-efg:StratigraphicAttributions-ChronostratigraphicAttribution-Method, http://rs.tdwg.org/chrono/terms/version/earliestChronometricAge-2025-06-12,earliestChronometricAge,Earliest Chronometric Age,The maximum/earliest/oldest possible age of a specimen as determined by a dating method.,"The expected unit for this field is years. This field, if populated, must have an associated chrono:earliestChronometricAgeReferenceSystem.",`100`,http://rs.tdwg.org/chrono/terms/ChronometricAge,2025-06-12,recommended,http://rs.tdwg.org/chrono/terms/version/earliestChronometricAge-2021-01-26,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/earliestChronometricAge,https://terms.tdwg.org/wiki/abcd-efg:StratigraphicAttributions-ChronostratigraphicAttribution-UpperValue, http://rs.tdwg.org/chrono/terms/version/earliestChronometricAgeReferenceSystem-2025-06-12,earliestChronometricAgeReferenceSystem,Earliest Chronometric Age Reference System,The reference system associated with the chrono:earliestChronometricAge.,"Recommended best practice is to use a controlled vocabulary. This term has an equivalent in the chronoiri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.",`kya`; `mya`; `BP`; `AD`; `BCE`; `ka`; `Ma`; `Ga`,http://rs.tdwg.org/chrono/terms/ChronometricAge,2025-06-12,recommended,http://rs.tdwg.org/chrono/terms/version/earliestChronometricAgeReferenceSystem-2021-01-26,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/earliestChronometricAgeReferenceSystem,not in ABCD, @@ -21,57 +21,64 @@ http://rs.tdwg.org/chrono/terms/version/chronometricAgeRemarks-2025-06-12,chrono http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI-2017-10-06,UseWithIRI,UseWithIRI,The category of terms that are recommended to have an IRI as a value.,A utility class to organize the dwciri: terms.,,http://www.w3.org/2000/01/rdf-schema#Class,2017-10-06,recommended,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,not in ABCD, http://rs.tdwg.org/chrono/iri/version/chronometricAgeConversionProtocol-2021-01-26,chronometricAgeConversionProtocol,Chronometric Age Conversion Protocol (IRI),"The method used to convert the uncalibratedChronometricAge into a chronometric age in years, as captured in maximumChronometricAge, maximumChronometricAgeReferenceSystem, minimumChronometricAge, and minimumChronometricAgeReferenceSystem.",Terms in the chronoiri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2021-01-26,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/iri/chronometricAgeConversionProtocol,not in ABCD,extension http://rs.tdwg.org/chrono/iri/version/chronometricAgeConversionProtocol-2021-02-02,chronometricAgeConversionProtocol,Chronometric Age Conversion Protocol (IRI),"The method used to convert the uncalibratedChronometricAge into a chronometric age in years, as captured in earliestChronometricAge, earliestChronometricAgeReferenceSystem, latestChronometricAge, and latestChronometricAgeReferenceSystem.",Terms in the chronoiri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2021-02-02,superseded,http://rs.tdwg.org/chrono/iri/version/chronometricAgeConversionProtocol-2021-01-26,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/iri/chronometricAgeConversionProtocol,not in ABCD,extension -http://rs.tdwg.org/chrono/iri/version/chronometricAgeConversionProtocol-2025-06-12,chronometricAgeConversionProtocol,Chronometric Age Conversion Protocol (IRI),"The method used to convert the chrono:uncalibratedChronometricAge into a chronometric age in years, as captured in chrono:earliestChronometricAge, chrono:earliestChronometricAgeReferenceSystem, chrono:latestChronometricAge, and chrono:latestChronometricAgeReferenceSystem.",Terms in the chronoiri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2025-06-12,recommended,http://rs.tdwg.org/chrono/iri/version/chronometricAgeConversionProtocol-2021-02-02,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/iri/chronometricAgeConversionProtocol,not in ABCD, +http://rs.tdwg.org/chrono/iri/version/chronometricAgeConversionProtocol-2025-06-12,chronometricAgeConversionProtocol,Chronometric Age Conversion Protocol (IRI),"The method used to convert the chrono:uncalibratedChronometricAge into a chronometric age in years, as captured in chrono:earliestChronometricAge, chrono:earliestChronometricAgeReferenceSystem, chrono:latestChronometricAge, and chrono:latestChronometricAgeReferenceSystem.",Terms in the chronoiri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2025-06-12,superseded,http://rs.tdwg.org/chrono/iri/version/chronometricAgeConversionProtocol-2021-02-02,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/iri/chronometricAgeConversionProtocol,not in ABCD, +http://rs.tdwg.org/chrono/iri/version/chronometricAgeConversionProtocol-2025-07-10,chronometricAgeConversionProtocol,Chronometric Age Conversion Protocol (IRI),"The method used to convert the chrono:uncalibratedChronometricAge into a chronometric age in years, as captured in chrono:earliestChronometricAge, chrono:earliestChronometricAgeReferenceSystem, chrono:latestChronometricAge, and chrono:latestChronometricAgeReferenceSystem.",Terms in the chronoiri: namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2025-07-10,recommended,http://rs.tdwg.org/chrono/iri/version/chronometricAgeConversionProtocol-2025-06-12,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/iri/chronometricAgeConversionProtocol,not in ABCD, http://rs.tdwg.org/chrono/iri/version/chronometricAgeDeterminedBy-2021-01-26,chronometricAgeDeterminedBy,Chronometric Age Determined By (IRI),"A person, group, or organization that determined the ChronometricAge.",Terms in the chronoiri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2021-01-26,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/iri/chronometricAgeDeterminedBy,not in ABCD,extension -http://rs.tdwg.org/chrono/iri/version/chronometricAgeDeterminedBy-2025-06-12,chronometricAgeDeterminedBy,Chronometric Age Determined By (IRI),"A person, group, or organization that determined the chrono:ChronometricAge.",Terms in the chronoiri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2025-06-12,recommended,http://rs.tdwg.org/chrono/iri/version/chronometricAgeDeterminedBy-2021-01-26,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/iri/chronometricAgeDeterminedBy,not in ABCD, +http://rs.tdwg.org/chrono/iri/version/chronometricAgeDeterminedBy-2025-06-12,chronometricAgeDeterminedBy,Chronometric Age Determined By (IRI),"A person, group, or organization that determined the chrono:ChronometricAge.",Terms in the chronoiri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2025-06-12,superseded,http://rs.tdwg.org/chrono/iri/version/chronometricAgeDeterminedBy-2021-01-26,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/iri/chronometricAgeDeterminedBy,not in ABCD, +http://rs.tdwg.org/chrono/iri/version/chronometricAgeDeterminedBy-2025-07-10,chronometricAgeDeterminedBy,Chronometric Age Determined By (IRI),"A person, group, or organization that determined the chrono:ChronometricAge.",Terms in the chronoiri: namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2025-07-10,recommended,http://rs.tdwg.org/chrono/iri/version/chronometricAgeDeterminedBy-2025-06-12,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/iri/chronometricAgeDeterminedBy,not in ABCD, http://rs.tdwg.org/chrono/iri/version/chronometricAgeProtocol-2021-01-26,chronometricAgeProtocol,Chronometric Age Protocol (IRI),A method used to determine the chronometric age.,Terms in the chronoiri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2021-01-26,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/iri/chronometricAgeProtocol,not in ABCD,extension -http://rs.tdwg.org/chrono/iri/version/chronometricAgeProtocol-2025-06-12,chronometricAgeProtocol,Chronometric Age Protocol (IRI),A method used to determine the chrono:ChronometricAge.,Terms in the chronoiri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2025-06-12,recommended,http://rs.tdwg.org/chrono/iri/version/chronometricAgeProtocol-2021-01-26,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/iri/chronometricAgeProtocol,not in ABCD, +http://rs.tdwg.org/chrono/iri/version/chronometricAgeProtocol-2025-06-12,chronometricAgeProtocol,Chronometric Age Protocol (IRI),A method used to determine the chrono:ChronometricAge.,Terms in the chronoiri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2025-06-12,superseded,http://rs.tdwg.org/chrono/iri/version/chronometricAgeProtocol-2021-01-26,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/iri/chronometricAgeProtocol,not in ABCD, +http://rs.tdwg.org/chrono/iri/version/chronometricAgeProtocol-2025-07-10,chronometricAgeProtocol,Chronometric Age Protocol (IRI),A method used to determine the chrono:ChronometricAge.,Terms in the chronoiri: namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2025-07-10,recommended,http://rs.tdwg.org/chrono/iri/version/chronometricAgeProtocol-2025-06-12,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/iri/chronometricAgeProtocol,not in ABCD, http://rs.tdwg.org/chrono/iri/version/chronometricAgeUncertaintyMethod-2021-01-26,chronometricAgeUncertaintyMethod,Chronometric Age Uncertainty Method (IRI),The method used to generate the value of chronometricAgeUncertaintyInYears.,Terms in the chronoiri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2021-01-26,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/iri/chronometricAgeUncertaintyMethod,not in ABCD,extension -http://rs.tdwg.org/chrono/iri/version/chronometricAgeUncertaintyMethod-2025-06-12,chronometricAgeUncertaintyMethod,Chronometric Age Uncertainty Method (IRI),The method used to generate the value of chrono:chronometricAgeUncertaintyInYears.,Terms in the chronoiri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2025-06-12,recommended,http://rs.tdwg.org/chrono/iri/version/chronometricAgeUncertaintyMethod-2021-01-26,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/iri/chronometricAgeUncertaintyMethod,not in ABCD, +http://rs.tdwg.org/chrono/iri/version/chronometricAgeUncertaintyMethod-2025-06-12,chronometricAgeUncertaintyMethod,Chronometric Age Uncertainty Method (IRI),The method used to generate the value of chrono:chronometricAgeUncertaintyInYears.,Terms in the chronoiri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2025-06-12,superseded,http://rs.tdwg.org/chrono/iri/version/chronometricAgeUncertaintyMethod-2021-01-26,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/iri/chronometricAgeUncertaintyMethod,not in ABCD, +http://rs.tdwg.org/chrono/iri/version/chronometricAgeUncertaintyMethod-2025-07-10,chronometricAgeUncertaintyMethod,Chronometric Age Uncertainty Method (IRI),The method used to generate the value of chrono:chronometricAgeUncertaintyInYears.,Terms in the chronoiri: namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2025-07-10,recommended,http://rs.tdwg.org/chrono/iri/version/chronometricAgeUncertaintyMethod-2025-06-12,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/iri/chronometricAgeUncertaintyMethod,not in ABCD, http://rs.tdwg.org/chrono/iri/version/earliestChronometricAgeReferenceSystem-2021-01-26,earliestChronometricAgeReferenceSystem,Earliest Chronometric Age Reference System (IRI),The reference system associated with the earliestChronometricAge.,Terms in the chronoiri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2021-01-26,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/iri/earliestChronometricAgeReferenceSystem,not in ABCD,extension -http://rs.tdwg.org/chrono/iri/version/earliestChronometricAgeReferenceSystem-2025-06-12,earliestChronometricAgeReferenceSystem,Earliest Chronometric Age Reference System (IRI),The reference system associated with the chrono:earliestChronometricAge.,Terms in the chronoiri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2025-06-12,recommended,http://rs.tdwg.org/chrono/iri/version/earliestChronometricAgeReferenceSystem-2021-01-26,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/iri/earliestChronometricAgeReferenceSystem,not in ABCD, +http://rs.tdwg.org/chrono/iri/version/earliestChronometricAgeReferenceSystem-2025-06-12,earliestChronometricAgeReferenceSystem,Earliest Chronometric Age Reference System (IRI),The reference system associated with the chrono:earliestChronometricAge.,Terms in the chronoiri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2025-06-12,superseded,http://rs.tdwg.org/chrono/iri/version/earliestChronometricAgeReferenceSystem-2021-01-26,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/iri/earliestChronometricAgeReferenceSystem,not in ABCD, +http://rs.tdwg.org/chrono/iri/version/earliestChronometricAgeReferenceSystem-2025-07-10,earliestChronometricAgeReferenceSystem,Earliest Chronometric Age Reference System (IRI),The reference system associated with the chrono:earliestChronometricAge.,Terms in the chronoiri: namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2025-07-10,recommended,http://rs.tdwg.org/chrono/iri/version/earliestChronometricAgeReferenceSystem-2025-06-12,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/iri/earliestChronometricAgeReferenceSystem,not in ABCD, http://rs.tdwg.org/chrono/iri/version/latestChronometricAgeReferenceSystem-2021-01-26,latestChronometricAgeReferenceSystem,Latest Chronometric Age Reference System (IRI),The reference system associated with the latestChronometricAge.,Terms in the chronoiri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2021-01-26,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/iri/latestChronometricAgeReferenceSystem,not in ABCD,extension -http://rs.tdwg.org/chrono/iri/version/latestChronometricAgeReferenceSystem-2025-06-12,latestChronometricAgeReferenceSystem,Latest Chronometric Age Reference System (IRI),The reference system associated with the chrono:latestChronometricAge.,Terms in the chronoiri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2025-06-12,recommended,http://rs.tdwg.org/chrono/iri/version/latestChronometricAgeReferenceSystem-2021-01-26,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/iri/latestChronometricAgeReferenceSystem,not in ABCD, +http://rs.tdwg.org/chrono/iri/version/latestChronometricAgeReferenceSystem-2025-06-12,latestChronometricAgeReferenceSystem,Latest Chronometric Age Reference System (IRI),The reference system associated with the chrono:latestChronometricAge.,Terms in the chronoiri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2025-06-12,superseded,http://rs.tdwg.org/chrono/iri/version/latestChronometricAgeReferenceSystem-2021-01-26,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/iri/latestChronometricAgeReferenceSystem,not in ABCD, +http://rs.tdwg.org/chrono/iri/version/latestChronometricAgeReferenceSystem-2025-07-10,latestChronometricAgeReferenceSystem,Latest Chronometric Age Reference System (IRI),The reference system associated with the chrono:latestChronometricAge.,Terms in the chronoiri: namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2025-07-10,recommended,http://rs.tdwg.org/chrono/iri/version/latestChronometricAgeReferenceSystem-2025-06-12,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/iri/latestChronometricAgeReferenceSystem,not in ABCD, http://rs.tdwg.org/chrono/iri/version/materialDated-2021-01-26,materialDated,Material Dated (IRI),The material on which the chronometricAgeProtocol was actually performed.,Terms in the chronoiri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2021-01-26,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/iri/materialDated,not in ABCD,extension -http://rs.tdwg.org/chrono/iri/version/materialDated-2025-06-12,materialDated,Material Dated (IRI),The material on which the chrono:chronometricAgeProtocol was actually performed.,Terms in the chronoiri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2025-06-12,recommended,http://rs.tdwg.org/chrono/iri/version/materialDated-2021-01-26,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/iri/materialDated,not in ABCD, +http://rs.tdwg.org/chrono/iri/version/materialDated-2025-06-12,materialDated,Material Dated (IRI),The material on which the chrono:chronometricAgeProtocol was actually performed.,Terms in the chronoiri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2025-06-12,superseded,http://rs.tdwg.org/chrono/iri/version/materialDated-2021-01-26,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/iri/materialDated,not in ABCD, +http://rs.tdwg.org/chrono/iri/version/materialDated-2025-07-10,materialDated,Material Dated (IRI),The material on which the chrono:chronometricAgeProtocol was actually performed.,Terms in the chronoiri: namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2025-07-10,recommended,http://rs.tdwg.org/chrono/iri/version/materialDated-2025-06-12,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/iri/materialDated,not in ABCD, http://rs.tdwg.org/chrono/terms/version/ChronometricAge-2020-09-14,ChronometricAge,Chronometric Age,The age of a specimen or related materials that is generated from a dating assay.,This is a categorical term (class) to organize the other chronometric age properties and does not ever have values.,A radiocarbon date. A date determined through dendrochronology. A date derived using the potassium-argon method.,,2020-09-14,superseded,http://zooarchnet.org/dwc/terms/version/ChronometricAge-2018-11-08,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/chrono/terms/ChronometricAge,not in ABCD,extension -http://rs.tdwg.org/chrono/terms/version/ChronometricAge-2020-11-17,ChronometricAge,Chronometric Age,The age of a specimen or related materials that is generated from a dating assay.,This is a categorical term (class) to organize the other chronometric age properties and does not ever have values.,,,2020-11-17,superseded,http://rs.tdwg.org/chrono/terms/version/ChronometricAge-2020-09-14,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/chrono/terms/ChronometricAge,https://terms.tdwg.org/wiki/abcd-efg:StratigraphicAttributions-RadiometricDates,extension -http://rs.tdwg.org/chrono/terms/version/ChronometricAge-2021-01-26,ChronometricAge,Chronometric Age,"The age of a specimen and how this age is known, whether by a dating assay, a relative association with dated material, or legacy collections information.",The ChronometricAge extension is to be used only in cases where the collection event is not contemporaneous with the time when the organism was alive in its context. Collection event information can be reported in dwc:eventDate.,`An age range associated with a specimen derived from an AMS dating assay applied to an oyster shell in the same stratum`; `An age range associated with a specimen derived from a ceramics analysis based on other materials found in the same stratum`; `A maximum age associated with a specimen derived from K-Ar dating applied to a proximal volcanic tuff found stratigraphically below the specimen`; `An age range of a specimen based on its biostratigraphic context`; `An age of a specimen based on what is reported in legacy collections data`.,,2021-01-26,superseded,http://rs.tdwg.org/chrono/terms/version/ChronometricAge-2020-11-17,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/chrono/terms/ChronometricAge,https://terms.tdwg.org/wiki/abcd-efg:StratigraphicAttributions-RadiometricDates,extension -http://rs.tdwg.org/chrono/terms/version/chronometricAgeConversionProtocol-2020-09-14,chronometricAgeConversionProtocol,Chronometric Age Conversion Protocol,"The method used to convert the uncalibratedChronometricAge into a chronometric age in years, as captured in maximumChronometricAge, maximumChronometricAgeReferenceSystem, minimumChronometricAge, and minimumChronometricAgeReferenceSystem.","For example, calibration of conventional radiocarbon age or the currently accepted age range of a cultural or geological period.","`INTCAL13`, `sequential 6 phase Bayesian model and IntCal13 calibration`",http://tdwg.org/chrono/terms/ChronometricAge,2020-09-14,superseded,http://zooarchnet.org/dwc/terms/version/verbatimChronometricAgeConversionProtocol-2018-11-08,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/chronometricAgeConversionProtocol,not in ABCD,extension -http://rs.tdwg.org/chrono/terms/version/chronometricAgeConversionProtocol-2020-11-17,chronometricAgeConversionProtocol,Chronometric Age Conversion Protocol,"The method used for converting the uncalibratedChronometricAge into a chronometric age in years, as captured in the maximumChronometricAge, maximumChronometricAgeReferenceSystem, minimumChronometricAge, and minimumChronometricAgeReferenceSystem fields.","For example, calibration of conventional radiocarbon age or the currently accepted age range of a cultural or geological period.","`INTCAL13`, `sequential 6 phase Bayesian model and IntCal13 calibration`",http://tdwg.org/chrono/terms/ChronometricAge,2020-11-17,superseded,http://rs.tdwg.org/chrono/terms/version/chronometricAgeConversionProtocol-2020-09-14,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/chronometricAgeConversionProtocol,https://terms.tdwg.org/wiki/abcd-efg:StratigraphicAttributions-ChronostratigraphicAttribution-Method,extension -http://rs.tdwg.org/chrono/terms/version/chronometricAgeConversionProtocol-2021-02-02,chronometricAgeConversionProtocol,Chronometric Age Conversion Protocol,"The method used for converting the uncalibratedChronometricAge into a chronometric age in years, as captured in the earliestChronometricAge, earliestChronometricAgeReferenceSystem, latestChronometricAge, and latestChronometricAgeReferenceSystem fields.","For example, calibration of conventional radiocarbon age or the currently accepted age range of a cultural or geological period.","`INTCAL13`, `sequential 6 phase Bayesian model and IntCal13 calibration`",http://tdwg.org/chrono/terms/ChronometricAge,2021-02-02,superseded,http://rs.tdwg.org/chrono/terms/version/chronometricAgeConversionProtocol-2020-11-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/chronometricAgeConversionProtocol,https://terms.tdwg.org/wiki/abcd-efg:StratigraphicAttributions-ChronostratigraphicAttribution-Method,extension -http://rs.tdwg.org/chrono/terms/version/chronometricAgeDeterminedBy-2020-10-05,chronometricAgeDeterminedBy,Chronometric Age Determined By,"A list (concatenated and separated) of names of people, groups, or organizations who determined the ChronometricAge.",Recommended best practice is to separate the values in a list with space vertical bar space ( | ).,`Michelle LeFebvre | Neill Wallis`,http://tdwg.org/chrono/terms/ChronometricAge,2020-10-05,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/chronometricAgeDeterminedBy,not in ABCD,extension -http://rs.tdwg.org/chrono/terms/version/chronometricAgeDeterminedBy-2020-11-17,chronometricAgeDeterminedBy,Chronometric Age Determined By,"A list (concatenated and separated) of names of people, groups, or organizations who determined the ChronometricAge.",Recommended best practice is to separate the values in a list with space vertical bar space ( | ).,`Michelle LeFebvre | Niell Wallis`,http://tdwg.org/chrono/terms/ChronometricAge,2020-11-17,superseded,http://rs.tdwg.org/chrono/terms/version/chronometricAgeDeterminedBy-2020-10-05,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/chronometricAgeDeterminedBy,https://terms.tdwg.org/wiki/abcd-efg:StratigraphicAttributions-ChronostratigraphicAttribution-Identifiers,extension -http://rs.tdwg.org/chrono/terms/version/chronometricAgeDeterminedBy-2021-02-02,chronometricAgeDeterminedBy,Chronometric Age Determined By,"A list (concatenated and separated) of names of people, groups, or organizations who determined the ChronometricAge.",Recommended best practice is to separate the values in a list with space vertical bar space ( | ).,`Michelle LeFebvre | Neill Wallis`,http://tdwg.org/chrono/terms/ChronometricAge,2021-02-02,superseded,http://rs.tdwg.org/chrono/terms/version/chronometricAgeDeterminedBy-2020-11-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/chronometricAgeDeterminedBy,https://terms.tdwg.org/wiki/abcd-efg:StratigraphicAttributions-ChronostratigraphicAttribution-Identifiers,extension -http://rs.tdwg.org/chrono/terms/version/chronometricAgeDeterminedDate-2020-10-05,chronometricAgeDeterminedDate,Chronometric Age Determined Date,The date on which the ChronometricAge was determined.,Recommended best practice is to use a date that conforms to ISO 8601-1:2019.,`1963-03-08T14:07-0600` (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC). `2009-02-20T08:40Z` (20 February 2009 8:40am UTC). `2018-08-29T15:19` (3:19pm local time on 29 August 2018). `1809-02-12` (some time during 12 February 1809). `1906-06` (some time in June 1906). `1971` (some time in the year 1971).,http://tdwg.org/chrono/terms/ChronometricAge,2020-10-05,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/chronometricAgeDeterminedDate,not in ABCD,extension -http://rs.tdwg.org/chrono/terms/version/chronometricAgeDeterminedDate-2020-11-17,chronometricAgeDeterminedDate,Chronometric Age Determined Date,The date on which the ChronometricAge was determined.,Recommended best practice is to use a date that conforms to ISO 8601-1:2019.,`1963-03-08T14:07-0600` (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC). `2009-02-20T08:40Z` (20 February 2009 8:40am UTC). `2018-08-29T15:19` (3:19pm local time on 29 August 2018). `1809-02-12` (some time during 12 February 1809). `1906-06` (some time in June 1906). `1971` (some time in the year 1971).,http://tdwg.org/chrono/terms/ChronometricAge,2020-11-17,superseded,http://rs.tdwg.org/chrono/terms/version/chronometricAgeDeterminedDate-2020-10-05,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/chronometricAgeDeterminedDate,https://terms.tdwg.org/wiki/abcd-efg:StratigraphicAttributions-RadiometricDate-AnalysisDateTime,extension -http://rs.tdwg.org/chrono/terms/version/chronometricAgeID-2020-09-14,chronometricAgeID,Chronometric Age ID,An identifier for the set of information associated with a ChronometricAge.,May be a global unique identifier or an identifier specific to the dataset. This can be used to link this record to another repository where more information about the dataset is shared.,`https://www.canadianarchaeology.ca/samples/70673`,http://tdwg.org/chrono/terms/ChronometricAge,2020-09-14,superseded,http://zooarchnet.org/dwc/terms/version/chronometricAgeID-2018-11-08,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/chronometricAgeID,not in ABCD,extension -http://rs.tdwg.org/chrono/terms/version/chronometricAgeProtocol-2020-09-14,chronometricAgeProtocol,Chronometric Age Protocol,A description of or reference to the methods used to determine the chronometric age.,,"`radiocarbon AMS`, `K-Ar dates for the lower most marker tuff`, `historic documentation`, `ceramic seriation`",http://tdwg.org/chrono/terms/ChronometricAge,2020-09-14,superseded,http://zooarchnet.org/dwc/terms/version/chronometricAgeProtocol-2018-11-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/chronometricAgeProtocol,not in ABCD,extension -http://rs.tdwg.org/chrono/terms/version/chronometricAgeProtocol-2020-11-17,chronometricAgeProtocol,Chronometric Age Protocol,A description of or reference to the methods used to determine the chronometric age.,,"`radiocarbon AMS`, `K-Ar dates for the lower most marker tuff`, `historic documentation`, `ceramic seriation`",http://tdwg.org/chrono/terms/ChronometricAge,2020-11-17,superseded,http://rs.tdwg.org/chrono/terms/version/chronometricAgeProtocol-2020-09-14,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/chronometricAgeProtocol,https://terms.tdwg.org/wiki/abcd-efg:StratigraphicAttributions-ChronostratigraphicAttribution-Method,extension -http://rs.tdwg.org/chrono/terms/version/chronometricAgeReferences-2020-09-14,chronometricAgeReferences,Chronometric Age References,"A list (concatenated and separated) of identifiers (publication, bibliographic reference, global unique identifier, URI) of literature associated with the ChronometricAge.",Recommended best practice is to separate the values in a list with space vertical bar space ( | ).,"`Pluckhahn, Thomas J., Neill J. Wallis, and Victor D. Thompson. 2020 The History and Future of Migrationist Explanation in the Archaeology of the Eastern Woodlands: A Review and Case Study of the Woodland Period Gulf Coast. Journal of Archaeological Research. https://doi.org/10.1007/s10814-019-09140-x`",http://tdwg.org/chrono/terms/ChronometricAge,2020-09-14,superseded,http://zooarchnet.org/dwc/terms/version/chronometricAgeReferences-2018-11-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/chronometricAgeReferences,not in ABCD,extension -http://rs.tdwg.org/chrono/terms/version/chronometricAgeReferences-2020-11-17,chronometricAgeReferences,Chronometric Age References,"A list (concatenated and separated) of identifiers (publication, bibliographic reference, global unique identifier, URI) of literature associated with the ChronometricAge.",Recommended best practice is to separate the values in a list with space vertical bar space ( | ).,"`Pluckhahn, Thomas J., Neill J. Wallis, and Victor D. Thompson. 2020 The History and Future of Migrationist Explanation in the Archaeology of the Eastern Woodlands: A Review and Case Study of the Woodland Period Gulf Coast. Journal of Archaeological Research. https://doi.org/10.1007/s10814-019-09140-x`",http://tdwg.org/chrono/terms/ChronometricAge,2020-11-17,superseded,http://rs.tdwg.org/chrono/terms/version/chronometricAgeReferences-2020-09-14,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/chronometricAgeReferences,https://terms.tdwg.org/wiki/abcd-efg:StratigraphicAttributions-ChronostratigraphicAttribution-MeasurementOrFactReference,extension -http://rs.tdwg.org/chrono/terms/version/chronometricAgeRemarks-2020-09-14,chronometricAgeRemarks,Chronometric Age Remarks,Notes or comments about the ChronometricAge.,,"`Beta Analytic number: 323913 | One of the Crassostrea virginica right valve specimens from North Midden Feature 17 was chosen for AMS dating, but it is unclear exactly which specimen it was.`",http://tdwg.org/chrono/terms/ChronometricAge,2020-09-14,superseded,http://zooarchnet.org/dwc/terms/version/chronometricAgeRemarks-2018-11-08,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/chronometricAgeRemarks,not in ABCD,extension -http://rs.tdwg.org/chrono/terms/version/chronometricAgeRemarks-2020-11-17,chronometricAgeRemarks,Chronometric Age Remarks,Notes or comments about the ChronometricAge.,,"`Beta Analytic number: 323913 | One of the Crassostrea virginica right valve specimens from North Midden Feature 17 was chosen for AMS dating, but it is unclear exactly which specimen it was.`",http://tdwg.org/chrono/terms/ChronometricAge,2020-11-17,superseded,http://rs.tdwg.org/chrono/terms/version/chronometricAgeRemarks-2020-09-14,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/chronometricAgeRemarks,https://terms.tdwg.org/wiki/abcd-efg:UnitStratigraphicDetermination-DatingComment,extension -http://rs.tdwg.org/chrono/terms/version/chronometricAgeUncertaintyInYears-2020-09-14,chronometricAgeUncertaintyInYears,Chronometric Age Uncertainty In Years,The temporal uncertainty of the maximumChronometricAge and minimumChronometicAge in years.,This is the +/- number for the age in years. The expected unit for this field is years.,`100`,http://tdwg.org/chrono/terms/ChronometricAge,2020-09-14,superseded,http://zooarchnet.org/dwc/terms/version/chronometricAgeUncertaintyInYears-2018-11-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/chronometricAgeUncertaintyInYears,not in ABCD,extension -http://rs.tdwg.org/chrono/terms/version/chronometricAgeUncertaintyInYears-2020-11-17,chronometricAgeUncertaintyInYears,Chronometric Age Uncertainty In Years,The temporal uncertainty of the maximumChronometricAge and minimumChronometicAge in years.,This is the +/- number for the age in years. The expected unit for this field is years.,`100`,http://tdwg.org/chrono/terms/ChronometricAge,2020-11-17,superseded,http://rs.tdwg.org/chrono/terms/version/chronometricAgeUncertaintyInYears-2020-09-14,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/chronometricAgeUncertaintyInYears,https://terms.tdwg.org/wiki/abcd-efg:UnitStratigraphicDetermination-ChronostratigraphicAttribution-Accuracy,extension -http://rs.tdwg.org/chrono/terms/version/chronometricAgeUncertaintyInYears-2021-02-02,chronometricAgeUncertaintyInYears,Chronometric Age Uncertainty In Years,The temporal uncertainty of the earliestChronometricAge and latestChronometicAge in years.,The expected unit for this field is years. The value in this field is number of years before and after the values given in the earliest and latest chronometric age fields within which the actual values are estimated to be.,`100`,http://tdwg.org/chrono/terms/ChronometricAge,2021-02-02,superseded,http://rs.tdwg.org/chrono/terms/version/chronometricAgeUncertaintyInYears-2020-11-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/chronometricAgeUncertaintyInYears,https://terms.tdwg.org/wiki/abcd-efg:UnitStratigraphicDetermination-ChronostratigraphicAttribution-Accuracy,extension -http://rs.tdwg.org/chrono/terms/version/chronometricAgeUncertaintyMethod-2020-09-14,chronometricAgeUncertaintyMethod,Chronometric Age Uncertainty Method,The method used to generate the value of chronometricAgeUncertaintyInYears.,,"`2-sigma calibrated range`, `Half of 95% confidence interval`",http://tdwg.org/chrono/terms/ChronometricAge,2020-09-14,superseded,http://zooarchnet.org/dwc/terms/version/chronometricAgeUncertaintyMethod-2018-11-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/chronometricAgeUncertaintyMethod,not in ABCD,extension -http://rs.tdwg.org/chrono/terms/version/chronometricAgeUncertaintyMethod-2020-11-17,chronometricAgeUncertaintyMethod,Chronometric Age Uncertainty Method,The method used to generate the value of chronometricAgeUncertaintyInYears.,,"`2-sigma calibrated range`, `Half of 95% confidence interval`",http://tdwg.org/chrono/terms/ChronometricAge,2020-11-17,superseded,http://rs.tdwg.org/chrono/terms/version/chronometricAgeUncertaintyMethod-2020-09-14,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/chronometricAgeUncertaintyMethod,https://terms.tdwg.org/wiki/abcd-efg:StratigraphicAttributions-ChronostratigraphicAttribution-Method,extension -http://rs.tdwg.org/chrono/terms/version/earliestChronometricAge-2021-01-26,earliestChronometricAge,Earliest Chronometric Age,The maximum/earliest/oldest possible age of a specimen as determined by a dating method.,"The expected unit for this field is years. This field, if populated, must have an associated earliestChronometricAgeReferenceSystem.",100,http://tdwg.org/chrono/terms/ChronometricAge,2021-01-26,superseded,http://rs.tdwg.org/chrono/terms/version/maximumChronometricAge-2020-11-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/earliestChronometricAge,https://terms.tdwg.org/wiki/abcd-efg:StratigraphicAttributions-ChronostratigraphicAttribution-UpperValue,extension -http://rs.tdwg.org/chrono/terms/version/earliestChronometricAgeReferenceSystem-2021-01-26,earliestChronometricAgeReferenceSystem,Earliest Chronometric Age Reference System,The reference system associated with the earliestChronometricAge.,Recommended best practice is to use a controlled vocabulary.,"`kya`,`mya`,`BP`,`AD`,`BCE`,`ka`,`Ma`,`Ga`",http://tdwg.org/chrono/terms/ChronometricAge,2021-01-26,superseded,http://rs.tdwg.org/chrono/terms/version/maximumChronometricAgeReferenceSystem-2020-11-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/earliestChronometricAgeReferenceSystem,not in ABCD,extension -http://rs.tdwg.org/chrono/terms/version/latestChronometricAge-2021-01-26,latestChronometricAge,Latest Chronometric Age,The minimum/latest/youngest possible age of a specimen as determined by a dating method.,"The expected unit for this field is years. This field, if populated, must have an associated latestChronometricAgeReferenceSystem.",27,http://tdwg.org/chrono/terms/ChronometricAge,2021-01-26,superseded,http://rs.tdwg.org/chrono/terms/version/minimumChronometricAge-2020-11-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/latestChronometricAge,https://terms.tdwg.org/wiki/abcd-efg:UnitStratigraphicDetermination-ChronostratigraphicAttribution-LowerValue,extension -http://rs.tdwg.org/chrono/terms/version/latestChronometricAgeReferenceSystem-2021-01-26,latestChronometricAgeReferenceSystem,Latest Chronometric Age Reference System,The reference system associated with the latestChronometricAge.,Recommended best practice is to use a controlled vocabulary.,"`kya`,`mya`,`BP`,`AD`,`BCE`,`ka`,`Ma`,`Ga`",http://tdwg.org/chrono/terms/ChronometricAge,2021-01-26,superseded,http://rs.tdwg.org/chrono/terms/version/minimumChronometricAgeReferenceSystem-2020-11-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/latestChronometricAgeReferenceSystem,not in ABCD,extension -http://rs.tdwg.org/chrono/terms/version/materialDated-2020-09-14,materialDated,Material Dated,"A description of the material on which the chronometricAgeProtocol was actually performed, if known.",,"`Double Tuff`, `Charcoal found in Stratum V`, `charred wood`, `tooth`",http://tdwg.org/chrono/terms/ChronometricAge,2020-09-14,superseded,http://zooarchnet.org/dwc/terms/version/materialDated-2018-11-08,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/materialDated,not in ABCD,extension -http://rs.tdwg.org/chrono/terms/version/materialDated-2020-11-17,materialDated,Material Dated,"A description of the material on which the chronometricAgeProtocol was actually performed, if known.",,"`Double Tuff`, `Charcoal found in Stratum V`, `charred wood`, `tooth`",http://tdwg.org/chrono/terms/ChronometricAge,2020-11-17,superseded,http://rs.tdwg.org/chrono/terms/version/materialDated-2020-09-14,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/materialDated,https://terms.tdwg.org/wiki/abcd-efg:UnitStratigraphicDetermination-MaterialDated,extension -http://rs.tdwg.org/chrono/terms/version/materialDatedID-2020-09-14,materialDatedID,Material Dated ID,"An identifier for the material on which the chronometricAgeProtocol was performed, if applicable.",,"`dwc:occurrenceID: 702b306d-f167-44d0-a5c9-890ece2b8839`, `https://www.idigbio.org/portal/records/e1438058-c8b9-418e-998e-1e497a3bcec4`",http://tdwg.org/chrono/terms/ChronometricAge,2020-09-14,superseded,http://zooarchnet.org/dwc/terms/version/materialDatedID-2018-11-08,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/materialDatedID,not in ABCD,extension -http://rs.tdwg.org/chrono/terms/version/materialDatedID-2021-01-26,materialDatedID,Material Dated ID,"An identifier for the material on which the chronometricAgeProtocol was performed, if applicable.",,"`dwc:occurrenceID: 702b306d-f167-44d0-a5c9-890ece2b8839`, `https://www.idigbio.org/portal/records/e1438058-c8b9-418e-998e-1e497a3bcec4`",http://tdwg.org/chrono/terms/ChronometricAge,2021-01-26,superseded,http://rs.tdwg.org/chrono/terms/version/materialDatedID-2020-09-14,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/materialDatedID,not in ABCD,extension -http://rs.tdwg.org/chrono/terms/version/materialDatedID-2021-02-05,materialDatedID,Material Dated ID,"An identifier for the MaterialSample on which the chronometricAgeProtocol was performed, if applicable.",,`dwc:materialSampleID: https://www.ebi.ac.uk/metagenomics/samples/SRS1930158`,http://tdwg.org/chrono/terms/ChronometricAge,2021-02-05,superseded,http://rs.tdwg.org/chrono/terms/version/materialDatedID-2021-01-26,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/materialDatedID,not in ABCD,extension -http://rs.tdwg.org/chrono/terms/version/materialDatedRelationship-2021-01-26,materialDatedRelationship,Material Dated Relationship,"The relationship of the materialDated to the subject of the ChronometricAge record, from which the ChronometricAge of the subject is inferred.",Recommended best practice is to use a controlled vocabulary.,"`sameAs` (cases where the subject material was completely destructively subsampled to get the ChronometricAge), `subsampleOf` (cases where part of the original specimen was extracted as the material used to determine the ChronometricAge), `inContextWith` (cases where the ChronometricAge is inferred from materialDated, such as sediments or cultural objects, in related temporal context),`stratigraphicallyCorrelatedWith` (cases where the ChronometricAge is inferred from materialDated in a stratigraphically correlated context)",http://tdwg.org/chrono/terms/ChronometricAge,2021-01-26,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/materialDatedRelationship,not in ABCD,extension -http://rs.tdwg.org/chrono/terms/version/maximumChronometricAge-2020-09-14,maximumChronometricAge,Maximum Chronometric Age,Upper limit for the age of a specimen as determined by a dating method.,"The expected unit for this field is years. This field, if populated, must have an associated maximumChronometricAgeReferenceSystem.",`27`,http://tdwg.org/chrono/terms/ChronometricAge,2020-09-14,superseded,http://zooarchnet.org/dwc/terms/version/maximumChronometricAge-2018-11-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/maximumChronometricAge,not in ABCD,extension -http://rs.tdwg.org/chrono/terms/version/maximumChronometricAge-2020-11-17,maximumChronometricAge,Maximum Chronometric Age,Upper limit for the age of a specimen as determined by a dating method.,"The expected unit for this field is years. This field, if populated, must have an associated maximumChronometricAgeReferenceSystem.",`27`,http://tdwg.org/chrono/terms/ChronometricAge,2020-11-17,deprecated,http://rs.tdwg.org/chrono/terms/version/maximumChronometricAge-2020-09-14,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/maximumChronometricAge,https://terms.tdwg.org/wiki/abcd-efg:StratigraphicAttributions-ChronostratigraphicAttribution-UpperValue,extension -http://rs.tdwg.org/chrono/terms/version/maximumChronometricAgeReferenceSystem-2020-09-14,maximumChronometricAgeReferenceSystem,Maximum Chronometric Age Reference System,The reference system associated with the maximumChronometricAge.,,"`kya`,`mya`,`BP`,`AD`,`BCE`",http://tdwg.org/chrono/terms/ChronometricAge,2020-09-14,superseded,http://zooarchnet.org/dwc/terms/version/maximumChronometricAgeReferenceSystem-2018-11-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/maximumChronometricAgeReferenceSystem,not in ABCD,extension -http://rs.tdwg.org/chrono/terms/version/maximumChronometricAgeReferenceSystem-2020-11-17,maximumChronometricAgeReferenceSystem,Maximum Chronometric Age Reference System,The reference system associated with the maximumChronometricAge.,,"`kya`,`mya`,`BP`,`AD`,`BCE`",http://tdwg.org/chrono/terms/ChronometricAge,2020-11-17,deprecated,http://rs.tdwg.org/chrono/terms/version/maximumChronometricAgeReferenceSystem-2020-09-14,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/maximumChronometricAgeReferenceSystem,https://terms.tdwg.org/wiki/abcd-efg:UnitStratigraphicDetermination-TimeUnit,extension -http://rs.tdwg.org/chrono/terms/version/minimumChronometricAge-2020-09-14,minimumChronometricAge,Minimum Chronometric Age,Lower limit for the age of a specimen as determined by a dating method.,"The expected unit for this field is years. This field, if populated, must have an associated minimumChronometricAgeReferenceSystem.",`100`,http://tdwg.org/chrono/terms/ChronometricAge,2020-09-14,superseded,http://zooarchnet.org/dwc/terms/version/minimumChronometricAge-2018-11-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/minimumChronometricAge,not in ABCD,extension -http://rs.tdwg.org/chrono/terms/version/minimumChronometricAge-2020-11-17,minimumChronometricAge,Minimum Chronometric Age,Lower limit for the age of a specimen as determined by a dating method.,"The expected unit for this field is years. This field, if populated, must have an associated maximumChronometricAgeReferenceSystem.",`100`,http://tdwg.org/chrono/terms/ChronometricAge,2020-11-17,deprecated,http://rs.tdwg.org/chrono/terms/version/minimumChronometricAge-2020-09-14,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/minimumChronometricAge,https://terms.tdwg.org/wiki/abcd-efg:UnitStratigraphicDetermination-ChronostratigraphicAttribution-LowerValue,extension -http://rs.tdwg.org/chrono/terms/version/minimumChronometricAgeReferenceSystem-2020-09-14,minimumChronometricAgeReferenceSystem,Minimum Chronometric Age Reference System,The reference system associated with the minimumChronometricAge.,,"`kya`,`mya`,`BP`,`AD`,`BCE`",http://tdwg.org/chrono/terms/ChronometricAge,2020-09-14,superseded,http://zooarchnet.org/dwc/terms/version/minimumChronometricAgeReferenceSystem-2018-11-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/minimumChronometricAgeReferenceSystem,not in ABCD,extension -http://rs.tdwg.org/chrono/terms/version/minimumChronometricAgeReferenceSystem-2020-11-17,minimumChronometricAgeReferenceSystem,Minimum Chronometric Age Reference System,The reference system associated with the minimumChronometricAge.,,"`kya`,`mya`,`BP`,`AD`,`BCE`",http://tdwg.org/chrono/terms/ChronometricAge,2020-11-17,deprecated,http://rs.tdwg.org/chrono/terms/version/minimumChronometricAgeReferenceSystem-2020-09-14,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/minimumChronometricAgeReferenceSystem,https://terms.tdwg.org/wiki/abcd-efg:UnitStratigraphicDetermination-TimeUnit,extension +http://rs.tdwg.org/chrono/terms/version/ChronometricAge-2020-11-17,ChronometricAge,Chronometric Age,The age of a specimen or related materials that is generated from a dating assay.,This is a categorical term (class) to organize the other chronometric age properties and does not ever have values.,,http://rs.tdwg.org/chrono/terms/ChronometricAge,2020-11-17,superseded,http://rs.tdwg.org/chrono/terms/version/ChronometricAge-2020-09-14,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/chrono/terms/ChronometricAge,https://terms.tdwg.org/wiki/abcd-efg:StratigraphicAttributions-RadiometricDates,extension +http://rs.tdwg.org/chrono/terms/version/ChronometricAge-2021-01-26,ChronometricAge,Chronometric Age,"The age of a specimen and how this age is known, whether by a dating assay, a relative association with dated material, or legacy collections information.",The ChronometricAge extension is to be used only in cases where the collection event is not contemporaneous with the time when the organism was alive in its context. Collection event information can be reported in dwc:eventDate.,`An age range associated with a specimen derived from an AMS dating assay applied to an oyster shell in the same stratum`; `An age range associated with a specimen derived from a ceramics analysis based on other materials found in the same stratum`; `A maximum age associated with a specimen derived from K-Ar dating applied to a proximal volcanic tuff found stratigraphically below the specimen`; `An age range of a specimen based on its biostratigraphic context`; `An age of a specimen based on what is reported in legacy collections data`.,http://rs.tdwg.org/chrono/terms/ChronometricAge,2021-01-26,superseded,http://rs.tdwg.org/chrono/terms/version/ChronometricAge-2020-11-17,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/chrono/terms/ChronometricAge,https://terms.tdwg.org/wiki/abcd-efg:StratigraphicAttributions-RadiometricDates,extension +http://rs.tdwg.org/chrono/terms/version/chronometricAgeConversionProtocol-2020-09-14,chronometricAgeConversionProtocol,Chronometric Age Conversion Protocol,"The method used to convert the uncalibratedChronometricAge into a chronometric age in years, as captured in maximumChronometricAge, maximumChronometricAgeReferenceSystem, minimumChronometricAge, and minimumChronometricAgeReferenceSystem.","For example, calibration of conventional radiocarbon age or the currently accepted age range of a cultural or geological period.","`INTCAL13`, `sequential 6 phase Bayesian model and IntCal13 calibration`",http://rs.tdwg.org/chrono/terms/ChronometricAge,2020-09-14,superseded,http://zooarchnet.org/dwc/terms/version/verbatimChronometricAgeConversionProtocol-2018-11-08,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/chronometricAgeConversionProtocol,not in ABCD,extension +http://rs.tdwg.org/chrono/terms/version/chronometricAgeConversionProtocol-2020-11-17,chronometricAgeConversionProtocol,Chronometric Age Conversion Protocol,"The method used for converting the uncalibratedChronometricAge into a chronometric age in years, as captured in the maximumChronometricAge, maximumChronometricAgeReferenceSystem, minimumChronometricAge, and minimumChronometricAgeReferenceSystem fields.","For example, calibration of conventional radiocarbon age or the currently accepted age range of a cultural or geological period.","`INTCAL13`, `sequential 6 phase Bayesian model and IntCal13 calibration`",http://rs.tdwg.org/chrono/terms/ChronometricAge,2020-11-17,superseded,http://rs.tdwg.org/chrono/terms/version/chronometricAgeConversionProtocol-2020-09-14,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/chronometricAgeConversionProtocol,https://terms.tdwg.org/wiki/abcd-efg:StratigraphicAttributions-ChronostratigraphicAttribution-Method,extension +http://rs.tdwg.org/chrono/terms/version/chronometricAgeConversionProtocol-2021-02-02,chronometricAgeConversionProtocol,Chronometric Age Conversion Protocol,"The method used for converting the uncalibratedChronometricAge into a chronometric age in years, as captured in the earliestChronometricAge, earliestChronometricAgeReferenceSystem, latestChronometricAge, and latestChronometricAgeReferenceSystem fields.","For example, calibration of conventional radiocarbon age or the currently accepted age range of a cultural or geological period.","`INTCAL13`, `sequential 6 phase Bayesian model and IntCal13 calibration`",http://rs.tdwg.org/chrono/terms/ChronometricAge,2021-02-02,superseded,http://rs.tdwg.org/chrono/terms/version/chronometricAgeConversionProtocol-2020-11-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/chronometricAgeConversionProtocol,https://terms.tdwg.org/wiki/abcd-efg:StratigraphicAttributions-ChronostratigraphicAttribution-Method,extension +http://rs.tdwg.org/chrono/terms/version/chronometricAgeDeterminedBy-2020-10-05,chronometricAgeDeterminedBy,Chronometric Age Determined By,"A list (concatenated and separated) of names of people, groups, or organizations who determined the ChronometricAge.",Recommended best practice is to separate the values in a list with space vertical bar space ( | ).,`Michelle LeFebvre | Neill Wallis`,http://rs.tdwg.org/chrono/terms/ChronometricAge,2020-10-05,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/chronometricAgeDeterminedBy,not in ABCD,extension +http://rs.tdwg.org/chrono/terms/version/chronometricAgeDeterminedBy-2020-11-17,chronometricAgeDeterminedBy,Chronometric Age Determined By,"A list (concatenated and separated) of names of people, groups, or organizations who determined the ChronometricAge.",Recommended best practice is to separate the values in a list with space vertical bar space ( | ).,`Michelle LeFebvre | Niell Wallis`,http://rs.tdwg.org/chrono/terms/ChronometricAge,2020-11-17,superseded,http://rs.tdwg.org/chrono/terms/version/chronometricAgeDeterminedBy-2020-10-05,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/chronometricAgeDeterminedBy,https://terms.tdwg.org/wiki/abcd-efg:StratigraphicAttributions-ChronostratigraphicAttribution-Identifiers,extension +http://rs.tdwg.org/chrono/terms/version/chronometricAgeDeterminedBy-2021-02-02,chronometricAgeDeterminedBy,Chronometric Age Determined By,"A list (concatenated and separated) of names of people, groups, or organizations who determined the ChronometricAge.",Recommended best practice is to separate the values in a list with space vertical bar space ( | ).,`Michelle LeFebvre | Neill Wallis`,http://rs.tdwg.org/chrono/terms/ChronometricAge,2021-02-02,superseded,http://rs.tdwg.org/chrono/terms/version/chronometricAgeDeterminedBy-2020-11-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/chronometricAgeDeterminedBy,https://terms.tdwg.org/wiki/abcd-efg:StratigraphicAttributions-ChronostratigraphicAttribution-Identifiers,extension +http://rs.tdwg.org/chrono/terms/version/chronometricAgeDeterminedDate-2020-10-05,chronometricAgeDeterminedDate,Chronometric Age Determined Date,The date on which the ChronometricAge was determined.,Recommended best practice is to use a date that conforms to ISO 8601-1:2019.,`1963-03-08T14:07-0600` (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC). `2009-02-20T08:40Z` (20 February 2009 8:40am UTC). `2018-08-29T15:19` (3:19pm local time on 29 August 2018). `1809-02-12` (some time during 12 February 1809). `1906-06` (some time in June 1906). `1971` (some time in the year 1971).,http://rs.tdwg.org/chrono/terms/ChronometricAge,2020-10-05,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/chronometricAgeDeterminedDate,not in ABCD,extension +http://rs.tdwg.org/chrono/terms/version/chronometricAgeDeterminedDate-2020-11-17,chronometricAgeDeterminedDate,Chronometric Age Determined Date,The date on which the ChronometricAge was determined.,Recommended best practice is to use a date that conforms to ISO 8601-1:2019.,`1963-03-08T14:07-0600` (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC). `2009-02-20T08:40Z` (20 February 2009 8:40am UTC). `2018-08-29T15:19` (3:19pm local time on 29 August 2018). `1809-02-12` (some time during 12 February 1809). `1906-06` (some time in June 1906). `1971` (some time in the year 1971).,http://rs.tdwg.org/chrono/terms/ChronometricAge,2020-11-17,superseded,http://rs.tdwg.org/chrono/terms/version/chronometricAgeDeterminedDate-2020-10-05,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/chronometricAgeDeterminedDate,https://terms.tdwg.org/wiki/abcd-efg:StratigraphicAttributions-RadiometricDate-AnalysisDateTime,extension +http://rs.tdwg.org/chrono/terms/version/chronometricAgeID-2020-09-14,chronometricAgeID,Chronometric Age ID,An identifier for the set of information associated with a ChronometricAge.,May be a global unique identifier or an identifier specific to the dataset. This can be used to link this record to another repository where more information about the dataset is shared.,`https://www.canadianarchaeology.ca/samples/70673`,http://rs.tdwg.org/chrono/terms/ChronometricAge,2020-09-14,superseded,http://zooarchnet.org/dwc/terms/version/chronometricAgeID-2018-11-08,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/chronometricAgeID,not in ABCD,extension +http://rs.tdwg.org/chrono/terms/version/chronometricAgeProtocol-2020-09-14,chronometricAgeProtocol,Chronometric Age Protocol,A description of or reference to the methods used to determine the chronometric age.,,"`radiocarbon AMS`, `K-Ar dates for the lower most marker tuff`, `historic documentation`, `ceramic seriation`",http://rs.tdwg.org/chrono/terms/ChronometricAge,2020-09-14,superseded,http://zooarchnet.org/dwc/terms/version/chronometricAgeProtocol-2018-11-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/chronometricAgeProtocol,not in ABCD,extension +http://rs.tdwg.org/chrono/terms/version/chronometricAgeProtocol-2020-11-17,chronometricAgeProtocol,Chronometric Age Protocol,A description of or reference to the methods used to determine the chronometric age.,,"`radiocarbon AMS`, `K-Ar dates for the lower most marker tuff`, `historic documentation`, `ceramic seriation`",http://rs.tdwg.org/chrono/terms/ChronometricAge,2020-11-17,superseded,http://rs.tdwg.org/chrono/terms/version/chronometricAgeProtocol-2020-09-14,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/chronometricAgeProtocol,https://terms.tdwg.org/wiki/abcd-efg:StratigraphicAttributions-ChronostratigraphicAttribution-Method,extension +http://rs.tdwg.org/chrono/terms/version/chronometricAgeReferences-2020-09-14,chronometricAgeReferences,Chronometric Age References,"A list (concatenated and separated) of identifiers (publication, bibliographic reference, global unique identifier, URI) of literature associated with the ChronometricAge.",Recommended best practice is to separate the values in a list with space vertical bar space ( | ).,"`Pluckhahn, Thomas J., Neill J. Wallis, and Victor D. Thompson. 2020 The History and Future of Migrationist Explanation in the Archaeology of the Eastern Woodlands: A Review and Case Study of the Woodland Period Gulf Coast. Journal of Archaeological Research. https://doi.org/10.1007/s10814-019-09140-x`",http://rs.tdwg.org/chrono/terms/ChronometricAge,2020-09-14,superseded,http://zooarchnet.org/dwc/terms/version/chronometricAgeReferences-2018-11-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/chronometricAgeReferences,not in ABCD,extension +http://rs.tdwg.org/chrono/terms/version/chronometricAgeReferences-2020-11-17,chronometricAgeReferences,Chronometric Age References,"A list (concatenated and separated) of identifiers (publication, bibliographic reference, global unique identifier, URI) of literature associated with the ChronometricAge.",Recommended best practice is to separate the values in a list with space vertical bar space ( | ).,"`Pluckhahn, Thomas J., Neill J. Wallis, and Victor D. Thompson. 2020 The History and Future of Migrationist Explanation in the Archaeology of the Eastern Woodlands: A Review and Case Study of the Woodland Period Gulf Coast. Journal of Archaeological Research. https://doi.org/10.1007/s10814-019-09140-x`",http://rs.tdwg.org/chrono/terms/ChronometricAge,2020-11-17,superseded,http://rs.tdwg.org/chrono/terms/version/chronometricAgeReferences-2020-09-14,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/chronometricAgeReferences,https://terms.tdwg.org/wiki/abcd-efg:StratigraphicAttributions-ChronostratigraphicAttribution-MeasurementOrFactReference,extension +http://rs.tdwg.org/chrono/terms/version/chronometricAgeRemarks-2020-09-14,chronometricAgeRemarks,Chronometric Age Remarks,Notes or comments about the ChronometricAge.,,"`Beta Analytic number: 323913 | One of the Crassostrea virginica right valve specimens from North Midden Feature 17 was chosen for AMS dating, but it is unclear exactly which specimen it was.`",http://rs.tdwg.org/chrono/terms/ChronometricAge,2020-09-14,superseded,http://zooarchnet.org/dwc/terms/version/chronometricAgeRemarks-2018-11-08,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/chronometricAgeRemarks,not in ABCD,extension +http://rs.tdwg.org/chrono/terms/version/chronometricAgeRemarks-2020-11-17,chronometricAgeRemarks,Chronometric Age Remarks,Notes or comments about the ChronometricAge.,,"`Beta Analytic number: 323913 | One of the Crassostrea virginica right valve specimens from North Midden Feature 17 was chosen for AMS dating, but it is unclear exactly which specimen it was.`",http://rs.tdwg.org/chrono/terms/ChronometricAge,2020-11-17,superseded,http://rs.tdwg.org/chrono/terms/version/chronometricAgeRemarks-2020-09-14,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/chronometricAgeRemarks,https://terms.tdwg.org/wiki/abcd-efg:UnitStratigraphicDetermination-DatingComment,extension +http://rs.tdwg.org/chrono/terms/version/chronometricAgeUncertaintyInYears-2020-09-14,chronometricAgeUncertaintyInYears,Chronometric Age Uncertainty In Years,The temporal uncertainty of the maximumChronometricAge and minimumChronometicAge in years.,This is the +/- number for the age in years. The expected unit for this field is years.,`100`,http://rs.tdwg.org/chrono/terms/ChronometricAge,2020-09-14,superseded,http://zooarchnet.org/dwc/terms/version/chronometricAgeUncertaintyInYears-2018-11-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/chronometricAgeUncertaintyInYears,not in ABCD,extension +http://rs.tdwg.org/chrono/terms/version/chronometricAgeUncertaintyInYears-2020-11-17,chronometricAgeUncertaintyInYears,Chronometric Age Uncertainty In Years,The temporal uncertainty of the maximumChronometricAge and minimumChronometicAge in years.,This is the +/- number for the age in years. The expected unit for this field is years.,`100`,http://rs.tdwg.org/chrono/terms/ChronometricAge,2020-11-17,superseded,http://rs.tdwg.org/chrono/terms/version/chronometricAgeUncertaintyInYears-2020-09-14,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/chronometricAgeUncertaintyInYears,https://terms.tdwg.org/wiki/abcd-efg:UnitStratigraphicDetermination-ChronostratigraphicAttribution-Accuracy,extension +http://rs.tdwg.org/chrono/terms/version/chronometricAgeUncertaintyInYears-2021-02-02,chronometricAgeUncertaintyInYears,Chronometric Age Uncertainty In Years,The temporal uncertainty of the earliestChronometricAge and latestChronometicAge in years.,The expected unit for this field is years. The value in this field is number of years before and after the values given in the earliest and latest chronometric age fields within which the actual values are estimated to be.,`100`,http://rs.tdwg.org/chrono/terms/ChronometricAge,2021-02-02,superseded,http://rs.tdwg.org/chrono/terms/version/chronometricAgeUncertaintyInYears-2020-11-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/chronometricAgeUncertaintyInYears,https://terms.tdwg.org/wiki/abcd-efg:UnitStratigraphicDetermination-ChronostratigraphicAttribution-Accuracy,extension +http://rs.tdwg.org/chrono/terms/version/chronometricAgeUncertaintyMethod-2020-09-14,chronometricAgeUncertaintyMethod,Chronometric Age Uncertainty Method,The method used to generate the value of chronometricAgeUncertaintyInYears.,,"`2-sigma calibrated range`, `Half of 95% confidence interval`",http://rs.tdwg.org/chrono/terms/ChronometricAge,2020-09-14,superseded,http://zooarchnet.org/dwc/terms/version/chronometricAgeUncertaintyMethod-2018-11-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/chronometricAgeUncertaintyMethod,not in ABCD,extension +http://rs.tdwg.org/chrono/terms/version/chronometricAgeUncertaintyMethod-2020-11-17,chronometricAgeUncertaintyMethod,Chronometric Age Uncertainty Method,The method used to generate the value of chronometricAgeUncertaintyInYears.,,"`2-sigma calibrated range`, `Half of 95% confidence interval`",http://rs.tdwg.org/chrono/terms/ChronometricAge,2020-11-17,superseded,http://rs.tdwg.org/chrono/terms/version/chronometricAgeUncertaintyMethod-2020-09-14,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/chronometricAgeUncertaintyMethod,https://terms.tdwg.org/wiki/abcd-efg:StratigraphicAttributions-ChronostratigraphicAttribution-Method,extension +http://rs.tdwg.org/chrono/terms/version/earliestChronometricAge-2021-01-26,earliestChronometricAge,Earliest Chronometric Age,The maximum/earliest/oldest possible age of a specimen as determined by a dating method.,"The expected unit for this field is years. This field, if populated, must have an associated earliestChronometricAgeReferenceSystem.",100,http://rs.tdwg.org/chrono/terms/ChronometricAge,2021-01-26,superseded,http://rs.tdwg.org/chrono/terms/version/maximumChronometricAge-2020-11-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/earliestChronometricAge,https://terms.tdwg.org/wiki/abcd-efg:StratigraphicAttributions-ChronostratigraphicAttribution-UpperValue,extension +http://rs.tdwg.org/chrono/terms/version/earliestChronometricAgeReferenceSystem-2021-01-26,earliestChronometricAgeReferenceSystem,Earliest Chronometric Age Reference System,The reference system associated with the earliestChronometricAge.,Recommended best practice is to use a controlled vocabulary.,"`kya`,`mya`,`BP`,`AD`,`BCE`,`ka`,`Ma`,`Ga`",http://rs.tdwg.org/chrono/terms/ChronometricAge,2021-01-26,superseded,http://rs.tdwg.org/chrono/terms/version/maximumChronometricAgeReferenceSystem-2020-11-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/earliestChronometricAgeReferenceSystem,not in ABCD,extension +http://rs.tdwg.org/chrono/terms/version/latestChronometricAge-2021-01-26,latestChronometricAge,Latest Chronometric Age,The minimum/latest/youngest possible age of a specimen as determined by a dating method.,"The expected unit for this field is years. This field, if populated, must have an associated latestChronometricAgeReferenceSystem.",27,http://rs.tdwg.org/chrono/terms/ChronometricAge,2021-01-26,superseded,http://rs.tdwg.org/chrono/terms/version/minimumChronometricAge-2020-11-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/latestChronometricAge,https://terms.tdwg.org/wiki/abcd-efg:UnitStratigraphicDetermination-ChronostratigraphicAttribution-LowerValue,extension +http://rs.tdwg.org/chrono/terms/version/latestChronometricAgeReferenceSystem-2021-01-26,latestChronometricAgeReferenceSystem,Latest Chronometric Age Reference System,The reference system associated with the latestChronometricAge.,Recommended best practice is to use a controlled vocabulary.,"`kya`,`mya`,`BP`,`AD`,`BCE`,`ka`,`Ma`,`Ga`",http://rs.tdwg.org/chrono/terms/ChronometricAge,2021-01-26,superseded,http://rs.tdwg.org/chrono/terms/version/minimumChronometricAgeReferenceSystem-2020-11-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/latestChronometricAgeReferenceSystem,not in ABCD,extension +http://rs.tdwg.org/chrono/terms/version/materialDated-2020-09-14,materialDated,Material Dated,"A description of the material on which the chronometricAgeProtocol was actually performed, if known.",,"`Double Tuff`, `Charcoal found in Stratum V`, `charred wood`, `tooth`",http://rs.tdwg.org/chrono/terms/ChronometricAge,2020-09-14,superseded,http://zooarchnet.org/dwc/terms/version/materialDated-2018-11-08,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/materialDated,not in ABCD,extension +http://rs.tdwg.org/chrono/terms/version/materialDated-2020-11-17,materialDated,Material Dated,"A description of the material on which the chronometricAgeProtocol was actually performed, if known.",,"`Double Tuff`, `Charcoal found in Stratum V`, `charred wood`, `tooth`",http://rs.tdwg.org/chrono/terms/ChronometricAge,2020-11-17,superseded,http://rs.tdwg.org/chrono/terms/version/materialDated-2020-09-14,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/materialDated,https://terms.tdwg.org/wiki/abcd-efg:UnitStratigraphicDetermination-MaterialDated,extension +http://rs.tdwg.org/chrono/terms/version/materialDatedID-2020-09-14,materialDatedID,Material Dated ID,"An identifier for the material on which the chronometricAgeProtocol was performed, if applicable.",,"`dwc:occurrenceID: 702b306d-f167-44d0-a5c9-890ece2b8839`, `https://www.idigbio.org/portal/records/e1438058-c8b9-418e-998e-1e497a3bcec4`",http://rs.tdwg.org/chrono/terms/ChronometricAge,2020-09-14,superseded,http://zooarchnet.org/dwc/terms/version/materialDatedID-2018-11-08,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/materialDatedID,not in ABCD,extension +http://rs.tdwg.org/chrono/terms/version/materialDatedID-2021-01-26,materialDatedID,Material Dated ID,"An identifier for the material on which the chronometricAgeProtocol was performed, if applicable.",,"`dwc:occurrenceID: 702b306d-f167-44d0-a5c9-890ece2b8839`, `https://www.idigbio.org/portal/records/e1438058-c8b9-418e-998e-1e497a3bcec4`",http://rs.tdwg.org/chrono/terms/ChronometricAge,2021-01-26,superseded,http://rs.tdwg.org/chrono/terms/version/materialDatedID-2020-09-14,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/materialDatedID,not in ABCD,extension +http://rs.tdwg.org/chrono/terms/version/materialDatedID-2021-02-05,materialDatedID,Material Dated ID,"An identifier for the MaterialSample on which the chronometricAgeProtocol was performed, if applicable.",,`dwc:materialSampleID: https://www.ebi.ac.uk/metagenomics/samples/SRS1930158`,http://rs.tdwg.org/chrono/terms/ChronometricAge,2021-02-05,superseded,http://rs.tdwg.org/chrono/terms/version/materialDatedID-2021-01-26,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/materialDatedID,not in ABCD,extension +http://rs.tdwg.org/chrono/terms/version/materialDatedRelationship-2021-01-26,materialDatedRelationship,Material Dated Relationship,"The relationship of the materialDated to the subject of the ChronometricAge record, from which the ChronometricAge of the subject is inferred.",Recommended best practice is to use a controlled vocabulary.,"`sameAs` (cases where the subject material was completely destructively subsampled to get the ChronometricAge), `subsampleOf` (cases where part of the original specimen was extracted as the material used to determine the ChronometricAge), `inContextWith` (cases where the ChronometricAge is inferred from materialDated, such as sediments or cultural objects, in related temporal context),`stratigraphicallyCorrelatedWith` (cases where the ChronometricAge is inferred from materialDated in a stratigraphically correlated context)",http://rs.tdwg.org/chrono/terms/ChronometricAge,2021-01-26,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/materialDatedRelationship,not in ABCD,extension +http://rs.tdwg.org/chrono/terms/version/maximumChronometricAge-2020-09-14,maximumChronometricAge,Maximum Chronometric Age,Upper limit for the age of a specimen as determined by a dating method.,"The expected unit for this field is years. This field, if populated, must have an associated maximumChronometricAgeReferenceSystem.",`27`,http://rs.tdwg.org/chrono/terms/ChronometricAge,2020-09-14,superseded,http://zooarchnet.org/dwc/terms/version/maximumChronometricAge-2018-11-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/maximumChronometricAge,not in ABCD,extension +http://rs.tdwg.org/chrono/terms/version/maximumChronometricAge-2020-11-17,maximumChronometricAge,Maximum Chronometric Age,Upper limit for the age of a specimen as determined by a dating method.,"The expected unit for this field is years. This field, if populated, must have an associated maximumChronometricAgeReferenceSystem.",`27`,http://rs.tdwg.org/chrono/terms/ChronometricAge,2020-11-17,deprecated,http://rs.tdwg.org/chrono/terms/version/maximumChronometricAge-2020-09-14,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/maximumChronometricAge,https://terms.tdwg.org/wiki/abcd-efg:StratigraphicAttributions-ChronostratigraphicAttribution-UpperValue,extension +http://rs.tdwg.org/chrono/terms/version/maximumChronometricAgeReferenceSystem-2020-09-14,maximumChronometricAgeReferenceSystem,Maximum Chronometric Age Reference System,The reference system associated with the maximumChronometricAge.,,"`kya`,`mya`,`BP`,`AD`,`BCE`",http://rs.tdwg.org/chrono/terms/ChronometricAge,2020-09-14,superseded,http://zooarchnet.org/dwc/terms/version/maximumChronometricAgeReferenceSystem-2018-11-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/maximumChronometricAgeReferenceSystem,not in ABCD,extension +http://rs.tdwg.org/chrono/terms/version/maximumChronometricAgeReferenceSystem-2020-11-17,maximumChronometricAgeReferenceSystem,Maximum Chronometric Age Reference System,The reference system associated with the maximumChronometricAge.,,"`kya`,`mya`,`BP`,`AD`,`BCE`",http://rs.tdwg.org/chrono/terms/ChronometricAge,2020-11-17,deprecated,http://rs.tdwg.org/chrono/terms/version/maximumChronometricAgeReferenceSystem-2020-09-14,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/maximumChronometricAgeReferenceSystem,https://terms.tdwg.org/wiki/abcd-efg:UnitStratigraphicDetermination-TimeUnit,extension +http://rs.tdwg.org/chrono/terms/version/minimumChronometricAge-2020-09-14,minimumChronometricAge,Minimum Chronometric Age,Lower limit for the age of a specimen as determined by a dating method.,"The expected unit for this field is years. This field, if populated, must have an associated minimumChronometricAgeReferenceSystem.",`100`,http://rs.tdwg.org/chrono/terms/ChronometricAge,2020-09-14,superseded,http://zooarchnet.org/dwc/terms/version/minimumChronometricAge-2018-11-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/minimumChronometricAge,not in ABCD,extension +http://rs.tdwg.org/chrono/terms/version/minimumChronometricAge-2020-11-17,minimumChronometricAge,Minimum Chronometric Age,Lower limit for the age of a specimen as determined by a dating method.,"The expected unit for this field is years. This field, if populated, must have an associated maximumChronometricAgeReferenceSystem.",`100`,http://rs.tdwg.org/chrono/terms/ChronometricAge,2020-11-17,deprecated,http://rs.tdwg.org/chrono/terms/version/minimumChronometricAge-2020-09-14,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/minimumChronometricAge,https://terms.tdwg.org/wiki/abcd-efg:UnitStratigraphicDetermination-ChronostratigraphicAttribution-LowerValue,extension +http://rs.tdwg.org/chrono/terms/version/minimumChronometricAgeReferenceSystem-2020-09-14,minimumChronometricAgeReferenceSystem,Minimum Chronometric Age Reference System,The reference system associated with the minimumChronometricAge.,,"`kya`,`mya`,`BP`,`AD`,`BCE`",http://rs.tdwg.org/chrono/terms/ChronometricAge,2020-09-14,superseded,http://zooarchnet.org/dwc/terms/version/minimumChronometricAgeReferenceSystem-2018-11-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/minimumChronometricAgeReferenceSystem,not in ABCD,extension +http://rs.tdwg.org/chrono/terms/version/minimumChronometricAgeReferenceSystem-2020-11-17,minimumChronometricAgeReferenceSystem,Minimum Chronometric Age Reference System,The reference system associated with the minimumChronometricAge.,,"`kya`,`mya`,`BP`,`AD`,`BCE`",http://rs.tdwg.org/chrono/terms/ChronometricAge,2020-11-17,deprecated,http://rs.tdwg.org/chrono/terms/version/minimumChronometricAgeReferenceSystem-2020-09-14,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/chrono/terms/minimumChronometricAgeReferenceSystem,https://terms.tdwg.org/wiki/abcd-efg:UnitStratigraphicDetermination-TimeUnit,extension From f84654e34b2a427a775aa50d3cc9a184f1321270 Mon Sep 17 00:00:00 2001 From: Steve Baskauf Date: Tue, 19 Aug 2025 11:51:11 -0400 Subject: [PATCH 8/9] Update the chrono QRG --- docs/terms/index.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/terms/index.md b/docs/terms/index.md index 3e71997..24aaa83 100644 --- a/docs/terms/index.md +++ b/docs/terms/index.md @@ -296,7 +296,7 @@ For more information on `UseWithIRI`, see [Section 2.5 of the RDF Guide](https:/ chronometricAgeConversionProtocol Identifierhttp://rs.tdwg.org/chrono/iri/chronometricAgeConversionProtocol DefinitionThe method used to convert the chrono:uncalibratedChronometricAge into a chronometric age in years, as captured in chrono:earliestChronometricAge, chrono:earliestChronometricAgeReferenceSystem, chrono:latestChronometricAge, and chrono:latestChronometricAgeReferenceSystem. - CommentsTerms in the chronoiri namespace are intended to be used in RDF with non-literal objects. + CommentsTerms in the chronoiri: namespace are intended to be used in RDF with non-literal objects. Examples @@ -309,7 +309,7 @@ For more information on `UseWithIRI`, see [Section 2.5 of the RDF Guide](https:/ chronometricAgeDeterminedBy Identifierhttp://rs.tdwg.org/chrono/iri/chronometricAgeDeterminedBy DefinitionA person, group, or organization that determined the chrono:ChronometricAge. - CommentsTerms in the chronoiri namespace are intended to be used in RDF with non-literal objects. + CommentsTerms in the chronoiri: namespace are intended to be used in RDF with non-literal objects. Examples @@ -322,7 +322,7 @@ For more information on `UseWithIRI`, see [Section 2.5 of the RDF Guide](https:/ chronometricAgeProtocol Identifierhttp://rs.tdwg.org/chrono/iri/chronometricAgeProtocol DefinitionA method used to determine the chrono:ChronometricAge. - CommentsTerms in the chronoiri namespace are intended to be used in RDF with non-literal objects. + CommentsTerms in the chronoiri: namespace are intended to be used in RDF with non-literal objects. Examples @@ -335,7 +335,7 @@ For more information on `UseWithIRI`, see [Section 2.5 of the RDF Guide](https:/ chronometricAgeUncertaintyMethod Identifierhttp://rs.tdwg.org/chrono/iri/chronometricAgeUncertaintyMethod DefinitionThe method used to generate the value of chrono:chronometricAgeUncertaintyInYears. - CommentsTerms in the chronoiri namespace are intended to be used in RDF with non-literal objects. + CommentsTerms in the chronoiri: namespace are intended to be used in RDF with non-literal objects. Examples @@ -348,7 +348,7 @@ For more information on `UseWithIRI`, see [Section 2.5 of the RDF Guide](https:/ earliestChronometricAgeReferenceSystem Identifierhttp://rs.tdwg.org/chrono/iri/earliestChronometricAgeReferenceSystem DefinitionThe reference system associated with the chrono:earliestChronometricAge. - CommentsTerms in the chronoiri namespace are intended to be used in RDF with non-literal objects. + CommentsTerms in the chronoiri: namespace are intended to be used in RDF with non-literal objects. Examples @@ -361,7 +361,7 @@ For more information on `UseWithIRI`, see [Section 2.5 of the RDF Guide](https:/ latestChronometricAgeReferenceSystem Identifierhttp://rs.tdwg.org/chrono/iri/latestChronometricAgeReferenceSystem DefinitionThe reference system associated with the chrono:latestChronometricAge. - CommentsTerms in the chronoiri namespace are intended to be used in RDF with non-literal objects. + CommentsTerms in the chronoiri: namespace are intended to be used in RDF with non-literal objects. Examples @@ -374,7 +374,7 @@ For more information on `UseWithIRI`, see [Section 2.5 of the RDF Guide](https:/ materialDated Identifierhttp://rs.tdwg.org/chrono/iri/materialDated DefinitionThe material on which the chrono:chronometricAgeProtocol was actually performed. - CommentsTerms in the chronoiri namespace are intended to be used in RDF with non-literal objects. + CommentsTerms in the chronoiri: namespace are intended to be used in RDF with non-literal objects. Examples From e9d807b5d7547201d698a72129d6721c5aa658b7 Mon Sep 17 00:00:00 2001 From: Steve Baskauf Date: Tue, 19 Aug 2025 11:53:04 -0400 Subject: [PATCH 9/9] move instructions for normative doc before build since it's required first --- build/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/build/README.md b/build/README.md index 4d5352e..9f659f9 100644 --- a/build/README.md +++ b/build/README.md @@ -1,3 +1,9 @@ +## Generating the "normative document" + +The script `generate_normative_csv.py` pulls source data from the [rs.tdwg.org](http://github.com/tdwg/rs.tdwg.org) repository. The local file `qrg-list.csv` contains a list of the term IRIs in the order that they are to appear in the Quick Reference Guide. This list needs to be changed whenever terms are added to or deprecated from Darwin Core. + +It generates the file `term_versions.csv`, which is used as the input for the `build.py` script below. + # Build script The build script `build.py` uses as input: @@ -24,12 +30,6 @@ And creates: python build.py ``` -## Generating the "normative document" - -The script `generate_normative_csv.py` pulls source data from the [rs.tdwg.org](http://github.com/tdwg/rs.tdwg.org) repository. The local file `qrg-list.csv` contains a list of the term IRIs in the order that they are to appear in the Quick Reference Guide. This list needs to be changed whenever terms are added to or deprecated from Darwin Core. - -It generates the file `term_versions.csv`, which is used as the input for the `build.py` script above. - ## Generating the "list of terms" document Prior to building the production List of Terms document, the Python script "update_previous_doc.py" must be run to change the headers of the previous version of the document and to rename that previous version to a dated version. This must be done first, otherwise the previous index.md file will be overwritten by the new one that is generated by the build-termlist.py script. NOTE: The vocabulary and document metadata in the rs.tdwg.org repository must have been updated before running this script. See for details. Command line arguments are: