mirror of https://github.com/tdwg/dwc.git
Merge pull request #278 from tdwg/2020-08-20_revisions
2020 08 20 revisions
This commit is contained in:
commit
386b5187da
|
@ -1,4 +1,34 @@
|
|||
# Build script
|
||||
# Workflow for generating a new version of Darwin Core
|
||||
|
||||
![workflow diagram](workflow_diagram.png)
|
||||
|
||||
1. Download the CSV file for the terms in the namespace to be modified. The `dwc:` namespace terms are [here](https://github.com/tdwg/rs.tdwg.org/blob/master/terms/terms.csv), `dwciri:` terms are [here](https://github.com/tdwg/rs.tdwg.org/blob/master/iri/iri.csv), `dc:` terms are [here](https://github.com/tdwg/rs.tdwg.org/blob/master/dc-for-dwc/dc-for-dwc.csv), and the `dcterms:` terms are [here](https://github.com/tdwg/rs.tdwg.org/blob/master/dcterms-for-dwc/dcterms-for-dwc.csv).
|
||||
2. **Note:** *It is highly recommended that you do not hand-edit the raw CSVs with a text editor. Use Libre Office or Open Office (NOT Excel). They will reliably open, close, and edit the file while preserving and escaping commas, quotes, etc. and also not mess up the UTF-8 encoding if you set them up properly.* Delete the columns that do not serve as input to the system. They are: `document_modified`, `term_isDefinedBy`, `term_created`, `term_modified`, `term_deprecated`, `replaces_term`, `replaces1_term`, and `replaces2_term`. That should leave `term_localName` and all of the columns starting with `label` and onwards to the right.
|
||||
3. Delete any rows whose terms are not being modified.
|
||||
4. Edit the cells whose values need to be changed.
|
||||
5. If a new term is being added, fill in a new row anywhere below the header row.
|
||||
6. Special care must be taken if columns are added (i.e. metadata properties are added). This is not for the faint of heart! The new columns must be added to every file used as source data for the various scripts and the column header mapping files also need to be edited. See [this page](for more details). This should be a rare event. DO NOT ever delete columns! If you want to elimite values for a property, just leave empty strings in all of the cells of that property's column.
|
||||
7. Create a new branch (or fork if you don't have push rights) of the [rs.tdwg.org repo](https://github.com/tdwg/rs.tdwg.org). Save your edited CSV file using some notable name in the [process](https://github.com/tdwg/rs.tdwg.org/tree/master/process) directory.
|
||||
8. Open the [simplified_process_rs_tdwg_org.ipynb](https://github.com/tdwg/rs.tdwg.org/blob/master/process/simplified_process_rs_tdwg_org.ipynb) Jupyter notebook and follow [these instructions](https://github.com/tdwg/rs.tdwg.org/blob/master/process/process-vocabulary.md#21-setup) to edit the configuration section of the script.
|
||||
9. Run the script, paying careful attention to whether particular sections are appropriate for what you are trying to accomplish. NOTE: there are still some kinks to be worked out for the borrowed terms (`dc:` and `dcterms:` namespaces), but changes there should be rare. It is useful to monitor the diffs that are generated as sections of the script are run and make sure that the changes are reasonable. This is easily monitored if you are using the GitHub desktop client.
|
||||
10. If there are changes to more than one namespace, repeat all of the previous steps with the second namespace before continuing on.
|
||||
11. When you are satisfied that all of the term, term list, vocabulary, and standards metadata changes are sensible, discard the changes made to the Jupyter notebook so that it will remain in it's "example" stage when the branch (or fork) is merged. Alternately, you can download the "example" notebook from GitHub to write over the version that you modified, and commit it to the branch.
|
||||
12. As of 2020-08-20, updating rs.tdwg.org document metadata must be done manually. Steve Baskauf knows how to do it and will try to eventually write a script to automate the process. It's best to ask him to do the updating before merging the branch.
|
||||
13. Push the branch to GitHub and create a pull request. It is best for someone to review the changes carefully before merging.
|
||||
14. Once the branch has been merged the data are available via HTTP to the other scripts that use those data.
|
||||
15. Create a branch of the [Darwin Core repo](https://github.com/tdwg/dwc).
|
||||
16. Edit the [termlist-header.md](https://github.com/tdwg/dwc/blob/master/build/termlist-header.md) file, changing "Date version issued", the "This version" URL, the version URL in the citation, and the date in the "1 Introduction" to the date used for the new version of Darwin Core. Change the "Previous version" date to the date of the version that is being replaced. Save the file.
|
||||
17. Go to the `docs/list/` directory and change the name of the `index.md` file to the date of the version being replaced (e.g. `2020-08-12.md`). Open that file and add a "Replaced by" label and value to the IRI of the new version (see an older version for an example). Save the file.
|
||||
18. Run the script [build-termlist.py](https://github.com/tdwg/dwc/blob/master/build/build-termlist.py). Be patient since some steps take a few seconds. When the `Done` message appears, it's finished.
|
||||
19. Check the diff for the newly generated `index.md` file in the [docs/list/](https://github.com/tdwg/dwc/tree/master/docs/list) directory and make sure that the changes are appropriate.
|
||||
20. Run the [generate_term_versions.py](https://github.com/tdwg/dwc/blob/master/build/generate_term_versions.py) script to generate a new version of [term_versions.csv](https://github.com/tdwg/dwc/blob/master/vocabulary/term_versions.csv). This file serves as the source of data for the build script in the next step. At some point, that script may be modified to eliminate this intermediate step.
|
||||
21. Run the [build.py](https://github.com/tdwg/dwc/blob/master/build/build.py) script to build the Quick Reference Guide.
|
||||
22. Create a pull request for the new branch.
|
||||
23. When the branch has been reviewed carefully, merge the branch. The new pages shuld be live as soon as Jekyll rebuilds them on GitHub.
|
||||
24. Term dereferencing to human and machine readable representations is handled by a server managed by GBIF. Ask Matt Blissett to reload the data from the `rs.tdwg.org` repo into the server (he has a script to do it.). Because dereferencing of current terms to human-readable web pages is handled by a redirect, there won't be any noticeable difference whether the data are reloaded in this step or not. But dereferencing the term versions, or dereferencing to acquire machine readable metadata will not reflect the new changes until the server is reloaded.
|
||||
|
||||
|
||||
## Build script
|
||||
|
||||
The build script `build.py` uses as input:
|
||||
|
||||
|
@ -32,6 +62,7 @@ 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. 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.
|
||||
------
|
||||
Last edited: 2020-08-20
|
|
@ -0,0 +1,403 @@
|
|||
# Script to build Markdown pages that provide term metadata for complex vocabularies
|
||||
# Steve Baskauf 2020-08-12 CC0
|
||||
# This script merges static Markdown header and footer documents with term information tables (in Markdown) generated from data in the rs.tdwg.org repo from the TDWG Github site
|
||||
|
||||
import re
|
||||
import requests # best library to manage HTTP transactions
|
||||
import csv # library to read/write/parse CSV files
|
||||
import json # library to convert JSON to Python data structures
|
||||
import pandas as pd
|
||||
|
||||
# -----------------
|
||||
# Configuration section
|
||||
# -----------------
|
||||
|
||||
# !!!! NOTE !!!!
|
||||
# There is not currently an example of a complex vocabulary that has the column headers
|
||||
# used in the sample files. In order to test this script, it uses the Audubon Core files,
|
||||
# which have headers that differ from the samples. So throughout the code, there are
|
||||
# pairs of lines where the default header names are commented out and the Audubon Core
|
||||
# headers are not. To build a page using the sample files, you will need to reverse the
|
||||
# commenting of these pairs.
|
||||
|
||||
# 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/'
|
||||
|
||||
headerFileName = 'termlist-header.md'
|
||||
footerFileName = 'termlist-footer.md'
|
||||
outFileName = '../docs/list/index.md'
|
||||
|
||||
# This is a Python list of the database names of the term lists to be included in the document.
|
||||
termLists = ['terms', 'iri', 'dc-for-dwc', 'dcterms-for-dwc']
|
||||
#termLists = ['pathway']
|
||||
|
||||
# NOTE! There may be problems unless every term list is of the same vocabulary type since the number of columns will differ
|
||||
# However, there probably aren't any circumstances where mixed types will be used to generate the same page.
|
||||
vocab_type = 1 # 1 is simple vocabulary, 2 is simple controlled vocabulary, 3 is c.v. with broader hierarchy
|
||||
|
||||
# Terms in large vocabularies like Darwin and Audubon Cores may be organized into categories using tdwgutility_organizedInClass
|
||||
# If so, those categories can be used to group terms in the generated term list document.
|
||||
organized_in_categories = True
|
||||
|
||||
# If organized in categories, the display_order list must contain the IRIs that are values of tdwgutility_organizedInClass
|
||||
# If not organized into categories, the value is irrelevant. There just needs to be one item in the list.
|
||||
display_order = ['', 'http://purl.org/dc/elements/1.1/', 'http://purl.org/dc/terms/', 'http://rs.tdwg.org/dwc/terms/Occurrence', 'http://rs.tdwg.org/dwc/terms/Organism', 'http://rs.tdwg.org/dwc/terms/MaterialSample', 'http://rs.tdwg.org/dwc/terms/Event', 'http://purl.org/dc/terms/Location', 'http://rs.tdwg.org/dwc/terms/GeologicalContext', 'http://rs.tdwg.org/dwc/terms/Identification', 'http://rs.tdwg.org/dwc/terms/Taxon', 'http://rs.tdwg.org/dwc/terms/MeasurementOrFact', 'http://rs.tdwg.org/dwc/terms/ResourceRelationship', 'http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI']
|
||||
display_label = ['Record level', 'Dublin Core legacy namespace', 'Dublin Core terms namespace', 'Occurrence', 'Organism', 'Material Sample', 'Event', 'Location', 'Geological Context', 'Identification', 'Taxon', 'Measurement or Fact', 'Resource Relationship', 'IRI-value terms']
|
||||
display_comments = ['','','','','','','','','','','','','','']
|
||||
display_id = ['record_level', 'dc', 'dcterms', 'occurrence', 'organism', 'material_sample', 'event', 'location', 'geological_context', 'identification', 'taxon', 'measurement_or_fact', 'resource_relationship', 'use_with_iri']
|
||||
|
||||
#display_order = ['']
|
||||
#display_label = ['Vocabulary'] # these are the section labels for the categories in the page
|
||||
#display_comments = [''] # these are the comments about the category to be appended following the section labels
|
||||
#display_id = ['Vocabulary'] # these are the fragment identifiers for the associated sections for the categories
|
||||
|
||||
# ---------------
|
||||
# Function definitions
|
||||
# ---------------
|
||||
|
||||
# replace URL with link
|
||||
#
|
||||
def createLinks(text):
|
||||
def repl(match):
|
||||
if match.group(1)[-1] == '.':
|
||||
return '<a href="' + match.group(1)[:-1] + '">' + match.group(1)[:-1] + '</a>.'
|
||||
return '<a href="' + match.group(1) + '">' + match.group(1) + '</a>'
|
||||
|
||||
pattern = '(https?://[^\s,;\)"]*)'
|
||||
result = re.sub(pattern, repl, text)
|
||||
return result
|
||||
|
||||
# ---------------
|
||||
# Retrieve term list metadata from GitHub
|
||||
# ---------------
|
||||
|
||||
print('Retrieving term list metadata from GitHub')
|
||||
term_lists_info = []
|
||||
|
||||
frame = pd.read_csv(githubBaseUri + 'term-lists/term-lists.csv', na_filter=False)
|
||||
for termList in termLists:
|
||||
term_list_dict = {'list_iri': termList}
|
||||
term_list_dict = {'database': termList}
|
||||
for index,row in frame.iterrows():
|
||||
if row['database'] == termList:
|
||||
term_list_dict['pref_ns_prefix'] = row['vann_preferredNamespacePrefix']
|
||||
term_list_dict['pref_ns_uri'] = row['vann_preferredNamespaceUri']
|
||||
term_list_dict['list_iri'] = row['list']
|
||||
term_lists_info.append(term_list_dict)
|
||||
print(term_lists_info)
|
||||
print()
|
||||
|
||||
# ---------------
|
||||
# Create metadata table and populate using data from namespace databases in GitHub
|
||||
# ---------------
|
||||
|
||||
# Create column list
|
||||
column_list = ['pref_ns_prefix', 'pref_ns_uri', 'term_localName', 'label', 'rdfs_comment', 'dcterms_description', 'examples', 'term_modified', 'term_deprecated', 'rdf_type', 'replaces_term', 'replaces1_term']
|
||||
#column_list = ['pref_ns_prefix', 'pref_ns_uri', 'term_localName', 'label', 'definition', 'usage', 'notes', 'term_modified', 'term_deprecated', 'type']
|
||||
if vocab_type == 2:
|
||||
column_list += ['controlled_value_string']
|
||||
elif vocab_type == 3:
|
||||
column_list += ['controlled_value_string', 'skos_broader']
|
||||
if organized_in_categories:
|
||||
column_list.append('tdwgutility_organizedInClass')
|
||||
column_list.append('version_iri')
|
||||
|
||||
print('Retrieving metadata about terms from all namespaces from GitHub')
|
||||
# Create list of lists metadata table
|
||||
table_list = []
|
||||
for term_list in term_lists_info:
|
||||
# retrieve versions metadata for term list
|
||||
versions_url = githubBaseUri + term_list['database'] + '-versions/' + term_list['database'] + '-versions.csv'
|
||||
versions_df = pd.read_csv(versions_url, na_filter=False)
|
||||
|
||||
# retrieve current term metadata for term list
|
||||
data_url = githubBaseUri + term_list['database'] + '/' + term_list['database'] + '.csv'
|
||||
frame = pd.read_csv(data_url, na_filter=False)
|
||||
for index,row in frame.iterrows():
|
||||
row_list = [term_list['pref_ns_prefix'], term_list['pref_ns_uri'], row['term_localName'], row['label'], row['rdfs_comment'], row['dcterms_description'], row['examples'], row['term_modified'], row['term_deprecated'], row['rdf_type'], row['replaces_term'], row['replaces1_term']]
|
||||
#row_list = [term_list['pref_ns_prefix'], term_list['pref_ns_uri'], row['term_localName'], row['label'], row['definition'], row['usage'], row['notes'], row['term_modified'], row['term_deprecated'], row['type']]
|
||||
if vocab_type == 2:
|
||||
row_list += [row['controlled_value_string']]
|
||||
elif vocab_type == 3:
|
||||
if row['skos_broader'] =='':
|
||||
row_list += [row['controlled_value_string'], '']
|
||||
else:
|
||||
row_list += [row['controlled_value_string'], term_list['pref_ns_prefix'] + ':' + row['skos_broader']]
|
||||
if organized_in_categories:
|
||||
row_list.append(row['tdwgutility_organizedInClass'])
|
||||
|
||||
# Borrowed terms really don't have implemented versions. They may be lacking values for version_status.
|
||||
# In their case, their version IRI will be omitted.
|
||||
found = False
|
||||
for vindex, vrow in versions_df.iterrows():
|
||||
if vrow['term_localName']==row['term_localName'] and vrow['version_status']=='recommended':
|
||||
found = True
|
||||
version_iri = vrow['version']
|
||||
# NOTE: the current hack for non-TDWG terms without a version is to append # to the end of the term IRI
|
||||
if version_iri[len(version_iri)-1] == '#':
|
||||
version_iri = ''
|
||||
if not found:
|
||||
version_iri = ''
|
||||
row_list.append(version_iri)
|
||||
|
||||
table_list.append(row_list)
|
||||
|
||||
# Turn list of lists into dataframe
|
||||
terms_df = pd.DataFrame(table_list, columns = column_list)
|
||||
|
||||
terms_sorted_by_label = terms_df.sort_values(by='label')
|
||||
#terms_sorted_by_localname = terms_df.sort_values(by='term_localName')
|
||||
|
||||
# This makes sort case insensitive
|
||||
terms_sorted_by_localname = terms_df.iloc[terms_df.term_localName.str.lower().argsort()]
|
||||
#terms_sorted_by_localname
|
||||
print('done retrieving')
|
||||
print()
|
||||
|
||||
# ---------------
|
||||
# generate the index of terms grouped by category and sorted alphabetically by lowercase term local name
|
||||
# ---------------
|
||||
|
||||
print('Generating term index by CURIE')
|
||||
text = '### 3.1 Index By Term Name\n\n'
|
||||
text += '(See also [3.2 Index By Label](#32-index-by-label))\n\n'
|
||||
|
||||
text += '**Classes**\n'
|
||||
text += '\n'
|
||||
for row_index,row in terms_sorted_by_localname.iterrows():
|
||||
if row['rdf_type'] == 'http://www.w3.org/2000/01/rdf-schema#Class':
|
||||
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 += '\n\n' # put back removed newline
|
||||
|
||||
for category in range(0,len(display_order)):
|
||||
text += '**' + display_label[category] + '**\n'
|
||||
text += '\n'
|
||||
if organized_in_categories:
|
||||
filtered_table = terms_sorted_by_localname[terms_sorted_by_localname['tdwgutility_organizedInClass']==display_order[category]]
|
||||
filtered_table.reset_index(drop=True, inplace=True)
|
||||
else:
|
||||
filtered_table = terms_sorted_by_localname
|
||||
|
||||
for row_index,row in filtered_table.iterrows():
|
||||
if row['rdf_type'] != 'http://www.w3.org/2000/01/rdf-schema#Class':
|
||||
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 += '\n\n' # put back removed newline
|
||||
|
||||
index_by_name = text
|
||||
|
||||
#print(index_by_name)
|
||||
print()
|
||||
|
||||
# ---------------
|
||||
# generate the index of terms by label
|
||||
# ---------------
|
||||
|
||||
print('Generating term index by label')
|
||||
text = '\n\n'
|
||||
|
||||
# Comment out the following two lines if there is no index by local names
|
||||
text = '### 3.2 Index By Label\n\n'
|
||||
text += '(See also [3.1 Index By Term Name](#31-index-by-term-name))\n\n'
|
||||
|
||||
text += '**Classes**\n'
|
||||
text += '\n'
|
||||
for row_index,row in terms_sorted_by_label.iterrows():
|
||||
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 += '\n\n' # put back removed newline
|
||||
|
||||
for category in range(0,len(display_order)):
|
||||
if organized_in_categories:
|
||||
text += '**' + display_label[category] + '**\n'
|
||||
text += '\n'
|
||||
filtered_table = terms_sorted_by_label[terms_sorted_by_label['tdwgutility_organizedInClass']==display_order[category]]
|
||||
filtered_table.reset_index(drop=True, inplace=True)
|
||||
else:
|
||||
filtered_table = terms_sorted_by_label
|
||||
|
||||
for row_index,row in filtered_table.iterrows():
|
||||
if row_index == 0 or (row_index != 0 and row['label'] != filtered_table.iloc[row_index - 1].loc['label']): # this is a hack to prevent duplicate labels
|
||||
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 += '\n\n' # put back removed newline
|
||||
|
||||
index_by_label = text
|
||||
print()
|
||||
|
||||
#print(index_by_label)
|
||||
|
||||
decisions_df = pd.read_csv('https://raw.githubusercontent.com/tdwg/rs.tdwg.org/master/decisions/decisions-links.csv', na_filter=False)
|
||||
|
||||
# ---------------
|
||||
# generate a table for each term, with terms grouped by category
|
||||
# ---------------
|
||||
|
||||
print('Generating terms table')
|
||||
# generate the Markdown for the terms table
|
||||
text = '## 4 Vocabulary\n'
|
||||
if True:
|
||||
filtered_table = terms_sorted_by_localname
|
||||
|
||||
#for category in range(0,len(display_order)):
|
||||
# if organized_in_categories:
|
||||
# text += '### 4.' + str(category + 1) + ' ' + display_label[category] + '\n'
|
||||
# text += '\n'
|
||||
# text += display_comments[category] # insert the comments for the category, if any.
|
||||
# filtered_table = terms_sorted_by_localname[terms_sorted_by_localname['tdwgutility_organizedInClass']==display_order[category]]
|
||||
# filtered_table.reset_index(drop=True, inplace=True)
|
||||
# else:
|
||||
# filtered_table = terms_sorted_by_localname
|
||||
|
||||
for row_index,row in filtered_table.iterrows():
|
||||
text += '<table>\n'
|
||||
curie = row['pref_ns_prefix'] + ":" + row['term_localName']
|
||||
curieAnchor = curie.replace(':','_')
|
||||
text += '\t<thead>\n'
|
||||
text += '\t\t<tr>\n'
|
||||
text += '\t\t\t<th colspan="2"><a id="' + curieAnchor + '"></a>Term Name ' + curie + '</th>\n'
|
||||
text += '\t\t</tr>\n'
|
||||
text += '\t</thead>\n'
|
||||
text += '\t<tbody>\n'
|
||||
text += '\t\t<tr>\n'
|
||||
text += '\t\t\t<td>Term IRI</td>\n'
|
||||
uri = row['pref_ns_uri'] + row['term_localName']
|
||||
text += '\t\t\t<td><a href="' + uri + '">' + uri + '</a></td>\n'
|
||||
text += '\t\t</tr>\n'
|
||||
text += '\t\t<tr>\n'
|
||||
text += '\t\t\t<td>Modified</td>\n'
|
||||
text += '\t\t\t<td>' + row['term_modified'] + '</td>\n'
|
||||
text += '\t\t</tr>\n'
|
||||
|
||||
if row['version_iri'] != '':
|
||||
text += '\t\t<tr>\n'
|
||||
text += '\t\t\t<td>Term version IRI</td>\n'
|
||||
text += '\t\t\t<td><a href="' + row['version_iri'] + '">' + row['version_iri'] + '</a></td>\n'
|
||||
text += '\t\t</tr>\n'
|
||||
|
||||
text += '\t\t<tr>\n'
|
||||
text += '\t\t\t<td>Label</td>\n'
|
||||
text += '\t\t\t<td>' + row['label'] + '</td>\n'
|
||||
text += '\t\t</tr>\n'
|
||||
|
||||
if row['term_deprecated'] != '':
|
||||
text += '\t\t<tr>\n'
|
||||
text += '\t\t\t<td></td>\n'
|
||||
text += '\t\t\t<td><strong>This term is deprecated and should no longer be used.</strong></td>\n'
|
||||
text += '\t\t</tr>\n'
|
||||
|
||||
for dep_index,dep_row in filtered_table.iterrows():
|
||||
if dep_row['replaces_term'] == uri:
|
||||
text += '\t\t<tr>\n'
|
||||
text += '\t\t\t<td>Is replaced by</td>\n'
|
||||
text += '\t\t\t<td><a href="#' + dep_row['pref_ns_prefix'] + "_" + dep_row['term_localName'] + '">' + dep_row['pref_ns_uri'] + dep_row['term_localName'] + '</a></td>\n'
|
||||
text += '\t\t</tr>\n'
|
||||
if dep_row['replaces1_term'] == uri:
|
||||
text += '\t\t<tr>\n'
|
||||
text += '\t\t\t<td>Is replaced by</td>\n'
|
||||
text += '\t\t\t<td><a href="#' + dep_row['pref_ns_prefix'] + "_" + dep_row['term_localName'] + '">' + dep_row['pref_ns_uri'] + dep_row['term_localName'] + '</a></td>\n'
|
||||
text += '\t\t</tr>\n'
|
||||
|
||||
text += '\t\t<tr>\n'
|
||||
text += '\t\t\t<td>Definition</td>\n'
|
||||
text += '\t\t\t<td>' + row['rdfs_comment'] + '</td>\n'
|
||||
#text += '\t\t\t<td>' + row['definition'] + '</td>\n'
|
||||
text += '\t\t</tr>\n'
|
||||
|
||||
if row['dcterms_description'] != '':
|
||||
#if row['notes'] != '':
|
||||
text += '\t\t<tr>\n'
|
||||
text += '\t\t\t<td>Notes</td>\n'
|
||||
text += '\t\t\t<td>' + createLinks(row['dcterms_description']) + '</td>\n'
|
||||
#text += '\t\t\t<td>' + createLinks(row['notes']) + '</td>\n'
|
||||
text += '\t\t</tr>\n'
|
||||
|
||||
if row['examples'] != '':
|
||||
#if row['usage'] != '':
|
||||
text += '\t\t<tr>\n'
|
||||
text += '\t\t\t<td>Examples</td>\n'
|
||||
text += '\t\t\t<td>' + createLinks(row['examples']) + '</td>\n'
|
||||
#text += '\t\t\t<td>' + createLinks(row['usage']) + '</td>\n'
|
||||
text += '\t\t</tr>\n'
|
||||
|
||||
if vocab_type == 2 or vocab_type ==3: # controlled vocabulary
|
||||
text += '\t\t<tr>\n'
|
||||
text += '\t\t\t<td>Controlled value</td>\n'
|
||||
text += '\t\t\t<td>' + row['controlled_value_string'] + '</td>\n'
|
||||
text += '\t\t</tr>\n'
|
||||
|
||||
if vocab_type == 3 and row['skos_broader'] != '': # controlled vocabulary with skos:broader relationships
|
||||
text += '\t\t<tr>\n'
|
||||
text += '\t\t\t<td>Has broader concept</td>\n'
|
||||
curieAnchor = row['skos_broader'].replace(':','_')
|
||||
text += '\t\t\t<td><a href="#' + curieAnchor + '">' + row['skos_broader'] + '</a></td>\n'
|
||||
text += '\t\t</tr>\n'
|
||||
|
||||
text += '\t\t<tr>\n'
|
||||
text += '\t\t\t<td>Type</td>\n'
|
||||
if row['rdf_type'] == 'http://www.w3.org/1999/02/22-rdf-syntax-ns#Property':
|
||||
#if row['type'] == 'http://www.w3.org/1999/02/22-rdf-syntax-ns#Property':
|
||||
text += '\t\t\t<td>Property</td>\n'
|
||||
elif row['rdf_type'] == 'http://www.w3.org/2000/01/rdf-schema#Class':
|
||||
#elif row['type'] == 'http://www.w3.org/2000/01/rdf-schema#Class':
|
||||
text += '\t\t\t<td>Class</td>\n'
|
||||
elif row['rdf_type'] == 'http://www.w3.org/2004/02/skos/core#Concept':
|
||||
#elif row['type'] == 'http://www.w3.org/2004/02/skos/core#Concept':
|
||||
text += '\t\t\t<td>Concept</td>\n'
|
||||
else:
|
||||
text += '\t\t\t<td>' + row['rdf_type'] + '</td>\n' # this should rarely happen
|
||||
#text += '\t\t\t<td>' + row['type'] + '</td>\n' # this should rarely happen
|
||||
text += '\t\t</tr>\n'
|
||||
|
||||
# Look up decisions related to this term
|
||||
for drow_index,drow in decisions_df.iterrows():
|
||||
if drow['linked_affected_resource'] == uri:
|
||||
text += '\t\t<tr>\n'
|
||||
text += '\t\t\t<td>Executive Committee decision</td>\n'
|
||||
text += '\t\t\t<td><a href="http://rs.tdwg.org/decisions/' + drow['decision_localName'] + '">http://rs.tdwg.org/decisions/' + drow['decision_localName'] + '</a></td>\n'
|
||||
text += '\t\t</tr>\n'
|
||||
|
||||
text += '\t</tbody>\n'
|
||||
text += '</table>\n'
|
||||
text += '\n'
|
||||
text += '\n'
|
||||
term_table = text
|
||||
print('done generating')
|
||||
print()
|
||||
|
||||
#print(term_table)
|
||||
|
||||
# ---------------
|
||||
# Merge term table with header and footer Markdown, then save file
|
||||
# ---------------
|
||||
|
||||
print('Merging term table with header and footer and saving file')
|
||||
#text = index_by_label + term_table
|
||||
text = index_by_name + index_by_label + term_table
|
||||
|
||||
# read in header and footer, merge with terms table, and output
|
||||
|
||||
headerObject = open(headerFileName, 'rt', encoding='utf-8')
|
||||
header = headerObject.read()
|
||||
headerObject.close()
|
||||
|
||||
footerObject = open(footerFileName, 'rt', encoding='utf-8')
|
||||
footer = footerObject.read()
|
||||
footerObject.close()
|
||||
|
||||
output = header + text + footer
|
||||
outputObject = open(outFileName, 'wt', encoding='utf-8')
|
||||
outputObject.write(output)
|
||||
outputObject.close()
|
||||
|
||||
print('done')
|
||||
|
|
@ -4,7 +4,7 @@ Title
|
|||
: List of Darwin Core terms
|
||||
|
||||
Date version issued
|
||||
: 2020-08-12
|
||||
: 2020-08-20
|
||||
|
||||
Date created
|
||||
: 2020-08-12
|
||||
|
@ -13,11 +13,14 @@ Part of TDWG Standard
|
|||
: <http://www.tdwg.org/standards/450>
|
||||
|
||||
This version
|
||||
: <http://rs.tdwg.org/dwc/doc/list/2020-08-12>
|
||||
: <http://rs.tdwg.org/dwc/doc/list/2020-08-20>
|
||||
|
||||
Latest version
|
||||
: <http://rs.tdwg.org/dwc/doc/list/>
|
||||
|
||||
Previous version
|
||||
: <http://rs.tdwg.org/dwc/doc/list/2020-08-12>
|
||||
|
||||
Abstract
|
||||
: Darwin Core is a vocabulary standard for transmitting information about biodiversity. This document lists all terms in namespaces currently used in the vocabulary.
|
||||
|
||||
|
@ -28,14 +31,14 @@ Creator
|
|||
: TDWG Darwin Core Maintenance Group
|
||||
|
||||
Bibliographic citation
|
||||
: Darwin Core Maintenance Group. 2020. List of Darwin Core terms. Biodiversity Information Standards (TDWG). <http://rs.tdwg.org/dwc/doc/list/2020-08-12>
|
||||
: Darwin Core Maintenance Group. 2020. List of Darwin Core terms. Biodiversity Information Standards (TDWG). <http://rs.tdwg.org/dwc/doc/list/2020-08-20>
|
||||
|
||||
|
||||
## 1 Introduction (Informative)
|
||||
|
||||
This document contains terms that are part of the most recent version of the Darwin Core vocabulary (http://rs.tdwg.org/version/dwc/2020-08-12).
|
||||
This document contains terms that are part of the most recent version of the Darwin Core vocabulary (http://rs.tdwg.org/version/dwc/2020-08-20).
|
||||
|
||||
This document includes terms in four namespaces that contain recommended terms: `dwc:`, `dwciri:`, `dc:`, and `dcterms:`. However, some terms in these namespaces are deprecated and should no longer be used. Deprecation is noted in the term metadata. Namespaces that contain only deprecated terms are not included in this document, but metadata about those terms can be retrieved by dereferencing their IRIs.
|
||||
This document includes terms in four namespaces that contain recommended terms: `dwc:`, `dwciri:`, `dc:`, and `dcterms:`. However, some terms in these namespaces are deprecated or superseded and should no longer be used. Deprecation or supersession is noted in the term metadata. Namespaces that contain only deprecated terms are not included in this document, but metadata about those terms can be retrieved by dereferencing their IRIs.
|
||||
|
||||
For a simplified list that contains only the currently recommended terms, see the [Darwin Core Quick Reference Guide](../terms/).
|
||||
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 187 KiB |
File diff suppressed because it is too large
Load Diff
|
@ -4,7 +4,7 @@ Title
|
|||
: List of Darwin Core terms
|
||||
|
||||
Date version issued
|
||||
: 2020-08-12
|
||||
: 2020-08-20
|
||||
|
||||
Date created
|
||||
: 2020-08-12
|
||||
|
@ -13,11 +13,14 @@ Part of TDWG Standard
|
|||
: <http://www.tdwg.org/standards/450>
|
||||
|
||||
This version
|
||||
: <http://rs.tdwg.org/dwc/doc/list/2020-08-12>
|
||||
: <http://rs.tdwg.org/dwc/doc/list/2020-08-20>
|
||||
|
||||
Latest version
|
||||
: <http://rs.tdwg.org/dwc/doc/list/>
|
||||
|
||||
Previous version
|
||||
: <http://rs.tdwg.org/dwc/doc/list/2020-08-12>
|
||||
|
||||
Abstract
|
||||
: Darwin Core is a vocabulary standard for transmitting information about biodiversity. This document lists all terms in namespaces currently used in the vocabulary.
|
||||
|
||||
|
@ -28,14 +31,14 @@ Creator
|
|||
: TDWG Darwin Core Maintenance Group
|
||||
|
||||
Bibliographic citation
|
||||
: Darwin Core Maintenance Group. 2020. List of Darwin Core terms. Biodiversity Information Standards (TDWG). <http://rs.tdwg.org/dwc/doc/list/2020-08-12>
|
||||
: Darwin Core Maintenance Group. 2020. List of Darwin Core terms. Biodiversity Information Standards (TDWG). <http://rs.tdwg.org/dwc/doc/list/2020-08-20>
|
||||
|
||||
|
||||
## 1 Introduction (Informative)
|
||||
|
||||
This document contains terms that are part of the most recent version of the Darwin Core vocabulary (http://rs.tdwg.org/version/dwc/2020-08-12).
|
||||
This document contains terms that are part of the most recent version of the Darwin Core vocabulary (http://rs.tdwg.org/version/dwc/2020-08-20).
|
||||
|
||||
This document includes terms in four namespaces that contain recommended terms: `dwc:`, `dwciri:`, `dc:`, and `dcterms:`. However, some terms in these namespaces are deprecated and should no longer be used. Deprecation is noted in the term metadata. Namespaces that contain only deprecated terms are not included in this document, but metadata about those terms can be retrieved by dereferencing their IRIs.
|
||||
This document includes terms in four namespaces that contain recommended terms: `dwc:`, `dwciri:`, `dc:`, and `dcterms:`. However, some terms in these namespaces are deprecated or superseded and should no longer be used. Deprecation or supersession is noted in the term metadata. Namespaces that contain only deprecated terms are not included in this document, but metadata about those terms can be retrieved by dereferencing their IRIs.
|
||||
|
||||
For a simplified list that contains only the currently recommended terms, see the [Darwin Core Quick Reference Guide](../terms/).
|
||||
|
||||
|
@ -3036,11 +3039,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/#
|
|||
</tr>
|
||||
<tr>
|
||||
<td>Modified</td>
|
||||
<td>2017-10-06</td>
|
||||
<td>2020-08-20</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Term version IRI</td>
|
||||
<td><a href="http://rs.tdwg.org/dwc/terms/version/endDayOfYear-2017-10-06">http://rs.tdwg.org/dwc/terms/version/endDayOfYear-2017-10-06</a></td>
|
||||
<td><a href="http://rs.tdwg.org/dwc/terms/version/endDayOfYear-2020-08-20">http://rs.tdwg.org/dwc/terms/version/endDayOfYear-2020-08-20</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Label</td>
|
||||
|
@ -3048,7 +3051,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/#
|
|||
</tr>
|
||||
<tr>
|
||||
<td>Definition</td>
|
||||
<td>The latest ordinal day of the year on which the Event occurred (1 for January 1, 365 for December 31, except in a leap year, in which case it is 366).</td>
|
||||
<td>The latest integer day of the year on which the Event occurred (1 for January 1, 365 for December 31, except in a leap year, in which case it is 366).</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Examples</td>
|
||||
|
@ -4362,11 +4365,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/#
|
|||
</tr>
|
||||
<tr>
|
||||
<td>Modified</td>
|
||||
<td>2017-10-06</td>
|
||||
<td>2020-08-20</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Term version IRI</td>
|
||||
<td><a href="http://rs.tdwg.org/dwc/terms/version/footprintSpatialFit-2017-10-06">http://rs.tdwg.org/dwc/terms/version/footprintSpatialFit-2017-10-06</a></td>
|
||||
<td><a href="http://rs.tdwg.org/dwc/terms/version/footprintSpatialFit-2020-08-20">http://rs.tdwg.org/dwc/terms/version/footprintSpatialFit-2020-08-20</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Label</td>
|
||||
|
@ -4374,15 +4377,15 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/#
|
|||
</tr>
|
||||
<tr>
|
||||
<td>Definition</td>
|
||||
<td>The ratio of the area of the footprint (footprintWKT) to the area of the true (original, or most specific) spatial representation of the Location. Legal values are 0, greater than or equal to 1, or undefined. A value of 1 is an exact match or 100% overlap. A value of 0 should be used if the given footprint does not completely contain the original representation. The footprintSpatialFit is undefined (and should be left blank) if the original representation is a point and the given georeference is not that same point. If both the original and the given georeference are the same point, the footprintSpatialFit is 1.</td>
|
||||
<td>The ratio of the area of the footprint (footprintWKT) to the area of the true (original, or most specific) spatial representation of the Location. Legal values are 0, greater than or equal to 1, or undefined. A value of 1 is an exact match or 100% overlap. A value of 0 should be used if the given footprint does not completely contain the original representation. The footprintSpatialFit is undefined (and should be left empty) if the original representation is a point without uncertainty and the given georeference is not that same point (without uncertainty). If both the original and the given georeference are the same point, the footprintSpatialFit is 1.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Notes</td>
|
||||
<td>Detailed explanations with graphical examples can be found in the Guide to Best Practices for Georeferencing, Chapman and Wieczorek, eds. 2006.</td>
|
||||
<td>Detailed explanations with graphical examples can be found in the Georeferencing Best Practices, Chapman and Wieczorek, 2020 (<a href="https://doi.org/10.15468/doc-gg7h-s853">https://doi.org/10.15468/doc-gg7h-s853</a>).</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Examples</td>
|
||||
<td>Detailed explanations with graphical examples can be found in the Guide to Best Practices for Georeferencing, Chapman and Wieczorek, eds. 2006.</td>
|
||||
<td>`0`, `1`, `1.5708`</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Type</td>
|
||||
|
@ -5048,11 +5051,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/#
|
|||
</tr>
|
||||
<tr>
|
||||
<td>Modified</td>
|
||||
<td>2017-10-06</td>
|
||||
<td>2020-08-20</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Term version IRI</td>
|
||||
<td><a href="http://rs.tdwg.org/dwc/terms/version/georeferenceProtocol-2017-10-06">http://rs.tdwg.org/dwc/terms/version/georeferenceProtocol-2017-10-06</a></td>
|
||||
<td><a href="http://rs.tdwg.org/dwc/terms/version/georeferenceProtocol-2020-08-20">http://rs.tdwg.org/dwc/terms/version/georeferenceProtocol-2020-08-20</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Label</td>
|
||||
|
@ -5064,7 +5067,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/#
|
|||
</tr>
|
||||
<tr>
|
||||
<td>Examples</td>
|
||||
<td>`Guide to Best Practices for Georeferencing. (Chapman and Wieczorek, eds. 2006). Global Biodiversity Information Facility.`, `MaNIS/HerpNet/ORNIS Georeferencing Guidelines`, `Georeferencing Quick Reference Guide`</td>
|
||||
<td>`Georeferencing Quick Reference Guide (Zermoglio et al. 2020, <a href="https://doi.org/10.35035/e09p-h128">https://doi.org/10.35035/e09p-h128</a>)`</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Type</td>
|
||||
|
@ -9086,11 +9089,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/#
|
|||
</tr>
|
||||
<tr>
|
||||
<td>Modified</td>
|
||||
<td>2018-09-06</td>
|
||||
<td>2020-08-20</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Term version IRI</td>
|
||||
<td><a href="http://rs.tdwg.org/dwc/terms/version/Occurrence-2018-09-06">http://rs.tdwg.org/dwc/terms/version/Occurrence-2018-09-06</a></td>
|
||||
<td><a href="http://rs.tdwg.org/dwc/terms/version/Occurrence-2020-08-20">http://rs.tdwg.org/dwc/terms/version/Occurrence-2020-08-20</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Label</td>
|
||||
|
@ -9102,7 +9105,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/#
|
|||
</tr>
|
||||
<tr>
|
||||
<td>Examples</td>
|
||||
<td>A wolf pack on the shore of Kluane Lake in 1988. A virus in a plant leaf in a the New York Botanical Garden at 15:29 on 2014-10-23. A fungus in Central Park in the summer of 1929.</td>
|
||||
<td>A wolf pack on the shore of Kluane Lake in 1988. A virus in a plant leaf in the New York Botanical Garden at 15:29 on 2014-10-23. A fungus in Central Park in the summer of 1929.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Type</td>
|
||||
|
@ -10436,11 +10439,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/#
|
|||
</tr>
|
||||
<tr>
|
||||
<td>Modified</td>
|
||||
<td>2017-10-06</td>
|
||||
<td>2020-08-20</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Term version IRI</td>
|
||||
<td><a href="http://rs.tdwg.org/dwc/terms/version/pointRadiusSpatialFit-2017-10-06">http://rs.tdwg.org/dwc/terms/version/pointRadiusSpatialFit-2017-10-06</a></td>
|
||||
<td><a href="http://rs.tdwg.org/dwc/terms/version/pointRadiusSpatialFit-2020-08-20">http://rs.tdwg.org/dwc/terms/version/pointRadiusSpatialFit-2020-08-20</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Label</td>
|
||||
|
@ -10448,15 +10451,15 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/#
|
|||
</tr>
|
||||
<tr>
|
||||
<td>Definition</td>
|
||||
<td>The ratio of the area of the point-radius (decimalLatitude, decimalLongitude, coordinateUncertaintyInMeters) to the area of the true (original, or most specific) spatial representation of the Location. Legal values are 0, greater than or equal to 1, or undefined. A value of 1 is an exact match or 100% overlap. A value of 0 should be used if the given point-radius does not completely contain the original representation. The pointRadiusSpatialFit is undefined (and should be left blank) if the original representation is a point without uncertainty and the given georeference is not that same point (without uncertainty). If both the original and the given georeference are the same point, the pointRadiusSpatialFit is 1.</td>
|
||||
<td>The ratio of the area of the point-radius (decimalLatitude, decimalLongitude, coordinateUncertaintyInMeters) to the area of the true (original, or most specific) spatial representation of the Location. Legal values are 0, greater than or equal to 1, or undefined. A value of 1 is an exact match or 100% overlap. A value of 0 should be used if the given point-radius does not completely contain the original representation. The pointRadiusSpatialFit is undefined (and should be left empty) if the original representation is a point without uncertainty and the given georeference is not that same point (without uncertainty). If both the original and the given georeference are the same point, the pointRadiusSpatialFit is 1.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Notes</td>
|
||||
<td>Detailed explanations with graphical examples can be found in the Guide to Best Practices for Georeferencing, Chapman and Wieczorek, eds. 2006.</td>
|
||||
<td>Detailed explanations with graphical examples can be found in the Georeferencing Best Practices, Chapman and Wieczorek, 2020 (<a href="https://doi.org/10.15468/doc-gg7h-s853">https://doi.org/10.15468/doc-gg7h-s853</a>).</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Examples</td>
|
||||
<td>Detailed explanations with graphical examples can be found in the Guide to Best Practices for Georeferencing, Chapman and Wieczorek, eds. 2006.</td>
|
||||
<td>`0`, `1`, `1.5708`</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Type</td>
|
||||
|
@ -12700,11 +12703,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/#
|
|||
</tr>
|
||||
<tr>
|
||||
<td>Modified</td>
|
||||
<td>2017-10-06</td>
|
||||
<td>2020-08-20</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Term version IRI</td>
|
||||
<td><a href="http://rs.tdwg.org/dwc/terms/version/startDayOfYear-2017-10-06">http://rs.tdwg.org/dwc/terms/version/startDayOfYear-2017-10-06</a></td>
|
||||
<td><a href="http://rs.tdwg.org/dwc/terms/version/startDayOfYear-2020-08-20">http://rs.tdwg.org/dwc/terms/version/startDayOfYear-2020-08-20</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Label</td>
|
||||
|
@ -12712,7 +12715,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/#
|
|||
</tr>
|
||||
<tr>
|
||||
<td>Definition</td>
|
||||
<td>The earliest ordinal day of the year on which the Event occurred (1 for January 1, 365 for December 31, except in a leap year, in which case it is 366).</td>
|
||||
<td>The earliest integer day of the year on which the Event occurred (1 for January 1, 365 for December 31, except in a leap year, in which case it is 366).</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Examples</td>
|
||||
|
@ -13512,11 +13515,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/#
|
|||
</tr>
|
||||
<tr>
|
||||
<td>Modified</td>
|
||||
<td>2017-10-06</td>
|
||||
<td>2020-08-20</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Term version IRI</td>
|
||||
<td><a href="http://rs.tdwg.org/dwc/terms/version/verbatimCoordinateSystem-2017-10-06">http://rs.tdwg.org/dwc/terms/version/verbatimCoordinateSystem-2017-10-06</a></td>
|
||||
<td><a href="http://rs.tdwg.org/dwc/terms/version/verbatimCoordinateSystem-2020-08-20">http://rs.tdwg.org/dwc/terms/version/verbatimCoordinateSystem-2020-08-20</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Label</td>
|
||||
|
@ -13524,7 +13527,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/#
|
|||
</tr>
|
||||
<tr>
|
||||
<td>Definition</td>
|
||||
<td>The spatial coordinate system for the verbatimLatitude and verbatimLongitude or the verbatimCoordinates of the Location.</td>
|
||||
<td>The coordinate format for the verbatimLatitude and verbatimLongitude or the verbatimCoordinates of the Location.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Notes</td>
|
||||
|
|
|
@ -275,7 +275,7 @@ This document is intended to be an easy-to-read reference of the currently recom
|
|||
<tr><td class="theme-label">Identifier</td><td><a href="http://rs.tdwg.org/dwc/terms/Occurrence">http://rs.tdwg.org/dwc/terms/Occurrence</a></td></tr>
|
||||
<tr><td class="theme-label">Definition</td><td>An existence of an Organism (sensu <a href="http://rs.tdwg.org/dwc/terms/Organism">http://rs.tdwg.org/dwc/terms/Organism</a>) at a particular place at a particular time.</td></tr>
|
||||
<tr><td class="theme-label">Comments</td><td></td></tr>
|
||||
<tr><td class="theme-label">Examples</td><td>A wolf pack on the shore of Kluane Lake in 1988. A virus in a plant leaf in a the New York Botanical Garden at 15:29 on 2014-10-23. A fungus in Central Park in the summer of 1929.</td></tr>
|
||||
<tr><td class="theme-label">Examples</td><td>A wolf pack on the shore of Kluane Lake in 1988. A virus in a plant leaf in the New York Botanical Garden at 15:29 on 2014-10-23. A fungus in Central Park in the summer of 1929.</td></tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
|
@ -736,7 +736,7 @@ This document is intended to be an easy-to-read reference of the currently recom
|
|||
<tbody>
|
||||
<tr class="table-secondary"><th colspan="2">startDayOfYear <span class="badge badge-secondary float-right">Property</span></th></tr>
|
||||
<tr><td class="theme-label">Identifier</td><td><a href="http://rs.tdwg.org/dwc/terms/startDayOfYear">http://rs.tdwg.org/dwc/terms/startDayOfYear</a></td></tr>
|
||||
<tr><td class="theme-label">Definition</td><td>The earliest ordinal day of the year on which the Event occurred (1 for January 1, 365 for December 31, except in a leap year, in which case it is 366).</td></tr>
|
||||
<tr><td class="theme-label">Definition</td><td>The earliest integer day of the year on which the Event occurred (1 for January 1, 365 for December 31, except in a leap year, in which case it is 366).</td></tr>
|
||||
<tr><td class="theme-label">Comments</td><td></td></tr>
|
||||
<tr><td class="theme-label">Examples</td><td><code>1</code> (1 January). <code>366</code> (31 December), <code>365</code> (30 December in a leap year, 31 December in a non-leap year).</td></tr>
|
||||
</tbody>
|
||||
|
@ -747,7 +747,7 @@ This document is intended to be an easy-to-read reference of the currently recom
|
|||
<tbody>
|
||||
<tr class="table-secondary"><th colspan="2">endDayOfYear <span class="badge badge-secondary float-right">Property</span></th></tr>
|
||||
<tr><td class="theme-label">Identifier</td><td><a href="http://rs.tdwg.org/dwc/terms/endDayOfYear">http://rs.tdwg.org/dwc/terms/endDayOfYear</a></td></tr>
|
||||
<tr><td class="theme-label">Definition</td><td>The latest ordinal day of the year on which the Event occurred (1 for January 1, 365 for December 31, except in a leap year, in which case it is 366).</td></tr>
|
||||
<tr><td class="theme-label">Definition</td><td>The latest integer day of the year on which the Event occurred (1 for January 1, 365 for December 31, except in a leap year, in which case it is 366).</td></tr>
|
||||
<tr><td class="theme-label">Comments</td><td></td></tr>
|
||||
<tr><td class="theme-label">Examples</td><td><code>1</code> (1 January). <code>32</code> (1 February). <code>366</code> (31 December). <code>365</code> (30 December in a leap year, 31 December in a non-leap year).</td></tr>
|
||||
</tbody>
|
||||
|
@ -1259,9 +1259,9 @@ This document is intended to be an easy-to-read reference of the currently recom
|
|||
<tbody>
|
||||
<tr class="table-secondary"><th colspan="2">pointRadiusSpatialFit <span class="badge badge-secondary float-right">Property</span></th></tr>
|
||||
<tr><td class="theme-label">Identifier</td><td><a href="http://rs.tdwg.org/dwc/terms/pointRadiusSpatialFit">http://rs.tdwg.org/dwc/terms/pointRadiusSpatialFit</a></td></tr>
|
||||
<tr><td class="theme-label">Definition</td><td>The ratio of the area of the point-radius (decimalLatitude, decimalLongitude, coordinateUncertaintyInMeters) to the area of the true (original, or most specific) spatial representation of the Location. Legal values are 0, greater than or equal to 1, or undefined. A value of 1 is an exact match or 100% overlap. A value of 0 should be used if the given point-radius does not completely contain the original representation. The pointRadiusSpatialFit is undefined (and should be left blank) if the original representation is a point without uncertainty and the given georeference is not that same point (without uncertainty). If both the original and the given georeference are the same point, the pointRadiusSpatialFit is 1.</td></tr>
|
||||
<tr><td class="theme-label">Comments</td><td>Detailed explanations with graphical examples can be found in the Guide to Best Practices for Georeferencing, Chapman and Wieczorek, eds. 2006.</td></tr>
|
||||
<tr><td class="theme-label">Examples</td><td>Detailed explanations with graphical examples can be found in the Guide to Best Practices for Georeferencing, Chapman and Wieczorek, eds. 2006.</td></tr>
|
||||
<tr><td class="theme-label">Definition</td><td>The ratio of the area of the point-radius (decimalLatitude, decimalLongitude, coordinateUncertaintyInMeters) to the area of the true (original, or most specific) spatial representation of the Location. Legal values are 0, greater than or equal to 1, or undefined. A value of 1 is an exact match or 100% overlap. A value of 0 should be used if the given point-radius does not completely contain the original representation. The pointRadiusSpatialFit is undefined (and should be left empty) if the original representation is a point without uncertainty and the given georeference is not that same point (without uncertainty). If both the original and the given georeference are the same point, the pointRadiusSpatialFit is 1.</td></tr>
|
||||
<tr><td class="theme-label">Comments</td><td>Detailed explanations with graphical examples can be found in the Georeferencing Best Practices, Chapman and Wieczorek, 2020 (<a href="https://doi.org/10.15468/doc-gg7h-s853">https://doi.org/10.15468/doc-gg7h-s853</a>).</td></tr>
|
||||
<tr><td class="theme-label">Examples</td><td><code>0</code>, <code>1</code>, <code>1.5708</code></td></tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<p class="invisible">
|
||||
|
@ -1303,7 +1303,7 @@ This document is intended to be an easy-to-read reference of the currently recom
|
|||
<tbody>
|
||||
<tr class="table-secondary"><th colspan="2">verbatimCoordinateSystem <span class="badge badge-secondary float-right">Property</span></th></tr>
|
||||
<tr><td class="theme-label">Identifier</td><td><a href="http://rs.tdwg.org/dwc/terms/verbatimCoordinateSystem">http://rs.tdwg.org/dwc/terms/verbatimCoordinateSystem</a></td></tr>
|
||||
<tr><td class="theme-label">Definition</td><td>The spatial coordinate system for the verbatimLatitude and verbatimLongitude or the verbatimCoordinates of the Location.</td></tr>
|
||||
<tr><td class="theme-label">Definition</td><td>The coordinate format for the verbatimLatitude and verbatimLongitude or the verbatimCoordinates of the Location.</td></tr>
|
||||
<tr><td class="theme-label">Comments</td><td>Recommended best practice is to use a controlled vocabulary.</td></tr>
|
||||
<tr><td class="theme-label">Examples</td><td><code>decimal degrees</code>, <code>degrees decimal minutes</code>, <code>degrees minutes seconds</code>, <code>UTM</code></td></tr>
|
||||
</tbody>
|
||||
|
@ -1347,9 +1347,9 @@ This document is intended to be an easy-to-read reference of the currently recom
|
|||
<tbody>
|
||||
<tr class="table-secondary"><th colspan="2">footprintSpatialFit <span class="badge badge-secondary float-right">Property</span></th></tr>
|
||||
<tr><td class="theme-label">Identifier</td><td><a href="http://rs.tdwg.org/dwc/terms/footprintSpatialFit">http://rs.tdwg.org/dwc/terms/footprintSpatialFit</a></td></tr>
|
||||
<tr><td class="theme-label">Definition</td><td>The ratio of the area of the footprint (footprintWKT) to the area of the true (original, or most specific) spatial representation of the Location. Legal values are 0, greater than or equal to 1, or undefined. A value of 1 is an exact match or 100% overlap. A value of 0 should be used if the given footprint does not completely contain the original representation. The footprintSpatialFit is undefined (and should be left blank) if the original representation is a point and the given georeference is not that same point. If both the original and the given georeference are the same point, the footprintSpatialFit is 1.</td></tr>
|
||||
<tr><td class="theme-label">Comments</td><td>Detailed explanations with graphical examples can be found in the Guide to Best Practices for Georeferencing, Chapman and Wieczorek, eds. 2006.</td></tr>
|
||||
<tr><td class="theme-label">Examples</td><td>Detailed explanations with graphical examples can be found in the Guide to Best Practices for Georeferencing, Chapman and Wieczorek, eds. 2006.</td></tr>
|
||||
<tr><td class="theme-label">Definition</td><td>The ratio of the area of the footprint (footprintWKT) to the area of the true (original, or most specific) spatial representation of the Location. Legal values are 0, greater than or equal to 1, or undefined. A value of 1 is an exact match or 100% overlap. A value of 0 should be used if the given footprint does not completely contain the original representation. The footprintSpatialFit is undefined (and should be left empty) if the original representation is a point without uncertainty and the given georeference is not that same point (without uncertainty). If both the original and the given georeference are the same point, the footprintSpatialFit is 1.</td></tr>
|
||||
<tr><td class="theme-label">Comments</td><td>Detailed explanations with graphical examples can be found in the Georeferencing Best Practices, Chapman and Wieczorek, 2020 (<a href="https://doi.org/10.15468/doc-gg7h-s853">https://doi.org/10.15468/doc-gg7h-s853</a>).</td></tr>
|
||||
<tr><td class="theme-label">Examples</td><td><code>0</code>, <code>1</code>, <code>1.5708</code></td></tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<p class="invisible">
|
||||
|
@ -1382,7 +1382,7 @@ This document is intended to be an easy-to-read reference of the currently recom
|
|||
<tr><td class="theme-label">Identifier</td><td><a href="http://rs.tdwg.org/dwc/terms/georeferenceProtocol">http://rs.tdwg.org/dwc/terms/georeferenceProtocol</a></td></tr>
|
||||
<tr><td class="theme-label">Definition</td><td>A description or reference to the methods used to determine the spatial footprint, coordinates, and uncertainties.</td></tr>
|
||||
<tr><td class="theme-label">Comments</td><td></td></tr>
|
||||
<tr><td class="theme-label">Examples</td><td><code>Guide to Best Practices for Georeferencing. (Chapman and Wieczorek, eds. 2006). Global Biodiversity Information Facility.</code>, <code>MaNIS/HerpNet/ORNIS Georeferencing Guidelines</code>, <code>Georeferencing Quick Reference Guide</code></td></tr>
|
||||
<tr><td class="theme-label">Examples</td><td><code>Georeferencing Quick Reference Guide (Zermoglio et al. 2020, <a href="https://doi.org/10.35035/e09p-h128">https://doi.org/10.35035/e09p-h128</a>)</code></td></tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<p class="invisible">
|
||||
|
|
|
@ -18,7 +18,7 @@ http://rs.tdwg.org/dwc/terms/version/basisOfRecord-2017-10-06,basisOfRecord,Basi
|
|||
http://rs.tdwg.org/dwc/terms/version/informationWithheld-2017-10-06,informationWithheld,Information Withheld,"Additional information that exists, but that has not been shared in the given record.",,"`location information not given for endangered species`, `collector identities withheld | ask about tissue samples`",http://rs.tdwg.org/dwc/terms/,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/informationWithheld-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/informationWithheld,DataSets/DataSet/Units/Unit/InformationWithheld,simple
|
||||
http://rs.tdwg.org/dwc/terms/version/dataGeneralizations-2017-10-06,dataGeneralizations,Data Generalizations,Actions taken to make the shared data less specific or complete than in its original form. Suggests that alternative data of higher quality may be available on request.,,`Coordinates generalized from original GPS coordinates to the nearest half degree grid cell`.,http://rs.tdwg.org/dwc/terms/,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/dataGeneralizations-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/dataGeneralizations,not in ABCD,simple
|
||||
http://rs.tdwg.org/dwc/terms/version/dynamicProperties-2017-10-06,dynamicProperties,Dynamic Properties,"A list of additional measurements, facts, characteristics, or assertions about the record. Meant to provide a mechanism for structured content.",Recommended best practice is to use a key:value encoding schema for a data interchange format such as JSON.,"`{""heightInMeters"":1.5}`, `{""tragusLengthInMeters"":0.014, ""weightInGrams"":120}`, `{""natureOfID"":""expert identification"", ""identificationEvidence"":""cytochrome B sequence""}`, `{""relativeHumidity"":28, ""airTemperatureInCelsius"":22, ""sampleSizeInKilograms"":10}`, `{""aspectHeading"":277, ""slopeInDegrees"":6}`, `{""iucnStatus"":""vulnerable"", ""taxonDistribution"":""Neuquén, Argentina""}`",http://rs.tdwg.org/dwc/terms/,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/dynamicProperties-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/dynamicProperties,not in ABCD,simple
|
||||
http://rs.tdwg.org/dwc/terms/version/Occurrence-2018-09-06,Occurrence,Occurrence,An existence of an Organism (sensu http://rs.tdwg.org/dwc/terms/Organism) at a particular place at a particular time.,,A wolf pack on the shore of Kluane Lake in 1988. A virus in a plant leaf in a the New York Botanical Garden at 15:29 on 2014-10-23. A fungus in Central Park in the summer of 1929.,,2018-09-06,recommended,http://rs.tdwg.org/dwc/terms/version/Occurrence-2014-10-23,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/Occurrence,DataSets/DataSet/Units/Unit,extension
|
||||
http://rs.tdwg.org/dwc/terms/version/Occurrence-2020-08-20,Occurrence,Occurrence,An existence of an Organism (sensu http://rs.tdwg.org/dwc/terms/Organism) at a particular place at a particular time.,,A wolf pack on the shore of Kluane Lake in 1988. A virus in a plant leaf in the New York Botanical Garden at 15:29 on 2014-10-23. A fungus in Central Park in the summer of 1929.,,2020-08-20,recommended,http://rs.tdwg.org/dwc/terms/version/Occurrence-2018-09-06,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/Occurrence,DataSets/DataSet/Units/Unit,extension
|
||||
http://rs.tdwg.org/dwc/terms/version/occurrenceID-2017-10-06,occurrenceID,Occurrence ID,"An identifier for the Occurrence (as opposed to a particular digital record of the occurrence). In the absence of a persistent global unique identifier, construct one from a combination of identifiers in the record that will most closely make the occurrenceID globally unique.","Recommended best practice is to use a persistent, globally unique identifier.","`http://arctos.database.museum/guid/MSB:Mamm:233627`, `000866d2-c177-4648-a200-ead4007051b9`, `urn:catalog:UWBM:Bird:89776`",http://rs.tdwg.org/dwc/terms/Occurrence,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/occurrenceID-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/occurrenceID,DataSets/DataSet/Units/Unit/UnitGUID,simple
|
||||
http://rs.tdwg.org/dwc/terms/version/catalogNumber-2017-10-06,catalogNumber,Catalog Number,An identifier (preferably unique) for the record within the data set or collection.,,"`145732`, `145732a`, `2008.1334`, `R-4313`",http://rs.tdwg.org/dwc/terms/Occurrence,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/catalogNumber-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/catalogNumber,DataSets/DataSet/Units/Unit/UnitID,simple
|
||||
http://rs.tdwg.org/dwc/terms/version/recordNumber-2017-10-06,recordNumber,Record Number,"An identifier given to the Occurrence at the time it was recorded. Often serves as a link between field notes and an Occurrence record, such as a specimen collector's number.",,`OPP 7101`,http://rs.tdwg.org/dwc/terms/Occurrence,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/recordNumber-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/recordNumber,DataSets/DataSet/Units/Unit/CollectorsFieldNumber,simple
|
||||
|
@ -56,8 +56,8 @@ http://rs.tdwg.org/dwc/terms/version/parentEventID-2017-10-06,parentEventID,Pare
|
|||
http://rs.tdwg.org/dwc/terms/version/fieldNumber-2017-10-06,fieldNumber,Field Number,An identifier given to the event in the field. Often serves as a link between field notes and the Event.,,`RV Sol 87-03-08`,http://rs.tdwg.org/dwc/terms/Event,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/fieldNumber-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/fieldNumber,DataSets/DataSet/Units/Unit/Gathering/Code,simple
|
||||
http://rs.tdwg.org/dwc/terms/version/eventDate-2020-08-12,eventDate,Event Date,"The date-time or interval during which an Event occurred. For occurrences, this is the date-time when the event was recorded. Not suitable for a time in a geological context.",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). `2007-03-01T13:00:00Z/2008-05-11T15:30:00Z` (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC). `1900/1909` (some time during the interval between the beginning of the year 1900 and the end of the year 1909). `2007-11-13/15` (some time in the interval between 13 November 2007 and 15 November 2007).,http://rs.tdwg.org/dwc/terms/Event,2020-08-12,recommended,http://rs.tdwg.org/dwc/terms/version/eventDate-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/eventDate,accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin and DataSets/DataSet/Units/Unit/Gathering/ISODateTimeEnd,simple
|
||||
http://rs.tdwg.org/dwc/terms/version/eventTime-2020-08-12,eventTime,Event Time,The time or interval during which an Event occurred.,Recommended best practice is to use a date that conforms to ISO 8601-1:2019.,`14:07-0600` (2:07pm in the time zone six hours earlier than UTC). `08:40:21Z` (8:40:21am UTC). `13:00:00Z/15:30:00Z` (the interval between 1pm UTC and 3:30pm UTC).,http://rs.tdwg.org/dwc/terms/Event,2020-08-12,recommended,http://rs.tdwg.org/dwc/terms/version/eventTime-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/eventTime,accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin and DataSets/DataSet/Units/Unit/Gathering/ISODateTimeEnd,simple
|
||||
http://rs.tdwg.org/dwc/terms/version/startDayOfYear-2017-10-06,startDayOfYear,Start Day Of Year,"The earliest ordinal day of the year on which the Event occurred (1 for January 1, 365 for December 31, except in a leap year, in which case it is 366).",,"`1` (1 January). `366` (31 December), `365` (30 December in a leap year, 31 December in a non-leap year).",http://rs.tdwg.org/dwc/terms/Event,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/startDayOfYear-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/startDayOfYear,DataSets/DataSet/Units/Unit/Gathering/DateTime/DayNumberBegin,simple
|
||||
http://rs.tdwg.org/dwc/terms/version/endDayOfYear-2017-10-06,endDayOfYear,End Day Of Year,"The latest ordinal day of the year on which the Event occurred (1 for January 1, 365 for December 31, except in a leap year, in which case it is 366).",,"`1` (1 January). `32` (1 February). `366` (31 December). `365` (30 December in a leap year, 31 December in a non-leap year).",http://rs.tdwg.org/dwc/terms/Event,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/endDayOfYear-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/endDayOfYear,DataSets/DataSet/Units/Unit/Gathering/DateTime/DayNumberEnd,simple
|
||||
http://rs.tdwg.org/dwc/terms/version/startDayOfYear-2020-08-20,startDayOfYear,Start Day Of Year,"The earliest integer day of the year on which the Event occurred (1 for January 1, 365 for December 31, except in a leap year, in which case it is 366).",,"`1` (1 January). `366` (31 December), `365` (30 December in a leap year, 31 December in a non-leap year).",http://rs.tdwg.org/dwc/terms/Event,2020-08-20,recommended,http://rs.tdwg.org/dwc/terms/version/startDayOfYear-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/startDayOfYear,DataSets/DataSet/Units/Unit/Gathering/DateTime/DayNumberBegin,simple
|
||||
http://rs.tdwg.org/dwc/terms/version/endDayOfYear-2020-08-20,endDayOfYear,End Day Of Year,"The latest integer day of the year on which the Event occurred (1 for January 1, 365 for December 31, except in a leap year, in which case it is 366).",,"`1` (1 January). `32` (1 February). `366` (31 December). `365` (30 December in a leap year, 31 December in a non-leap year).",http://rs.tdwg.org/dwc/terms/Event,2020-08-20,recommended,http://rs.tdwg.org/dwc/terms/version/endDayOfYear-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/endDayOfYear,DataSets/DataSet/Units/Unit/Gathering/DateTime/DayNumberEnd,simple
|
||||
http://rs.tdwg.org/dwc/terms/version/year-2017-10-06,year,Year,"The four-digit year in which the Event occurred, according to the Common Era Calendar.",,"`1160`, `2008`",http://rs.tdwg.org/dwc/terms/Event,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/year-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/year,accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin,simple
|
||||
http://rs.tdwg.org/dwc/terms/version/month-2020-08-12,month,Month,The integer month in which the Event occurred.,,`1` (January). `10` (October).,http://rs.tdwg.org/dwc/terms/Event,2020-08-12,recommended,http://rs.tdwg.org/dwc/terms/version/month-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/month,accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin,simple
|
||||
http://rs.tdwg.org/dwc/terms/version/day-2017-10-06,day,Day,The integer day of the month on which the Event occurred.,,"`9`, `28`",http://rs.tdwg.org/dwc/terms/Event,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/day-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/day,accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin,simple
|
||||
|
@ -99,18 +99,18 @@ http://rs.tdwg.org/dwc/terms/version/decimalLongitude-2017-10-06,decimalLongitud
|
|||
http://rs.tdwg.org/dwc/terms/version/geodeticDatum-2017-10-06,geodeticDatum,Geodetic Datum,"The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which the geographic coordinates given in decimalLatitude and decimalLongitude as based.","Recommended best practice is to use the EPSG code of the SRS, if known. Otherwise use a controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value `unknown`.","`EPSG:4326`, `WGS84`, `NAD27`, `Campo Inchauspe`, `European 1950`, `Clarke 1866`, `unknown`",http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/geodeticDatum-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/geodeticDatum,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/SpatialDatum,simple
|
||||
http://rs.tdwg.org/dwc/terms/version/coordinateUncertaintyInMeters-2017-10-06,coordinateUncertaintyInMeters,Coordinate Uncertainty In Meters,"The horizontal distance (in meters) from the given decimalLatitude and decimalLongitude describing the smallest circle containing the whole of the Location. Leave the value empty if the uncertainty is unknown, cannot be estimated, or is not applicable (because there are no coordinates). Zero is not a valid value for this term.",,`30` (reasonable lower limit of a GPS reading under good conditions if the actual precision was not recorded at the time). `71` (uncertainty for a UTM coordinate having 100 meter precision and a known spatial reference system).,http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/coordinateUncertaintyInMeters-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/coordinateUncertaintyInMeters,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/CoordinateErrorDistanceInMeters,simple
|
||||
http://rs.tdwg.org/dwc/terms/version/coordinatePrecision-2017-10-06,coordinatePrecision,Coordinate Precision,A decimal representation of the precision of the coordinates given in the decimalLatitude and decimalLongitude.,,`0.00001` (normal GPS limit for decimal degrees). `0.000278` (nearest second). `0.01667` (nearest minute). `1.0` (nearest degree).,http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/coordinatePrecision-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/coordinatePrecision,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLong/ISOAccuracy or DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLong/AccuracyStatement,simple
|
||||
http://rs.tdwg.org/dwc/terms/version/pointRadiusSpatialFit-2017-10-06,pointRadiusSpatialFit,Point Radius Spatial Fit,"The ratio of the area of the point-radius (decimalLatitude, decimalLongitude, coordinateUncertaintyInMeters) to the area of the true (original, or most specific) spatial representation of the Location. Legal values are 0, greater than or equal to 1, or undefined. A value of 1 is an exact match or 100% overlap. A value of 0 should be used if the given point-radius does not completely contain the original representation. The pointRadiusSpatialFit is undefined (and should be left blank) if the original representation is a point without uncertainty and the given georeference is not that same point (without uncertainty). If both the original and the given georeference are the same point, the pointRadiusSpatialFit is 1.","Detailed explanations with graphical examples can be found in the Guide to Best Practices for Georeferencing, Chapman and Wieczorek, eds. 2006.","Detailed explanations with graphical examples can be found in the Guide to Best Practices for Georeferencing, Chapman and Wieczorek, eds. 2006.",http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/pointRadiusSpatialFit-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/pointRadiusSpatialFit,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/PointRadiusSpatialFit,simple
|
||||
http://rs.tdwg.org/dwc/terms/version/pointRadiusSpatialFit-2020-08-20,pointRadiusSpatialFit,Point Radius Spatial Fit,"The ratio of the area of the point-radius (decimalLatitude, decimalLongitude, coordinateUncertaintyInMeters) to the area of the true (original, or most specific) spatial representation of the Location. Legal values are 0, greater than or equal to 1, or undefined. A value of 1 is an exact match or 100% overlap. A value of 0 should be used if the given point-radius does not completely contain the original representation. The pointRadiusSpatialFit is undefined (and should be left empty) if the original representation is a point without uncertainty and the given georeference is not that same point (without uncertainty). If both the original and the given georeference are the same point, the pointRadiusSpatialFit is 1.","Detailed explanations with graphical examples can be found in the Georeferencing Best Practices, Chapman and Wieczorek, 2020 (https://doi.org/10.15468/doc-gg7h-s853).","`0`, `1`, `1.5708`",http://purl.org/dc/terms/Location,2020-08-20,recommended,http://rs.tdwg.org/dwc/terms/version/pointRadiusSpatialFit-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/pointRadiusSpatialFit,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/PointRadiusSpatialFit,simple
|
||||
http://rs.tdwg.org/dwc/terms/version/verbatimCoordinates-2017-10-06,verbatimCoordinates,Verbatim Coordinates,"The verbatim original spatial coordinates of the Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in verbatimSRS and the coordinate system should be stored in verbatimCoordinateSystem.",,"`41 05 54S 121 05 34W`, `17T 630000 4833400`",http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/verbatimCoordinates-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimCoordinates,{DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/CoordinatesText or DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesUTM/UTMText},simple
|
||||
http://rs.tdwg.org/dwc/terms/version/verbatimLatitude-2017-10-06,verbatimLatitude,Verbatim Latitude,"The verbatim original latitude of the Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in verbatimSRS and the coordinate system should be stored in verbatimCoordinateSystem.",,`41 05 54.03S`,http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/verbatimLatitude-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimLatitude,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/VerbatimLatitude,simple
|
||||
http://rs.tdwg.org/dwc/terms/version/verbatimLongitude-2017-10-06,verbatimLongitude,Verbatim Longitude,"The verbatim original longitude of the Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in verbatimSRS and the coordinate system should be stored in verbatimCoordinateSystem.",,"`121d 10' 34"" W`",http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/verbatimLongitude-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimLongitude,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/VerbatimLongitude,simple
|
||||
http://rs.tdwg.org/dwc/terms/version/verbatimCoordinateSystem-2017-10-06,verbatimCoordinateSystem,Verbatim Coordinate System,The spatial coordinate system for the verbatimLatitude and verbatimLongitude or the verbatimCoordinates of the Location.,Recommended best practice is to use a controlled vocabulary.,"`decimal degrees`, `degrees decimal minutes`, `degrees minutes seconds`, `UTM`",http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/verbatimCoordinateSystem-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimCoordinateSystem,(partly) DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesGrid/GridCellSystem,simple
|
||||
http://rs.tdwg.org/dwc/terms/version/verbatimCoordinateSystem-2020-08-20,verbatimCoordinateSystem,Verbatim Coordinate System,The coordinate format for the verbatimLatitude and verbatimLongitude or the verbatimCoordinates of the Location.,Recommended best practice is to use a controlled vocabulary.,"`decimal degrees`, `degrees decimal minutes`, `degrees minutes seconds`, `UTM`",http://purl.org/dc/terms/Location,2020-08-20,recommended,http://rs.tdwg.org/dwc/terms/version/verbatimCoordinateSystem-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimCoordinateSystem,(partly) DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesGrid/GridCellSystem,simple
|
||||
http://rs.tdwg.org/dwc/terms/version/verbatimSRS-2017-10-06,verbatimSRS,Verbatim SRS,"The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which coordinates given in verbatimLatitude and verbatimLongitude, or verbatimCoordinates are based.","Recommended best practice is to use the EPSG code of the SRS, if known. Otherwise use a controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value `unknown`.","`unknown`, `EPSG:4326`, `WGS84`, `NAD27`, `Campo Inchauspe`, `European 1950`, `Clarke 1866`",http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/verbatimSRS-2009-07-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimSRS,not in ABCD,simple
|
||||
http://rs.tdwg.org/dwc/terms/version/footprintWKT-2017-10-06,footprintWKT,Footprint WKT,"A Well-Known Text (WKT) representation of the shape (footprint, geometry) that defines the Location. A Location may have both a point-radius representation (see decimalLatitude) and a footprint representation, and they may differ from each other.",,"`POLYGON ((10 20, 11 20, 11 21, 10 21, 10 20))` (the one-degree bounding box with opposite corners at longitude=10, latitude=20 and longitude=11, latitude=21)",http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/footprintWKT-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/footprintWKT,DataSets/DataSet/Units/Unit/Gathering/FootprintWKT (ABCD v2.06b),simple
|
||||
http://rs.tdwg.org/dwc/terms/version/footprintSRS-2018-09-06,footprintSRS,Footprint SRS,"A Well-Known Text (WKT) representation of the Spatial Reference System (SRS) for the footprintWKT of the Location. Do not use this term to describe the SRS of the decimalLatitude and decimalLongitude, even if it is the same as for the footprintWKT - use the geodeticDatum instead.",,"`GEOGCS[""GCS_WGS_1984"", DATUM[""D_WGS_1984"", SPHEROID[""WGS_1984"",6378137,298.257223563]], PRIMEM[""Greenwich"",0], UNIT[""Degree"",0.0174532925199433]]` (WKT for the standard WGS84 Spatial Reference System EPSG:4326).",http://purl.org/dc/terms/Location,2018-09-06,recommended,http://rs.tdwg.org/dwc/terms/version/footprintSRS-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/footprintSRS,not in ABCD,simple
|
||||
http://rs.tdwg.org/dwc/terms/version/footprintSpatialFit-2017-10-06,footprintSpatialFit,Footprint Spatial Fit,"The ratio of the area of the footprint (footprintWKT) to the area of the true (original, or most specific) spatial representation of the Location. Legal values are 0, greater than or equal to 1, or undefined. A value of 1 is an exact match or 100% overlap. A value of 0 should be used if the given footprint does not completely contain the original representation. The footprintSpatialFit is undefined (and should be left blank) if the original representation is a point and the given georeference is not that same point. If both the original and the given georeference are the same point, the footprintSpatialFit is 1.","Detailed explanations with graphical examples can be found in the Guide to Best Practices for Georeferencing, Chapman and Wieczorek, eds. 2006.","Detailed explanations with graphical examples can be found in the Guide to Best Practices for Georeferencing, Chapman and Wieczorek, eds. 2006.",http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/footprintSpatialFit-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/footprintSpatialFit,DataSets/DataSet/Units/Unit/Gathering/FootprintSpatialFit (ABCD v2.06b),simple
|
||||
http://rs.tdwg.org/dwc/terms/version/footprintSpatialFit-2020-08-20,footprintSpatialFit,Footprint Spatial Fit,"The ratio of the area of the footprint (footprintWKT) to the area of the true (original, or most specific) spatial representation of the Location. Legal values are 0, greater than or equal to 1, or undefined. A value of 1 is an exact match or 100% overlap. A value of 0 should be used if the given footprint does not completely contain the original representation. The footprintSpatialFit is undefined (and should be left empty) if the original representation is a point without uncertainty and the given georeference is not that same point (without uncertainty). If both the original and the given georeference are the same point, the footprintSpatialFit is 1.","Detailed explanations with graphical examples can be found in the Georeferencing Best Practices, Chapman and Wieczorek, 2020 (https://doi.org/10.15468/doc-gg7h-s853).","`0`, `1`, `1.5708`",http://purl.org/dc/terms/Location,2020-08-20,recommended,http://rs.tdwg.org/dwc/terms/version/footprintSpatialFit-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/footprintSpatialFit,DataSets/DataSet/Units/Unit/Gathering/FootprintSpatialFit,simple
|
||||
http://rs.tdwg.org/dwc/terms/version/georeferencedBy-2017-10-06,georeferencedBy,Georeferenced By,"A list (concatenated and separated) of names of people, groups, or organizations who determined the georeference (spatial representation) for the Location.",Recommended best practice is to separate the values in a list with space vertical bar space (` | `).,"`Brad Millen (ROM)`, `Kristina Yamamoto | Janet Fang`",http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/georeferencedBy-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferencedBy,not in ABCD,simple
|
||||
http://rs.tdwg.org/dwc/terms/version/georeferencedDate-2020-08-12,georeferencedDate,Georeferenced Date,The date on which the Location was georeferenced.,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). `2007-03-01T13:00:00Z/2008-05-11T15:30:00Z` (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC). `1900/1909` (some time during the interval between the beginning of the year 1900 and the end of the year 1909). `2007-11-13/15` (some time in the interval between 13 November 2007 and 15 November 2007).,http://purl.org/dc/terms/Location,2020-08-12,recommended,http://rs.tdwg.org/dwc/terms/version/georeferencedDate-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferencedDate,not in ABCD,simple
|
||||
http://rs.tdwg.org/dwc/terms/version/georeferenceProtocol-2017-10-06,georeferenceProtocol,Georeference Protocol,"A description or reference to the methods used to determine the spatial footprint, coordinates, and uncertainties.",,"`Guide to Best Practices for Georeferencing. (Chapman and Wieczorek, eds. 2006). Global Biodiversity Information Facility.`, `MaNIS/HerpNet/ORNIS Georeferencing Guidelines`, `Georeferencing Quick Reference Guide`",http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/georeferenceProtocol-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferenceProtocol,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinateMethod,simple
|
||||
http://rs.tdwg.org/dwc/terms/version/georeferenceProtocol-2020-08-20,georeferenceProtocol,Georeference Protocol,"A description or reference to the methods used to determine the spatial footprint, coordinates, and uncertainties.",,"`Georeferencing Quick Reference Guide (Zermoglio et al. 2020, https://doi.org/10.35035/e09p-h128)`",http://purl.org/dc/terms/Location,2020-08-20,recommended,http://rs.tdwg.org/dwc/terms/version/georeferenceProtocol-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferenceProtocol,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinateMethod,simple
|
||||
http://rs.tdwg.org/dwc/terms/version/georeferenceSources-2017-10-06,georeferenceSources,Georeference Sources,"A list (concatenated and separated) of maps, gazetteers, or other resources used to georeference the Location, described specifically enough to allow anyone in the future to use the same resources.",Recommended best practice is to separate the values in a list with space vertical bar space (` | `).,"`https://www.geonames.org/`, `USGS 1:24000 Florence Montana Quad | Terrametrics 2008 on Google Earth`, `GeoLocate`",http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/georeferenceSources-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferenceSources,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceSources,simple
|
||||
http://rs.tdwg.org/dwc/terms/version/georeferenceVerificationStatus-2017-10-06,georeferenceVerificationStatus,Georeference Verification Status,A categorical description of the extent to which the georeference has been verified to represent the best possible spatial description.,Recommended best practice is to use a controlled vocabulary.,"`requires verification`, `verified by collector`, `verified by curator`",http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/georeferenceVerificationStatus-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferenceVerificationStatus,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceVerificationStatus,simple
|
||||
http://rs.tdwg.org/dwc/terms/version/georeferenceRemarks-2017-10-06,georeferenceRemarks,Georeference Remarks,"Notes or comments about the spatial description determination, explaining assumptions made in addition or opposition to the those formalized in the method referred to in georeferenceProtocol.",,`Assumed distance by road (Hwy. 101)`.,http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/georeferenceRemarks-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferenceRemarks,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceRemarks,simple
|
||||
|
@ -541,6 +541,7 @@ http://rs.tdwg.org/dwc/terms/version/earliestEpochOrLowestSeries-2009-04-24,earl
|
|||
http://rs.tdwg.org/dwc/terms/version/earliestEraOrLowestErathem-2009-04-24,earliestEraOrLowestErathem,Earliest Era Or Lowest Erathem,The full name of the earliest possible geochronologic era or lowest chronostratigraphic erathem attributable to the stratigraphic horizon from which the cataloged item was collected.,"Examples: ""Cenozoic"", ""Mesozoic""",,http://rs.tdwg.org/dwc/terms/GeologicalContext,2009-04-24,superseded,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/EarliestEraOrLowestErathem-2005-07-03,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/earliestEraOrLowestErathem,not in ABCD,
|
||||
http://rs.tdwg.org/dwc/terms/version/earliestPeriodOrLowestSystem-2009-04-24,earliestPeriodOrLowestSystem,Earliest Period Or Lowest System,The full name of the earliest possible geochronologic period or lowest chronostratigraphic system attributable to the stratigraphic horizon from which the cataloged item was collected.,"Examples: ""Neogene"", ""Tertiary"", ""Quaternary""",,http://rs.tdwg.org/dwc/terms/GeologicalContext,2009-04-24,superseded,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/EarliestPeriodOrLowestSystem-2005-07-03,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/earliestPeriodOrLowestSystem,not in ABCD,
|
||||
http://rs.tdwg.org/dwc/terms/version/endDayOfYear-2009-04-24,endDayOfYear,End Day Of Year,"The latest ordinal day of the year on which the Event occurred (1 for January 1, 365 for December 31, except in a leap year, in which case it is 366).","Examples: ""1"" (=1 Jan), ""366"" (=31 Dec), ""365"" (=30 Dec in a leap year, 31 Dec in a non-leap year)",,http://rs.tdwg.org/dwc/terms/Event,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/DayOfYear-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/endDayOfYear,DataSets/DataSet/Units/Unit/Gathering/DateTime/DayNumberEnd,
|
||||
http://rs.tdwg.org/dwc/terms/version/endDayOfYear-2017-10-06,endDayOfYear,End Day Of Year,"The latest ordinal day of the year on which the Event occurred (1 for January 1, 365 for December 31, except in a leap year, in which case it is 366).",,"`1` (1 January). `32` (1 February). `366` (31 December). `365` (30 December in a leap year, 31 December in a non-leap year).",http://rs.tdwg.org/dwc/terms/Event,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/endDayOfYear-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/endDayOfYear,DataSets/DataSet/Units/Unit/Gathering/DateTime/DayNumberEnd,simple
|
||||
http://rs.tdwg.org/dwc/terms/version/EndTimeOfDay-2008-11-19,EndTimeOfDay,End Time of Day,"The time of day when the event ended, expressed as decimal hours from midnight, local time.","Examples: ""12.0"" (= noon), ""13.5"" (= 1:30pm)",,http://rs.tdwg.org/dwc/terms/Event,2008-11-19,deprecated,http://www.iobis.org/obis/version/EndTimeOfDay-2005-07-10,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/EndTimeOfDay,DataSets/DataSet/Units/Unit/Gathering/DateTime/TimeOfDayEnd,
|
||||
http://rs.tdwg.org/dwc/terms/version/establishmentMeans-2009-04-24,establishmentMeans,Establishment Means,The process by which the biological individual(s) represented in the Occurrence became established at the location. Recommended best practice is to use a controlled vocabulary.,"Examples: ""native"", ""introduced"", ""naturalised"", ""invasive"", ""managed""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/establishmentMeans,DataSets/DataSet/Units/Unit/Gathering/EstablishmentMeans,
|
||||
http://rs.tdwg.org/dwc/terms/version/Event-2009-04-29,Event,Event,The category of information pertaining to an event (an action that occurs at a place and during a period of time).,,,,2009-04-29,superseded,http://rs.tdwg.org/dwc/terms/version/SamplingEvent-2008-11-19,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/Event,DataSets/DataSet/Units/Unit/Gathering,
|
||||
|
@ -575,6 +576,7 @@ http://rs.tdwg.org/dwc/terms/version/family-2009-08-24,family,Family,The full sc
|
|||
http://rs.tdwg.org/dwc/terms/version/fieldNotes-2009-04-24,fieldNotes,Field Notes,"One of a) an indicator of the existence of, b) a reference to (publication, URI), or c) the text of notes taken in the field about the Event.","Example: ""notes available in Grinnell-Miller Library""",,http://rs.tdwg.org/dwc/terms/Event,2009-04-24,superseded,http://rs.tdwg.org/dwc/curatorial/version/FieldNotes-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/fieldNotes,DataSets/DataSet/Units/Unit/FieldNotes,
|
||||
http://rs.tdwg.org/dwc/terms/version/fieldNumber-2009-04-24,fieldNumber,Field Number,An identifier given to the event in the field. Often serves as a link between field notes and the Event.,"Example: ""RV Sol 87-03-08""",,http://rs.tdwg.org/dwc/terms/Event,2009-04-24,superseded,http://rs.tdwg.org/dwc/curatorial/version/FieldNumber-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/fieldNumber,DataSets/DataSet/Units/Unit/Gathering/Code,
|
||||
http://rs.tdwg.org/dwc/terms/version/footprintSpatialFit-2009-04-24,footprintSpatialFit,Footprint Spatial Fit,"The ratio of the area of the footprint (footprintWKT) to the area of the true (original, or most specific) spatial representation of the Location. Legal values are 0, greater than or equal to 1, or undefined. A value of 1 is an exact match or 100% overlap. A value of 0 should be used if the given footprint does not completely contain the original representation. The footprintSpatialFit is undefined (and should be left blank) if the original representation is a point and the given georeference is not that same point. If both the original and the given georeference are the same point, the footprintSpatialFit is 1.","Detailed explanations with graphical examples can be found in the ""Guide to Best Practices for Georeferencing"", Chapman and Wieczorek, eds. 2006.",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/geospatial/version/FootprintSpatialFit-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/footprintSpatialFit,DataSets/DataSet/Units/Unit/Gathering/FootprintSpatialFit (ABCD v2.06b),
|
||||
http://rs.tdwg.org/dwc/terms/version/footprintSpatialFit-2017-10-06,footprintSpatialFit,Footprint Spatial Fit,"The ratio of the area of the footprint (footprintWKT) to the area of the true (original, or most specific) spatial representation of the Location. Legal values are 0, greater than or equal to 1, or undefined. A value of 1 is an exact match or 100% overlap. A value of 0 should be used if the given footprint does not completely contain the original representation. The footprintSpatialFit is undefined (and should be left blank) if the original representation is a point and the given georeference is not that same point. If both the original and the given georeference are the same point, the footprintSpatialFit is 1.","Detailed explanations with graphical examples can be found in the Guide to Best Practices for Georeferencing, Chapman and Wieczorek, eds. 2006.","Detailed explanations with graphical examples can be found in the Guide to Best Practices for Georeferencing, Chapman and Wieczorek, eds. 2006.",http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/footprintSpatialFit-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/footprintSpatialFit,DataSets/DataSet/Units/Unit/Gathering/FootprintSpatialFit (ABCD v2.06b),simple
|
||||
http://rs.tdwg.org/dwc/terms/version/footprintSRS-2009-07-06,footprintSRS,Footprint SRS,"A Well-Known Text (WKT) representation of the Spatial Reference System (SRS) for the footprintWKT of the Location. Do not use this term to describe the SRS of the decimalLatitude and decimalLongitude, even if it is the same as for the footprintWKT - use the geodeticDatum instead.","Example: The WKT for the standard WGS84 SRS (EPSG:4326) is ""GEOGCS[""GCS_WGS_1984"",DATUM[""D_WGS_1984"",SPHEROID[""WGS_1984"",6378137,298.257223563]],PRIMEM[""Greenwich"",0],UNIT[""Degree"",0.0174532925199433]]"" without the enclosing quotes.",,http://purl.org/dc/terms/Location,2009-07-06,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/footprintSRS,not in ABCD,
|
||||
http://rs.tdwg.org/dwc/terms/version/footprintSRS-2017-10-06,footprintSRS,Footprint SRS,"A Well-Known Text (WKT) representation of the Spatial Reference System (SRS) for the footprintWKT of the Location. Do not use this term to describe the SRS of the decimalLatitude and decimalLongitude, even if it is the same as for the footprintWKT - use the geodeticDatum instead.",,"`GEOGCS[""GCS_WGS_1984"",DATUM[""D_WGS_1984"",SPHEROID[""WGS_1984"",6378137,298.257223563]],PRIMEM[""Greenwich"",0],UNIT[""Degree"",0.0174532925199433]]` (WKT for the standard WGS84 Spatial Reference System EPSG:4326).",http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/footprintSRS-2009-07-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/footprintSRS,not in ABCD,simple
|
||||
http://rs.tdwg.org/dwc/terms/version/footprintWKT-2009-04-24,footprintWKT,Footprint WKT,"A Well-Known Text (WKT) representation of the shape (footprint, geometry) that defines the Location. A Location may have both a point-radius representation (see decimalLatitude) and a footprint representation, and they may differ from each other.","Example: the one-degree bounding box with opposite corners at (longitude=10, latitude=20) and (longitude=11, latitude=21) would be expressed in well-known text as POLYGON ((10 20, 11 20, 11 21, 10 21, 10 20))",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/geospatial/version/FootprintWKT-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/footprintWKT,DataSets/DataSet/Units/Unit/Gathering/FootprintWKT (ABCD v2.06b),
|
||||
|
@ -594,6 +596,7 @@ http://rs.tdwg.org/dwc/terms/version/georeferencedBy-2014-10-23,georeferencedBy,
|
|||
http://rs.tdwg.org/dwc/terms/version/georeferencedDate-2011-10-16,georeferencedDate,Georeferenced Date,"The date on which the Location was georeferenced. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).","Examples: ""1963-03-08T14:07-0600"" is 8 Mar 1963 2:07pm in the time zone six hours earlier than UTC, ""2009-02-20T08:40Z"" is 20 Feb 2009 8:40am UTC, ""1809-02-12"" is 12 Feb 1809, ""1906-06"" is Jun 1906, ""1971"" is just that year, ""2007-03-01T13:00:00Z/2008-05-11T15:30:00Z"" is the interval between 1 Mar 2007 1pm UTC and 11 May 2008 3:30pm UTC, ""2007-11-13/15"" is the interval between 13 Nov 2007 and 15 Nov 2007.",,http://purl.org/dc/terms/Location,2011-10-16,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferencedDate,not in ABCD,
|
||||
http://rs.tdwg.org/dwc/terms/version/georeferencedDate-2017-10-06,georeferencedDate,Georeferenced Date,The date on which the Location was georeferenced.,Recommended best practice is to use a date that conforms to ISO 8601:2004(E).,`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). `2007-03-01T13:00:00Z/2008-05-11T15:30:00Z` (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC). `1900/1909` (some time during the interval between the beginning of the year 1900 and the end of the year 1909). `2007-11-13/15` (some time in the interval between 13 November 2007 and 15 November 2007).,http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/georeferencedDate-2011-10-16,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferencedDate,not in ABCD,simple
|
||||
http://rs.tdwg.org/dwc/terms/version/georeferenceProtocol-2009-04-24,georeferenceProtocol,Georeference Protocol,"A description or reference to the methods used to determine the spatial footprint, coordinates, and uncertainties.","Examples: ""Guide to Best Practices for Georeferencing. (Chapman and Wieczorek, eds. 2006). Global Biodiversity Information Facility."", ""MaNIS/HerpNet/ORNIS Georeferencing Guidelines"", ""Georeferencing Quick Reference Guide""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/geospatial/version/GeoreferenceProtocol-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferenceProtocol,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinateMethod,
|
||||
http://rs.tdwg.org/dwc/terms/version/georeferenceProtocol-2017-10-06,georeferenceProtocol,Georeference Protocol,"A description or reference to the methods used to determine the spatial footprint, coordinates, and uncertainties.",,"`Guide to Best Practices for Georeferencing. (Chapman and Wieczorek, eds. 2006). Global Biodiversity Information Facility.`, `MaNIS/HerpNet/ORNIS Georeferencing Guidelines`, `Georeferencing Quick Reference Guide`",http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/georeferenceProtocol-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferenceProtocol,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinateMethod,simple
|
||||
http://rs.tdwg.org/dwc/terms/version/georeferenceRemarks-2009-04-24,georeferenceRemarks,Georeference Remarks,"Notes or comments about the spatial description determination, explaining assumptions made in addition or opposition to the those formalized in the method referred to in georeferenceProtocol.","Example: ""assumed distance by road (Hwy. 101)""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/geospatial/version/GeoreferenceRemarks-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferenceRemarks,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceRemarks,
|
||||
http://rs.tdwg.org/dwc/terms/version/georeferenceSources-2009-04-24,georeferenceSources,Georeference Sources,"A list (concatenated and separated) of maps, gazetteers, or other resources used to georeference the Location, described specifically enough to allow anyone in the future to use the same resources.","Examples: ""USGS 1:24000 Florence Montana Quad; Terrametrics 2008 on Google Earth""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/geospatial/version/GeoreferenceSources-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferenceSources,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceSources,
|
||||
http://rs.tdwg.org/dwc/terms/version/georeferenceSources-2014-10-23,georeferenceSources,Georeference Sources,"A list (concatenated and separated) of maps, gazetteers, or other resources used to georeference the Location, described specifically enough to allow anyone in the future to use the same resources.","The recommended best practice is to separate the values with a vertical bar (' | '). Examples: ""GeoLocate"", ""USGS 1:24000 Florence Montana Quad | Terrametrics 2008 on Google Earth"".",,http://purl.org/dc/terms/Location,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/georeferenceSources-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferenceSources,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceSources,
|
||||
|
@ -706,6 +709,7 @@ http://rs.tdwg.org/dwc/terms/version/nomenclaturalCode-2009-09-21,nomenclaturalC
|
|||
http://rs.tdwg.org/dwc/terms/version/nomenclaturalStatus-2009-04-24,nomenclaturalStatus,Nomenclatural Status,The status related to the original publication of the name and its conformance to the relevant rules of nomenclature. It is based essentially on an algorithm according to the business rules of the code. It requires no taxonomic opinion.,"Examples: ""nom. ambig."", ""nom. illeg."", ""nom. subnud.""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/nomenclaturalStatus,(DataSets/DataSet/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeDesignation/NomenclaturalReference/TitleCitation) pro parte,
|
||||
http://rs.tdwg.org/dwc/terms/version/Occurrence-2009-04-29,Occurrence,Occurrence,"The category of information pertaining to evidence of an occurrence in nature, in a collection, or in a dataset (specimen, observation, etc.).",,,,2009-04-29,superseded,http://rs.tdwg.org/dwc/terms/version/Sample-2008-11-19,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/Occurrence,DataSets/DataSet/Units/Unit,
|
||||
http://rs.tdwg.org/dwc/terms/version/Occurrence-2014-10-23,Occurrence,Occurrence,An existence of an Organism (sensu http://rs.tdwg.org/dwc/terms/Organism) at a particular place at a particular time.,Examples: A wolf pack on the shore of Kluane Lake in 1988. A virus in a plant leaf in a the New York Botanical Garden at 15:29 on 2014-10-23. A fungus in Central Park in the summer of 1929.,,,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/Occurrence-2009-04-29,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/Occurrence,DataSets/DataSet/Units/Unit,
|
||||
http://rs.tdwg.org/dwc/terms/version/Occurrence-2018-09-06,Occurrence,Occurrence,An existence of an Organism (sensu http://rs.tdwg.org/dwc/terms/Organism) at a particular place at a particular time.,,A wolf pack on the shore of Kluane Lake in 1988. A virus in a plant leaf in a the New York Botanical Garden at 15:29 on 2014-10-23. A fungus in Central Park in the summer of 1929.,,2018-09-06,superseded,http://rs.tdwg.org/dwc/terms/version/Occurrence-2014-10-23,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/Occurrence,DataSets/DataSet/Units/Unit,extension
|
||||
http://rs.tdwg.org/dwc/terms/version/occurrenceAttributes-2009-04-24,occurrenceAttributes,Occurrence Attributes,"A list (concatenated and separated) of additional measurements, facts, characteristics, or assertions about the Occurrence.","Examples: ""Tragus length: 14mm; Weight: 120g"", ""Height: 1-1.5 meters tall; flowers yellow; uncommon"".",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,deprecated,http://rs.tdwg.org/dwc/dwcore/version/Attributes-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/occurrenceAttributes,DataSets/DataSet/Units/Unit/MeasurementsOrFacts,
|
||||
http://rs.tdwg.org/dwc/terms/version/occurrenceDetails-2009-04-24,occurrenceDetails,Occurrence Details,"A reference (publication, URI) to the most detailed information available about the Occurrence.","Example: ""http://mvzarctos.berkeley.edu/guid/MVZ:Mamm:165861""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,deprecated,http://rs.tdwg.org/dwc/dwcore/version/RelatedInformation-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/occurrenceDetails,DataSets/DataSet/Units/Unit/RecordURI,
|
||||
http://rs.tdwg.org/dwc/terms/version/occurrenceID-2009-04-24,occurrenceID,Occurrence ID,"An identifier for the Occurrence (as opposed to a particular digital record of the occurrence). In the absence of a persistent global unique identifier, construct one from a combination of identifiers in the record that will most closely make the occurrenceID globally unique.","For a specimen in the absence of a bona fide global unique identifier, for example, use the form: ""urn:catalog:[institutionCode]:[collectionCode]:[catalogNumber]. Examples: ""urn:lsid:nhm.ku.edu:Herps:32"", ""urn:catalog:FMNH:Mammal:145732""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/GlobalUniqueIdentifier-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/occurrenceID,DataSets/DataSet/Units/Unit/UnitGUID,
|
||||
|
@ -740,6 +744,7 @@ http://rs.tdwg.org/dwc/terms/version/parentNameUsageID-2009-09-21,parentNameUsag
|
|||
http://rs.tdwg.org/dwc/terms/version/phylum-2009-04-24,phylum,Phylum,The name of the phlyum (or division) in which the scientificName is classified.,"Example: ""Chordata""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/Phylum-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/phylum,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = phylum,
|
||||
http://rs.tdwg.org/dwc/terms/version/phylum-2009-08-24,phylum,Phylum,The full scientific name of the phylum or division in which the taxon is classified.,"Examples: ""Chordata"" (phylum), ""Bryophyta"" (division)",,http://rs.tdwg.org/dwc/terms/Taxon,2009-08-24,superseded,http://rs.tdwg.org/dwc/terms/version/phylum-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/phylum,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = phylum,
|
||||
http://rs.tdwg.org/dwc/terms/version/pointRadiusSpatialFit-2009-04-24,pointRadiusSpatialFit,Point Radius Spatial Fit,"The ratio of the area of the point-radius (decimalLatitude, decimalLongitude, coordinateUncertaintyInMeters) to the area of the true (original, or most specific) spatial representation of the Location. Legal values are 0, greater than or equal to 1, or undefined. A value of 1 is an exact match or 100% overlap. A value of 0 should be used if the given point-radius does not completely contain the original representation. The pointRadiusSpatialFit is undefined (and should be left blank) if the original representation is a point without uncertainty and the given georeference is not that same point (without uncertainty). If both the original and the given georeference are the same point, the pointRadiusSpatialFit is 1.","Detailed explanations with graphical examples can be found in the ""Guide to Best Practices for Georeferencing"", Chapman and Wieczorek, eds. 2006.",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/geospatial/version/PointRadiusSpatialFit-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/pointRadiusSpatialFit,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/PointRadiusSpatialFit,
|
||||
http://rs.tdwg.org/dwc/terms/version/pointRadiusSpatialFit-2017-10-06,pointRadiusSpatialFit,Point Radius Spatial Fit,"The ratio of the area of the point-radius (decimalLatitude, decimalLongitude, coordinateUncertaintyInMeters) to the area of the true (original, or most specific) spatial representation of the Location. Legal values are 0, greater than or equal to 1, or undefined. A value of 1 is an exact match or 100% overlap. A value of 0 should be used if the given point-radius does not completely contain the original representation. The pointRadiusSpatialFit is undefined (and should be left blank) if the original representation is a point without uncertainty and the given georeference is not that same point (without uncertainty). If both the original and the given georeference are the same point, the pointRadiusSpatialFit is 1.","Detailed explanations with graphical examples can be found in the Guide to Best Practices for Georeferencing, Chapman and Wieczorek, eds. 2006.","Detailed explanations with graphical examples can be found in the Guide to Best Practices for Georeferencing, Chapman and Wieczorek, eds. 2006.",http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/pointRadiusSpatialFit-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/pointRadiusSpatialFit,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/PointRadiusSpatialFit,simple
|
||||
http://rs.tdwg.org/dwc/terms/version/preparations-2009-04-24,preparations,Preparations,A list (concatenated and separated) of preparations and preservation methods for a specimen.,"Examples: ""skin; skull; skeleton"", ""whole animal (ETOH); tissue (EDTA)"", ""fossil"", ""cast"", ""photograph"", ""DNA extract""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,superseded,http://rs.tdwg.org/dwc/curatorial/version/Preparations-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/preparations,DataSets/DataSet/Units/Unit/SpecimenUnit/Preparations/PreparationsText,
|
||||
http://rs.tdwg.org/dwc/terms/version/preparations-2014-10-23,preparations,Preparations,A list (concatenated and separated) of preparations and preservation methods for a specimen.,"The recommended best practice is to separate the values with a vertical bar (' | '). Examples: ""fossil"", ""cast"", ""photograph"", ""DNA extract"", ""skin | ""skull | skeleton"", ""whole animal (ETOH) | tissue (EDTA)"".",,http://rs.tdwg.org/dwc/terms/Occurrence,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/preparations-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/preparations,DataSets/DataSet/Units/Unit/SpecimenUnit/Preparations/PreparationsText,
|
||||
http://rs.tdwg.org/dwc/terms/version/PreservedSpecimen-2014-10-23,PreservedSpecimen,Preserved Specimen,A specimen that has been preserved.,,,,2014-10-23,superseded,http://rs.tdwg.org/dwc/dwctype/version/PreservedSpecimen-2011-10-16,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/PreservedSpecimen,RecordBasisEnum/PreservedSpecimen,
|
||||
|
@ -803,6 +808,7 @@ http://rs.tdwg.org/dwc/terms/version/scientificNameRank-2009-07-06,scientificNam
|
|||
http://rs.tdwg.org/dwc/terms/version/sex-2009-04-24,sex,Sex,The sex of the biological individual(s) represented in the Occurrence. Recommended best practice is to use a controlled vocabulary.,"Examples: ""female"", ""hermaphrodite"", ""8 males, 4 females""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/Sex-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/sex,DataSets/DataSet/Units/Unit/Sex,
|
||||
http://rs.tdwg.org/dwc/terms/version/specificEpithet-2009-04-24,specificEpithet,Specific Epithet,The name of the first or species epithet of the scientificName.,"Examples: ""concolor"", ""gottschei""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/SpecificEpithet-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/specificEpithet,{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/SpeciesEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/FirstEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/SpeciesEpithet},
|
||||
http://rs.tdwg.org/dwc/terms/version/startDayOfYear-2009-04-24,startDayOfYear,Start Day Of Year,"The earliest ordinal day of the year on which the Event occurred (1 for January 1, 365 for December 31, except in a leap year, in which case it is 366).","Examples: ""1"" (=1 Jan), ""366"" (=31 Dec), ""365"" (=30 Dec in a leap year, 31 Dec in a non-leap year)",,http://rs.tdwg.org/dwc/terms/Event,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/DayOfYear-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/startDayOfYear,DataSets/DataSet/Units/Unit/Gathering/DateTime/DayNumberBegin,
|
||||
http://rs.tdwg.org/dwc/terms/version/startDayOfYear-2017-10-06,startDayOfYear,Start Day Of Year,"The earliest ordinal day of the year on which the Event occurred (1 for January 1, 365 for December 31, except in a leap year, in which case it is 366).",,"`1` (1 January). `366` (31 December), `365` (30 December in a leap year, 31 December in a non-leap year).",http://rs.tdwg.org/dwc/terms/Event,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/startDayOfYear-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/startDayOfYear,DataSets/DataSet/Units/Unit/Gathering/DateTime/DayNumberBegin,simple
|
||||
http://rs.tdwg.org/dwc/terms/version/StartTimeOfDay-2008-11-19,StartTimeOfDay,Start Time of Day,"The time of day when the event began, expressed as decimal hours from midnight, local time.","Examples: ""12.0"" (= noon), ""13.5"" (= 1:30pm)",,http://rs.tdwg.org/dwc/terms/Event,2008-11-19,deprecated,http://www.iobis.org/obis/version/StartTimeOfDay-2005-07-10,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/StartTimeOfDay,accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin,
|
||||
http://rs.tdwg.org/dwc/terms/version/stateProvince-2009-04-24,stateProvince,State Province,"The name of the next smaller administrative region than country (state, province, canton, department, region, etc.) in which the Location occurs.","Examples: ""Montana"", ""Minas Gerais"", ""Córdoba""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/StateProvince-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/stateProvince,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= State or = Province (etc.),
|
||||
http://rs.tdwg.org/dwc/terms/version/subgenus-2009-04-24,subgenus,Subgenus,The name of the subgenus in which the scientificName is classified.,"Example: ""Strobus"" subgenus of Pinus",,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,superseded,http://www.iobis.org/obis/version/Subgenus-2005-07-10,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/subgenus,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/Subgenus,
|
||||
|
@ -826,6 +832,7 @@ http://rs.tdwg.org/dwc/terms/version/typeStatus-2009-04-24,typeStatus,Type Statu
|
|||
http://rs.tdwg.org/dwc/terms/version/typeStatus-2014-10-23,typeStatus,Type Status,"A list (concatenated and separated) of nomenclatural types (type status, typified scientific name, publication) applied to the subject.","The recommended best practice is to separate the values with a vertical bar (' | '). Examples: ""holotype of Ctenomys sociabilis. Pearson O. P., and M. I. Christie. 1985. Historia Natural, 5(37):388"", ""holotype of Pinus abies | holotype of Picea abies"".",,http://rs.tdwg.org/dwc/terms/Identification,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/typeStatus-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/typeStatus,DataSets/DataSet/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeText,
|
||||
http://rs.tdwg.org/dwc/terms/version/verbatimCoordinates-2009-04-24,verbatimCoordinates,Verbatim Coordinates,"The verbatim original spatial coordinates of the Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in verbatimSRS and the coordinate system should be stored in verbatimCoordinateSystem.","Examples: ""41 05 54S 121 05 34W"", ""17T 630000 4833400""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/geospatial/version/VerbatimCoordinates-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimCoordinates,{DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/CoordinatesText or DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesUTM/UTMText},
|
||||
http://rs.tdwg.org/dwc/terms/version/verbatimCoordinateSystem-2009-04-24,verbatimCoordinateSystem,Verbatim Coordinate System,The spatial coordinate system for the verbatimLatitude and verbatimLongitude or the verbatimCoordinates of the Location. Recommended best practice is to use a controlled vocabulary.,"Examples: ""decimal degrees"", ""degrees decimal minutes"", ""degrees minutes seconds"", ""UTM""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/geospatial/version/VerbatimCoordinateSystem-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimCoordinateSystem,(partly) DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesGrid/GridCellSystem,
|
||||
http://rs.tdwg.org/dwc/terms/version/verbatimCoordinateSystem-2017-10-06,verbatimCoordinateSystem,Verbatim Coordinate System,The spatial coordinate system for the verbatimLatitude and verbatimLongitude or the verbatimCoordinates of the Location.,Recommended best practice is to use a controlled vocabulary.,"`decimal degrees`, `degrees decimal minutes`, `degrees minutes seconds`, `UTM`",http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/verbatimCoordinateSystem-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimCoordinateSystem,(partly) DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesGrid/GridCellSystem,simple
|
||||
http://rs.tdwg.org/dwc/terms/version/verbatimDepth-2009-04-24,verbatimDepth,Verbatim Depth,The original description of the depth below the local surface.,"Example: ""100-200 m""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/curatorial/version/VerbatimDepth-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimDepth,DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactText,
|
||||
http://rs.tdwg.org/dwc/terms/version/verbatimElevation-2009-04-24,verbatimElevation,Verbatim Elevation,"The original description of the elevation (altitude, usually above sea level) of the Location.","Example: ""100-200 m""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/curatorial/version/VerbatimElevation-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimElevation,DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactText,
|
||||
http://rs.tdwg.org/dwc/terms/version/verbatimEventDate-2009-04-24,verbatimEventDate,Verbatim EventDate,The verbatim original representation of the date and time information for an Event.,"Examples: ""spring 1910"", ""Marzo 2002"", ""1999-03-XX"", ""17IV1934""",,http://rs.tdwg.org/dwc/terms/Event,2009-04-24,superseded,http://rs.tdwg.org/dwc/curatorial/version/VerbatimCollectingDate-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimEventDate,DataSets/DataSet/Units/Unit/Gathering/DateTime/DateText,
|
||||
|
|
|
Loading…
Reference in New Issue