First release, Darwin's 100th birthday in the year of Darwin, 2009-02-12.
After Width: | Height: | Size: 119 B |
After Width: | Height: | Size: 1.8 KiB |
After Width: | Height: | Size: 958 B |
|
@ -0,0 +1,134 @@
|
|||
/* The Darwin Core Task Group */
|
||||
/* Adapted from the Dublin Core Metadata Initiative */
|
||||
/* http://tdwg.org/ */
|
||||
|
||||
|
||||
/* Note: Todd Fahrner's keyword hack for IE. */
|
||||
/* http://alistapart.com/stories/sizematters/ */
|
||||
body, body div, body p, body th, body td, body li, body dd {
|
||||
/* More specific to override rule in importing sheet. */
|
||||
font-size: x-small;
|
||||
/* False value for WinIE4/5. */
|
||||
voice-family: "\"}\"";
|
||||
/* Trick WinIE4/5 into thinking the rule is over. */
|
||||
voice-family: inherit;
|
||||
/* Recover from trick. */
|
||||
font-size: small;
|
||||
/* Intended value for better browsers. */
|
||||
}
|
||||
html>body, html>body div, html>body p, html>body th, html>body td, html>body li, html>body dd {
|
||||
font-size: small;
|
||||
/* Be nice to Opera. */
|
||||
}
|
||||
/* END Todd Fahrner's keyword hack for IE. */
|
||||
|
||||
/* Body */
|
||||
body {
|
||||
background: #FFF;
|
||||
color: #000;
|
||||
font-family: Verdana, Arial, "Arial Unicode MS", Helvetica, sans-serif;
|
||||
margin: 10px;
|
||||
padding: 10px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
/* Links */
|
||||
a:link { color: #333; text-decoration: underline; }
|
||||
a:visited { color: #666; text-decoration: underline; }
|
||||
a:hover, a:visited:hover, a:active { color: #F60; text-decoration: underline; }
|
||||
|
||||
/* Misc */
|
||||
code, pre, tt { color: #000; font-family: Courier, "Courier New", "Andale Mono", Monoco, monospace; }
|
||||
hr { color: #CCC; height: 1px; }
|
||||
img { border: 0; }
|
||||
th, td { vertical-align: top; }
|
||||
|
||||
/* Forms */
|
||||
form { margin: 0; padding: 0; }
|
||||
input.text { font-size: 80%; }
|
||||
input.search { font: 11px Verdana, Arial, "Arial Unicode MS", Helvetica, sans-serif; }
|
||||
input.button { font: 11px Verdana, Arial, "Arial Unicode MS", Helvetica, sans-serif; margin: 0; padding: 0; }
|
||||
|
||||
/* Headings */
|
||||
h1 { color: #333; font: bold 135% Verdana, Arial, "Arial Unicode MS", Helvetica, sans-serif; }
|
||||
h2 { color: #F30; font: bold 120% Verdana, Arial, "Arial Unicode MS", Helvetica, sans-serif; }
|
||||
h3 { color: #000; font: bold 105% Verdana, Arial, "Arial Unicode MS", Helvetica, sans-serif; }
|
||||
h4 { color: #666; font: bold 100% Verdana, Arial, "Arial Unicode MS", Helvetica, sans-serif; font-style: italic; }
|
||||
h5 { color: #777; font: bold 80% Tahoma, Geneva, "Arial Unicode MS", Arial, Helvetica, sans-serif; }
|
||||
|
||||
/* Code/Preformatted - puts gray background behind example */
|
||||
code.example, pre.example { background: #EEE; line-height: 140%; }
|
||||
|
||||
/* Table used for sidebar menus on home page only */
|
||||
table.menuhome { width: 150px; }
|
||||
table.menuhome th.cat { background: #CCC; font-size: 80%; font-weight: bold; padding: 4px 6px; text-align: center; vertical-align: top; }
|
||||
table.menuhome td.item { background: #EEE; font-size: 80%; padding: 4px 6px 6px 6px; vertical-align: top; }
|
||||
|
||||
/* Home page elements */
|
||||
div.deck { color: #666; font-size: 80%; padding-bottom: 1em; }
|
||||
div.newsarchive { border-bottom: 1px solid #CCC; font-size: 80%; padding: 1em 0; text-align: center; }
|
||||
div.dates { font-size: 80%; padding: 1em 0; text-align: center; }
|
||||
|
||||
/* Table used for home page layout */
|
||||
table.home { width: 100%; }
|
||||
table.home td.sidebar { background: #EEE; padding: 0; width: 150px; }
|
||||
table.home td.main { padding: 0 15px; }
|
||||
|
||||
/* Table used for sidebar menus */
|
||||
table.menu { width: 180px; }
|
||||
table.menu th.cat { background: #CCC; font-size: 80%; font-weight: bold; padding: 4px 6px; text-align: center; vertical-align: top; }
|
||||
table.menu td.item { background: #EEE; font-size: 80%; padding: 4px 6px 8px 6px; vertical-align: top; }
|
||||
|
||||
/* Table used in Document pages - yellow background for table heads */
|
||||
table.docinfo { background: #FFC; width: 100%; margin-bottom: 10px; }
|
||||
table.docinfo th { text-align: right; padding: 4px; width: 15%; }
|
||||
table.docinfo td { text-align: left; padding: 4px; width: 85%; }
|
||||
|
||||
/* Table used in Working Group pages - gray background for table heads */
|
||||
table.wginfo { background: #EEE; width: 100%; margin-bottom: 10px; }
|
||||
table.wginfo th { text-align: right; padding: 4px; width: 15%; }
|
||||
table.wginfo td { text-align: left; padding: 4px; width: 85%; }
|
||||
|
||||
/* Specs for tables with border */
|
||||
table.border { border-top: 1px solid #CCC; border-left: 1px solid #CCC; margin-bottom: 10px; width: 95%; border-collapse: collapse;}
|
||||
table.border th { background: #EEE; font-family: Verdana, Arial, "Arial Unicode MS", Helvetica, sans-serif; }
|
||||
table.border td, table.border th { border-right: 1px solid #CCC; border-bottom: 1px solid #CCC; padding: .5em; }
|
||||
table.border caption { font-weight: bold; border-bottom: 1px solid #CCC;}
|
||||
|
||||
/* Specs for tables with no border */
|
||||
table.noborder { margin-bottom: 10px; }
|
||||
table.noborder th { background: #EEE; font-family: Verdana, Arial, "Arial Unicode MS", Helvetica, sans-serif; }
|
||||
table.noborder td, table.noborder th { padding: .5em; }
|
||||
|
||||
/* Header and Footer */
|
||||
td.crumb { font-size: 80%; }
|
||||
div.headerhome { padding-bottom: 1em; }
|
||||
div.header { border-bottom: 1px solid #CCC; margin-bottom: 1em; padding-bottom: 1em; }
|
||||
div.footer { border-top: 2px solid #CCC; margin-top: 1em; }
|
||||
div.footer p { font-size: 80%; }
|
||||
.small, p.small { font-size: 10px; }
|
||||
|
||||
/* Hidden DCMI name for print */
|
||||
div.dcmiprint { display: none; }
|
||||
|
||||
/* News items */
|
||||
div.rss-item { border-bottom: 1px solid #CCC; padding-bottom: 1em; padding-top: 1em; }
|
||||
div.rss-type { color: #F30; font-size: 80%; font-weight: bold; }
|
||||
div.rss-title { font-weight: bold; margin: 0; padding: 0; }
|
||||
div.rss-description p { margin: 0; padding: 4px 0 6px 0; }
|
||||
|
||||
/* Style for search engine (htdig) */
|
||||
.refineSearch { font: 11px/13px Arial, Helvetica, sans-serif; }
|
||||
.resultMatches { font: 12px Arial, Helvetica, sans-serif; font-weight:bold; }
|
||||
|
||||
/* New styles */
|
||||
#tableObsolete { width: 100%; border-style: solid; border-width: 1px; border-color: #FF6; }
|
||||
#tableObsolete td.colNote { padding: 5px; vertical-align: top; background: #FFC; }
|
||||
|
||||
/* THE DUBLIN CORE METADATA REGISTRY */
|
||||
.registry { color: #FFF; font-size: 80%; }
|
||||
/* Links in header */
|
||||
a.registry { font-size: 80%; font-weight: bold; }
|
||||
a.registry:link { color: #FFF; text-decoration: none; }
|
||||
a.registry:visited { color: #FFF; text-decoration: none; }
|
||||
a.registry:hover, a.registry:visited:hover, a.registry:active { color: #FFF; text-decoration: underline; }
|
|
@ -0,0 +1,57 @@
|
|||
|
||||
// format date as dd-mmm-yy
|
||||
// example: 12-Jan-99
|
||||
|
||||
function date_ddmmmyy(date)
|
||||
{
|
||||
var d = date.getDate();
|
||||
var m = date.getMonth() + 1;
|
||||
var y = date.getYear();
|
||||
|
||||
// handle different year values
|
||||
// returned by IE and NS in
|
||||
// the year 2000.
|
||||
|
||||
if(y >= 2000)
|
||||
{
|
||||
y -= 2000;
|
||||
}
|
||||
if(y >= 100)
|
||||
{
|
||||
y -= 100;
|
||||
}
|
||||
|
||||
// could use splitString() here
|
||||
// but the following method is
|
||||
// more compatible
|
||||
var mmm =
|
||||
( 1==m)?'1':( 2==m)?'2':(3==m)?'3':
|
||||
( 4==m)?'4':( 5==m)?'5':(6==m)?'6':
|
||||
( 7==m)?'7':( 8==m)?'8':(9==m)?'9':
|
||||
(10==m)?'10':(11==m)?'11':'12';
|
||||
|
||||
return "" + "20" + (y<10?"0"+y:y) + "-" + mmm + "-" + (d<10?"0"+d:d);
|
||||
|
||||
}
|
||||
|
||||
|
||||
//
|
||||
// get last modified date of the
|
||||
// current document.
|
||||
//
|
||||
function date_lastmodified()
|
||||
{
|
||||
var lmd = document.lastModified;
|
||||
var s = "Unknown";
|
||||
var d1;
|
||||
|
||||
// check if we have a valid date
|
||||
// before proceeding
|
||||
if(0 != (d1=Date.parse(lmd)))
|
||||
{
|
||||
s = "" + date_ddmmmyy(new Date(d1));
|
||||
}
|
||||
|
||||
return s;
|
||||
}
|
||||
|
|
@ -0,0 +1,27 @@
|
|||
<!--
|
||||
|
||||
// Dreamweaver code
|
||||
function MM_openBrWindow(theURL,winName,features) { //v2.0
|
||||
window.open(theURL,winName,features);
|
||||
}
|
||||
function MM_preloadImages() { //v3.0
|
||||
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
|
||||
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
|
||||
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
|
||||
}
|
||||
function MM_findObj(n, d) { //v4.01
|
||||
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
|
||||
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
|
||||
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
|
||||
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
|
||||
if(!x && d.getElementById) x=d.getElementById(n); return x;
|
||||
}
|
||||
function MM_swapImage() { //v3.0
|
||||
var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
|
||||
if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
|
||||
}
|
||||
function MM_swapImgRestore() { //v3.0
|
||||
var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
|
||||
}
|
||||
|
||||
//-->
|
|
@ -0,0 +1,11 @@
|
|||
|
||||
var browserName = navigator.appName;
|
||||
var browserVer = parseInt(navigator.appVersion);
|
||||
var version = "";
|
||||
var msie4 = (browserName == "Microsoft Internet Explorer" && browserVer >= 4);
|
||||
if ((browserName == "Netscape" && browserVer >= 3) || msie4 || browserName=="Konqueror" || browserName=="Opera") {version = "n3";} else {version = "n2";}
|
||||
// Blurring links:
|
||||
function blurLink(theObject) { //
|
||||
if (msie4) {theObject.blur();}
|
||||
}
|
||||
|
|
@ -0,0 +1,420 @@
|
|||
body {
|
||||
background-color: #FFFFFF;
|
||||
margin-left: 0px;
|
||||
margin-top: 0px;
|
||||
margin-right: 0px;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
.pageWrapper { /* div */
|
||||
text-align:left;
|
||||
}
|
||||
.wrapperWidth { /* div */
|
||||
width:100%; /* affects all pages in the site - can be overriden by local CSS rules */
|
||||
margin: 0 auto; /* has to be here otherwise nothing is centered in Moz */
|
||||
}
|
||||
body,td,th,p,div {
|
||||
font: 12px/1.4 Verdana, Arial, Helvetica, sans-serif;
|
||||
color: #617694;
|
||||
}
|
||||
.small {
|
||||
font: 11px/1.2 Verdana, Arial, Helvetica, sans-serif;
|
||||
}
|
||||
p {
|
||||
margin-top: 0px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
strong, b {
|
||||
font-weight: bold;
|
||||
}
|
||||
blockquote {
|
||||
margin: 20px;
|
||||
margin-top: 0px;
|
||||
}
|
||||
.clearer {
|
||||
/* hr tags */
|
||||
border:none 0;
|
||||
border-top:1px solid #DDD;
|
||||
height:1px;
|
||||
margin-bottom:20px;
|
||||
}
|
||||
|
||||
hr.sub-divider {
|
||||
border: none 0;
|
||||
height: 1px;
|
||||
border-top: 1px dashed #AAA;
|
||||
margin: 3px 15px 2px 4px;
|
||||
}
|
||||
|
||||
|
||||
/*------------------------- main layout blocks ----------------------------------------------------*/
|
||||
#pageHeader {
|
||||
text-align:left;
|
||||
background:url(../images/headerMiddleBgd.jpg) top repeat-x;
|
||||
}
|
||||
#logo {
|
||||
width:238px;
|
||||
height:154px;
|
||||
background:url(../images/logo-bgd.gif) top left no-repeat;
|
||||
}
|
||||
|
||||
#logo img {
|
||||
padding-left:22px;
|
||||
padding-top:8px;
|
||||
}
|
||||
|
||||
#pageHeaderRight {
|
||||
width:510px;
|
||||
height:154px;
|
||||
float:right;
|
||||
background:url(../images/headerImage.jpg) right top no-repeat;
|
||||
}
|
||||
#loginBox {
|
||||
float:left;
|
||||
width:250px;
|
||||
margin-top:112px;
|
||||
}
|
||||
#searchBox {
|
||||
width:180px;
|
||||
margin-top:112px;
|
||||
margin-left:255px;
|
||||
}
|
||||
|
||||
/*------------------------- menu ----------------------------------------------------*/
|
||||
#menu {
|
||||
width:190px;
|
||||
float:left;
|
||||
padding-bottom:20px;
|
||||
background:#617694 url(../images/menu_bottom.jpg) bottom right no-repeat;
|
||||
}
|
||||
#menu div, #menu p, #menu th, #menu td {
|
||||
font: 14px/1.4 Tahoma, Tahoma, "Times New Roman", sans-serif;
|
||||
color: #FFCC00;
|
||||
}
|
||||
#menu .level1 {
|
||||
font: 16px/1.4 Tahoma, Tahoma, "Times New Roman", sans-serif;
|
||||
color: #FFCC00;
|
||||
}
|
||||
#menu a:link { color: #FFCC00; text-decoration:none; }
|
||||
#menu a:visited { color:#FFCC00; text-decoration:none; }
|
||||
#menu a:hover { color:#FFFFFF; text-decoration:none; }
|
||||
#menu a:active { color:#FFFFFF; text-decoration:none; }
|
||||
#menu .highlighted a:link { color: #FFFFFF; text-decoration:none; }
|
||||
#menu .highlighted a:visited { color:#FFFFFF; text-decoration:none; }
|
||||
#menu .highlighted a:hover { color:#FFFFFF; text-decoration:none; }
|
||||
#menu .highlighted a:active { color:#FFFFFF; text-decoration:none; }
|
||||
|
||||
.topMenu {
|
||||
margin:0;
|
||||
padding:0;
|
||||
margin-left:8px;
|
||||
}
|
||||
.subMenu {
|
||||
margin:0;
|
||||
padding:0;
|
||||
margin-left: 2px;
|
||||
padding-left: 10px;
|
||||
margin-bottom:2px;
|
||||
border-left:1px solid #999999;
|
||||
}
|
||||
.menuItem {
|
||||
margin:0;
|
||||
padding:0;
|
||||
}
|
||||
|
||||
/*------------------------- breadcrumbs ----------------------------------------------------*/
|
||||
#breadcrumbs {
|
||||
text-align:left;
|
||||
font: 11px/1.0 Verdana, Arial, Helvetica, sans-serif;
|
||||
margin: 0 auto; /* has to be here otherwise nothing is centered in Moz */
|
||||
margin-left: 230px; /* for menu to float left */
|
||||
}
|
||||
#pageContent {
|
||||
width:auto;
|
||||
text-align:left;
|
||||
margin: 0 auto; /* has to be here otherwise nothing is centered in Moz */
|
||||
margin-left: 230px; /* for menu to float left */
|
||||
padding: 20px;
|
||||
padding-left: 0;
|
||||
padding-right: 40px;
|
||||
}
|
||||
#mainContent {
|
||||
text-align:left;
|
||||
margin: 0 auto; /* has to be here otherwise nothing is centered in Moz */
|
||||
}
|
||||
|
||||
.messagebox {
|
||||
border: 1px solid #aaaaaa;
|
||||
background-color: #f0f0f0;
|
||||
width: 80%;
|
||||
margin: 0 auto 1em auto;
|
||||
padding: .2em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
div.sidebar
|
||||
{
|
||||
clear: right;
|
||||
width: 30%;
|
||||
float: right;
|
||||
font-size: 1.1em;
|
||||
margin-top: 6px;
|
||||
margin-left: 1%;
|
||||
margin-right: 1%;
|
||||
margin-bottom: 14px;
|
||||
padding: 6px;
|
||||
border: 1px solid #6A9832;
|
||||
-moz-border-radius: 8px;
|
||||
background-color: #ffffff;
|
||||
}
|
||||
|
||||
div.sidebar h2, div.sidebar h1
|
||||
{
|
||||
-moz-border-radius-topleft: 6px;
|
||||
-moz-border-radius-topright: 6px;
|
||||
margin-top: -6px;
|
||||
margin-left: -6px;
|
||||
margin-right: -6px;
|
||||
margin-bottom: 2px;
|
||||
padding-left: 6px;
|
||||
padding-right: 6px;
|
||||
padding-top: 2px;
|
||||
padding-bottom: 2px;
|
||||
background-color: #6A9832;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
#lastupdate {
|
||||
clear:both;
|
||||
width:auto;
|
||||
text-align:left;
|
||||
margin: 0 auto; /* has to be here otherwise nothing is centered in Moz */
|
||||
margin-left: 230px; /* for menu to float left */
|
||||
padding: 20px;
|
||||
padding-left: 0;
|
||||
padding-right: 40px;
|
||||
}
|
||||
|
||||
#pageFooter {
|
||||
clear:both;
|
||||
width:auto;
|
||||
text-align:left;
|
||||
margin: 0 auto; /* has to be here otherwise nothing is centered in Moz */
|
||||
margin-left: 230px; /* for menu to float left */
|
||||
margin-right: 40px;
|
||||
margin-top: 20px;
|
||||
padding-top:20px;
|
||||
border-top:1px solid #CCCCCC;
|
||||
}
|
||||
|
||||
#pageFooter p {
|
||||
font: 11px/1.0 Verdana, Arial, Helvetica, sans-serif;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
/*------------------------- content columns ---------------------------------------------------------------------*/
|
||||
/* width and padding are defined on each sub content template */
|
||||
#colLeft, #colRight, #colMain {
|
||||
float:left;
|
||||
text-align:left;
|
||||
margin: 0 auto;
|
||||
padding:0;
|
||||
}
|
||||
|
||||
/*---------------------------------------------------- links ----------------------------------------------------*/
|
||||
a:link { color: #CA6500; text-decoration:none; }
|
||||
a:visited { color: #CA6500; text-decoration:none; }
|
||||
a:hover { color: #CA6500; text-decoration:underline; }
|
||||
a:active { color: #CA6500; text-decoration:none; }
|
||||
|
||||
/*--------------------------------------------------- headers ---------------------------------------------------*/
|
||||
h1,h2,h3,h4,h5,h6 {
|
||||
font: 15px/1.5 Tahoma, Tahoma, "Times New Roman", sans-serif;
|
||||
letter-spacing:1px;
|
||||
margin-top: 0px;
|
||||
color: #6A9832;
|
||||
}
|
||||
h1 { font-size: 21px; }
|
||||
h2 { font-size: 19px; }
|
||||
h3 { font-size: 17px; }
|
||||
h4 { font-size: 15px; }
|
||||
h5 { font-size: 14px; }
|
||||
|
||||
|
||||
/*------------------------------------------ subgroups and standards tables -------------------------------------*/
|
||||
.tx-tdwg-pi-subgroup-members-listrow-header,
|
||||
.tx-tdwg-pi-standards-listrow-header,
|
||||
.tx-tdwg-pi-subgroup-list-listrow-header
|
||||
{
|
||||
background-color: #E7FFD0;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.tx-tdwg-pi-standards-listrow A,
|
||||
.tx-tdwg-pi-standards-listrow A:visited:hover,
|
||||
.tx-tdwg-pi-subgroup-list-listrow A,
|
||||
.tx-tdwg-pi-subgroup-list-listrow A:visited:hover
|
||||
{ font-weight: normal; }
|
||||
|
||||
.tx-tdwg-pi-standards-listrow td,
|
||||
.tx-tdwg-pi-subgroup-list-listrow td
|
||||
{
|
||||
padding-top: 1px;
|
||||
padding-bottom: 1px;
|
||||
}
|
||||
|
||||
.tx-tdwg-pi-subgroup-members-listrow-odd,
|
||||
.tx-tdwg-pi-standards-listrow-odd,
|
||||
.tx-tdwg-pi-subgroup-list-listrow-odd
|
||||
{ background-color: #f7f7f7; }
|
||||
|
||||
.tx-tdwg-pi-subgroup-members-listrow-even,
|
||||
.tx-tdwg-pi-standards-listrow-even,
|
||||
.tx-tdwg-pi-subgroup-list-listrow-even
|
||||
{ background-color: #f0f0f0; }
|
||||
|
||||
|
||||
/*---------------------------------------------------- lists ----------------------------------------------------*/
|
||||
#pageContent ul {
|
||||
margin: 0px;
|
||||
margin-left: 5px;
|
||||
margin-bottom: 20px;
|
||||
padding-left: 0px;
|
||||
list-style:none;
|
||||
}
|
||||
|
||||
#pageContent ul li {
|
||||
padding-left: 15px;
|
||||
padding-bottom: 2px;
|
||||
background-image:url(../images/listBullet.gif);
|
||||
background-position: 0 5px;
|
||||
background-repeat:no-repeat;
|
||||
}
|
||||
|
||||
#editorWrap1 ul li, #editorWrap2 ul li {
|
||||
padding-left: 0px;
|
||||
padding-bottom: 0px;
|
||||
background-image: none;
|
||||
background-position: 0 0px;
|
||||
}
|
||||
|
||||
#pageContent ol {
|
||||
margin: 0px;
|
||||
margin-left: 30px; /* shouldn't have to do that because of the padding existing in the container block */
|
||||
margin-bottom: 20px;
|
||||
padding-left: 0px;
|
||||
}
|
||||
#pageContent ol li {
|
||||
padding-left: 10px;
|
||||
}
|
||||
#pageContent ol ul li {
|
||||
padding-left: 20px;
|
||||
}
|
||||
#pageContent ol ul {
|
||||
padding-top: 10px;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
#pageContent ul ul {
|
||||
padding-top: 10px;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
/*---------------------------------------------------- forms ----------------------------------------------------*/
|
||||
form {
|
||||
margin:0px;
|
||||
}
|
||||
.textField {
|
||||
float:left;
|
||||
height:14px;
|
||||
font-family:Verdana, Arial, Helvetica, sans-serif;
|
||||
font-size: 11px;
|
||||
background-color: #eee;
|
||||
color: #666;
|
||||
padding:1px;
|
||||
margin-right:3px;
|
||||
border:none;
|
||||
}
|
||||
.formButton {
|
||||
height:16px;
|
||||
font:11px/1.0 Verdana, Arial, Helvetica, sans-serif;
|
||||
background-color: #CC6633;
|
||||
color: #FFF;
|
||||
padding:0;
|
||||
margin:0;
|
||||
border:none;
|
||||
cursor:pointer;
|
||||
}
|
||||
|
||||
form p { margin-top: .5em; margin-bottom: 0; padding: 0 .3em; text-indent: 0; }
|
||||
td {vertical-align: top;}
|
||||
td.fieldname { text-align: right; width: 30%; }
|
||||
|
||||
table.tx_tdwgsso_pi_membership_options tr { vertical-align: top; }
|
||||
table.tx_tdwgsso_pi_membership_link { width: 100%; }
|
||||
table.tx_tdwgsso_pi_membership_link td { font-weight: bold; }
|
||||
|
||||
td.tx_tdwgsso_pi_membership_options { border: 1px solid #aaaaaa; padding: 15px; }
|
||||
td.tx_tdwgsso_pi_membership_link { text-align: right; }
|
||||
|
||||
td.tx_tdwgsso_pi_membership_order_item_description { width: 50%; padding-right: 100px; }
|
||||
table.tx_tdwgsso_pi_membership_order_details input { text-align: right; }
|
||||
td.membership_order_input { text-align: right; }
|
||||
|
||||
img { border-style: none; }
|
||||
|
||||
|
||||
div.csc-mailform-field input,
|
||||
div.csc-mailform-field textarea { text-align: left; margin-bottom: 3px; }
|
||||
div.csc-mailform-field label { text-align: right; float: left; width: 15%; margin-top: 3px; margin-right: 5px; }
|
||||
input.csc-mailform-submit,
|
||||
div.csc-mailform-label { text-align: left; margin-left: 16%; margin-top: 3px; margin-right: 5px; margin-bottom: 10px;}
|
||||
|
||||
/* --- Tables --- */
|
||||
table.contenttable p
|
||||
{
|
||||
margin-bottom: 2px;
|
||||
color: black;
|
||||
text-align: left;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
table.contenttable th, table.contenttable td
|
||||
{
|
||||
padding:4px;
|
||||
text-align: left;
|
||||
color:#444;
|
||||
background:#e9e9e9;
|
||||
}
|
||||
|
||||
table.contenttable th {
|
||||
font-weight:bold;
|
||||
background:#efefef;
|
||||
color:#444;
|
||||
}
|
||||
|
||||
table.contenttable th p { font-weight: bold; }
|
||||
|
||||
|
||||
/* --- File List --- */
|
||||
tr.tr-odd { background-color: #f7f7f7; }
|
||||
tr.tr-even { background-color: #f0f0f0; }
|
||||
|
||||
td.csc-uploads-fileSize p,
|
||||
td.csc-uploads-fileName p { padding: 0px; margin: 0px; }
|
||||
|
||||
|
||||
/* --- TWiki tables --- */
|
||||
|
||||
table.contenttable tr.twikiTableEven td,
|
||||
table.contenttable tr.twikiTableOdd td { margin: 3px; padding: 4px; }
|
||||
|
||||
table.contenttable th.twikiFirstCol,
|
||||
table.contenttable tr.twikiTableOdd th,
|
||||
table.contenttable tr.twikiTableEven th{ color: #FFD700; background: #617694; }
|
||||
|
||||
table.contenttable tr.twikiTableEven td { color: #FFD700; background: #D8DFD5; text-align: left; }
|
||||
table.contenttable tr.twikiTableOdd td { color: #FFD700; background: #DCDCDC; text-align: left; }
|
||||
|
||||
|
||||
#creative_commons_icon {
|
||||
border: none;
|
||||
float: left;
|
||||
padding-right: 12px;
|
||||
}
|
After Width: | Height: | Size: 47 KiB |
|
@ -0,0 +1,13 @@
|
|||
#pageHeader { display:none; }
|
||||
#menu { display:none; }
|
||||
|
||||
#breadcrumbs {
|
||||
margin: 0;
|
||||
}
|
||||
#pageContent {
|
||||
margin: 0;
|
||||
padding-right: 0;
|
||||
}
|
||||
#pageFooter {
|
||||
margin: 0;
|
||||
}
|
|
@ -0,0 +1,214 @@
|
|||
/* default styles for extension "tx_srlanguagemenu_pi1" */
|
||||
.tx-srlanguagemenu-pi1 p { font-family: Verdana, sans-serif; font-size: .8em; line-height:100%; color: #35006d; margin-top: 8px; padding: 0; text-indent: 0; }
|
||||
.tx-srlanguagemenu-pi1 img { margin: 0 5px; padding: 0; border-style: none; }
|
||||
.tx-srlanguagemenu-pi1 .CUR { float: left; font-size: .8em; }
|
||||
.tx-srlanguagemenu-pi1 .CUR a { background-color: transparent; color: #35006d; text-decoration: none; font-weight: bold; }
|
||||
.tx-srlanguagemenu-pi1 .CUR a:focus, .tx-srlanguagemenu-pi1 .CUR a:hover, .tx-srlanguagemenu-pi1 .CUR a:active { color:#333333; }
|
||||
.tx-srlanguagemenu-pi1 .NO { float: left; font-size: .8em; }
|
||||
.tx-srlanguagemenu-pi1 .NO a { background-color:transparent; color: #35006d; text-decoration:none; font-weight:bold; }
|
||||
.tx-srlanguagemenu-pi1 .NO a:focus, .tx-srlanguagemenu-pi1 .NO a:hover, .tx-srlanguagemenu-pi1 .NO a:active { color:#333333; }
|
||||
.tx-srlanguagemenu-pi1 .INACT { float: left; font-size: .8em; }
|
||||
.tx-srlanguagemenu-pi1 .INACT a { background-color:transparent; color: #35006d; text-decoration: none; font-weight: normal; }
|
||||
.tx-srlanguagemenu-pi1 .INACT a:focus, .tx-srlanguagemenu-pi1 .INACT a:hover, .tx-srlanguagemenu-pi1 .INACT a:active { color: #333333; }
|
||||
.tx-srlanguagemenu-pi1 .SPC { float: left; font-family: Verdana, sans-serif; font-size: .8em; line-height: 100%; color: #35006d; }
|
||||
.tx-srlanguagemenu-pi1 select { font-size: .8em; font-family: Verdana, sans-serif; background-color: #35006d; color: white; font-weight: bold; }
|
||||
/* default styles for extension "tx_indexedsearch" */
|
||||
.tx-indexedsearch .tx-indexedsearch-browsebox LI { display:inline; margin-right:5px; }
|
||||
.tx-indexedsearch .tx-indexedsearch-searchbox INPUT.tx-indexedsearch-searchbox-button { width:100px; }
|
||||
.tx-indexedsearch .tx-indexedsearch-searchbox INPUT.tx-indexedsearch-searchbox-sword { width:150px; }
|
||||
.tx-indexedsearch .tx-indexedsearch-whatis { margin-top:10px; margin-bottom:5px; }
|
||||
.tx-indexedsearch .tx-indexedsearch-whatis .tx-indexedsearch-sw { font-weight:bold; font-style:italic; }
|
||||
.tx-indexedsearch .tx-indexedsearch-noresults { text-align:center; font-weight:bold; }
|
||||
.tx-indexedsearch .tx-indexedsearch-res TD.tx-indexedsearch-descr { font-style:italic; }
|
||||
.tx-indexedsearch .tx-indexedsearch-res .tx-indexedsearch-descr .tx-indexedsearch-redMarkup { color:red; }
|
||||
.tx-indexedsearch .tx-indexedsearch-res .tx-indexedsearch-info { background:#eeeeee; }
|
||||
.tx-indexedsearch .tx-indexedsearch-res .tx-indexedsearch-secHead { margin-top:20px; margin-bottom:5px; }
|
||||
.tx-indexedsearch .tx-indexedsearch-res .tx-indexedsearch-secHead H2 { margin-top:0px; margin-bottom:0px; }
|
||||
.tx-indexedsearch .tx-indexedsearch-res .tx-indexedsearch-secHead TD { background:#cccccc; vertical-align:middle; }
|
||||
.tx-indexedsearch .tx-indexedsearch-res .noResume { color:#666666; }
|
||||
.tx-indexedsearch .tx-indexedsearch-category { background:#cccccc; font-size:16px; font-weight:bold; }
|
||||
|
||||
/* Additional styles, needed for the tableless template_css.tmpl (styles don't conflict with the original template) */
|
||||
.tx-indexedsearch .res-tmpl-css { clear:both; margin-bottom:1em; }
|
||||
.tx-indexedsearch .searchbox-tmpl-css LABEL { margin-right:1em; width:10em; float:left; }
|
||||
.tx-indexedsearch .result-count-tmpl-css, .tx-indexedsearch .percent-tmpl-css { letter-spacing:0; font-weight:normal; margin-top:-1.2em; float:right; }
|
||||
.tx-indexedsearch .info-tmpl-css dt, .tx-indexedsearch dl.info-tmpl-css dd { float:left; }
|
||||
.tx-indexedsearch .info-tmpl-css dd.item-mtime { float:none; }
|
||||
.tx-indexedsearch .info-tmpl-css dd.item-path { float:none; }
|
||||
/* default styles for extension "tx_veguestbook_pi1" */
|
||||
/* example styles */
|
||||
.tx-guestbook-list-table { border-style: solid; border-color: #000000; border-width: 1px; }
|
||||
.tx-guestbook-list-header { background-color: #539521; color: #FFFFFF; font-weight:bold; }
|
||||
.tx-guestbook-list-row { background-color: #FFFFFF; }
|
||||
.tx-guestbook-list-rowleft { background-color: #EEEEEE; }
|
||||
.tx-guestbook-list-entrycomment-title {font-weight: bold; }
|
||||
.tx-guestbook-list-entrycomment { font-style: italic; }
|
||||
.tx-guestbook-list-small { font-size: 9px; color: #666666; }
|
||||
.tx-veguestbook-pi1-browsebox TD { font-size: 9px; color: #666666; }
|
||||
.tx-veguestbook-pi1-browsebox-strong, .tx-ttnews-browsebox-SCell { font-weight: bold; }
|
||||
.tx-veguestbook-pi1-browsebox-SCell { background-color: #EEEEEE; }
|
||||
.tx-guestbook-latest-header { background-color: #539521; color: #FFFFFF; font-weight:bold; }
|
||||
.tx-guestbook-latest-row { background-color: #FFFFFF; }
|
||||
.tx-guestbook-latest-small { font-size: 9px; color: #666666; }
|
||||
.tx-guestbook-form-inputfield { border-style: solid; border-width: 1pt; border-color:#539521; font-size:14px; color:#333333; }
|
||||
.tx-guestbook-form-inputfield-med { border-style: solid; border-width: 1pt; border-color:#539521; font-size:14px; color:#333333; width:100px; }
|
||||
.tx-guestbook-form-inputfield-big { border-style: solid; border-width: 1pt; border-color:#539521; font-size:14px; color:#333333; width:150px; }
|
||||
.tx-guestbook-form-textarea { border-style: solid; border-width: 1pt; border-color:#539521; font-size:14px; color:#333333; width:100%; }
|
||||
.tx-guestbook-form-obligationfield { color: #CC0000; }
|
||||
.tx-guestbook-form-error { color: #CC0000; }
|
||||
/* default styles for extension "tx_newloginbox_pi3" */
|
||||
.tx-newloginbox-pi3-listrow TD { background-color:#eeeeee; padding-left: 3px; padding-right: 3px; }
|
||||
.tx-newloginbox-pi3-listrow TR.tx-newloginbox-pi3-listrow-header TD { background-color:#cccccc; }
|
||||
.tx-newloginbox-pi3-listrow TR.tx-newloginbox-pi3-listrow-header TD P { font-weight:bold; }
|
||||
.tx-newloginbox-pi3-listrow TR.tx-newloginbox-pi3-listrow-odd TD { background-color:#f6f6f6; }
|
||||
/* default styles for extension "tx_srfeuserregister_pi1" */
|
||||
.tx-srfeuserregister-pi1 p { margin-top: .5em; margin-bottom: 0; padding: 0 .3em; text-indent: 0; }
|
||||
.tx-srfeuserregister-pi1 h4 { margin-top: 0; padding-left: .3em; }
|
||||
.tx-srfeuserregister-pi1 legend { padding: 0 .5em; font-weight: bold; }
|
||||
.tx-srfeuserregister-pi1 .tx-srfeuserregister-pi1-notice { margin-bottom: 1em; }
|
||||
.tx-srfeuserregister-pi1 .tx-srfeuserregister-pi1-trash { margin-bottom: 2em; }
|
||||
.tx-srfeuserregister-pi1 a { padding-left: 14px; background-image: url("typo3conf/ext/sr_feuser_register/pi1/internal_link.gif"); background-repeat: no-repeat; background-position: 0% 60%; text-decoration:none; }
|
||||
.tx-srfeuserregister-pi1 label { margin: 0; padding: 0; }
|
||||
.tx-srfeuserregister-pi1 label span { color: #ff0000; }
|
||||
.tx-srfeuserregister-pi1 .tx-srfeuserregister-pi1-error { color: #ff0000; }
|
||||
.tx-srfeuserregister-pi1 input { margin: 0; padding: 0 .5em 0 0; }
|
||||
.tx-srfeuserregister-pi1 input[type=password] { margin-right: 1em; }
|
||||
* html .tx-srfeuserregister-pi1 input.tx-srfeuserregister-pi1-password { margin-right: 1em; }
|
||||
.tx-srfeuserregister-pi1 input[type=radio], .tx-srfeuserregister-pi1 input[type=checkbox] { background-color: transparent; }
|
||||
* html .tx-srfeuserregister-pi1 input.tx-srfeuserregister-pi1-radio, * html .tx-srfeuserregister-pi1 input.tx-srfeuserregister-pi1-checkbox { background-color: transparent; }
|
||||
.tx-srfeuserregister-pi1 .tx-srfeuserregister-pi1-delete-icon { margin-left: 1em; background-color: transparent; }
|
||||
.tx-srfeuserregister-pi1 .tx-srfeuserregister-pi1-delete-icon:hover { cursor: pointer; }
|
||||
.tx-srfeuserregister-pi1 a.tx-srfeuserregister-pi1-file-view { padding-left: 15px; background-image: url("typo3conf/ext/sr_feuser_register/pi1/internal_link_new_window.gif"); background-color: transparent; background-repeat: no-repeat; font-size: .8em; margin-left: 1em; }
|
||||
.tx-srfeuserregister-pi1 ul { margin: 0; padding: 0; list-style-position: inside; }
|
||||
.tx-srfeuserregister-pi1 ul.tx-srfeuserregister-multiple-checkboxes { list-style-type: none; }
|
||||
.tx-srfeuserregister-pi1 ul.tx-srfeuserregister-multiple-checkboxes li { margin: 0 0 .3em 0; padding: 0; }
|
||||
.tx-srfeuserregister-pi1 ul.tx-srfeuserregister-multiple-checkboxes li label { margin: 0; padding: 0 0 0 .5em; }
|
||||
.tx-srfeuserregister-pi1 ul.tx-srfeuserregister-multiple-checked-values li { float: left; padding: 0 2em 0 0; margin: 0; }
|
||||
.tx-srfeuserregister-pi1 dl { margin: 0; padding: 1em 0 0 0; }
|
||||
.tx-srfeuserregister-pi1 dt, .tx-srfeuserregister-pi1 dd { margin: 0; padding: 0 0 .5em 0; float: left; }
|
||||
.tx-srfeuserregister-pi1 dt { clear: both; width: 25%; text-align: right; padding-right: 1em; }
|
||||
.tx-srfeuserregister-pi1 dd { text-align: left; width: 50%; }
|
||||
* html .tx-srfeuserregister-pi1 dd { float: none; }
|
||||
.tx-srfeuserregister-pi1 dd p { margin-top: 0; margin-bottom: .5em; padding: 0; }
|
||||
.tx-srfeuserregister-pi1 dd label { padding: 0 1em 0 .5em; }
|
||||
/* default styles for extension "tx_fileupload_pi1" */
|
||||
|
||||
/* default styles for extension "tx_cssstyledcontent" */
|
||||
/* Captions */
|
||||
DIV.csc-textpic-caption-c .csc-textpic-caption { text-align: center; }
|
||||
DIV.csc-textpic-caption-r .csc-textpic-caption { text-align: right; }
|
||||
DIV.csc-textpic-caption-l .csc-textpic-caption { text-align: left; }
|
||||
|
||||
/* Needed for noRows setting */
|
||||
DIV.csc-textpic DIV.csc-textpic-imagecolumn { float: left; display: inline; }
|
||||
|
||||
/* Border just around the image */
|
||||
DIV.csc-textpic-border DIV.csc-textpic-imagewrap .csc-textpic-image IMG {
|
||||
border: 2px solid black;
|
||||
padding: 0px 0px;
|
||||
}
|
||||
|
||||
DIV.csc-textpic-imagewrap { padding: 0; }
|
||||
|
||||
DIV.csc-textpic IMG { border: none; }
|
||||
|
||||
/* DIV: This will place the images side by side */
|
||||
DIV.csc-textpic DIV.csc-textpic-imagewrap DIV.csc-textpic-image { float: left; }
|
||||
|
||||
/* UL: This will place the images side by side */
|
||||
DIV.csc-textpic DIV.csc-textpic-imagewrap UL { list-style: none; margin: 0; padding: 0; }
|
||||
DIV.csc-textpic DIV.csc-textpic-imagewrap UL LI { float: left; margin: 0; padding: 0; }
|
||||
|
||||
/* DL: This will place the images side by side */
|
||||
DIV.csc-textpic DIV.csc-textpic-imagewrap DL.csc-textpic-image { float: left; }
|
||||
DIV.csc-textpic DIV.csc-textpic-imagewrap DL.csc-textpic-image DT { float: none; }
|
||||
DIV.csc-textpic DIV.csc-textpic-imagewrap DL.csc-textpic-image DD { float: none; }
|
||||
DIV.csc-textpic DIV.csc-textpic-imagewrap DL.csc-textpic-image DD IMG { border: none; } /* FE-Editing Icons */
|
||||
DL.csc-textpic-image { margin: 0; }
|
||||
DL.csc-textpic-image DT { margin: 0; display: inline; }
|
||||
DL.csc-textpic-image DD { margin: 0; }
|
||||
|
||||
/* Clearer */
|
||||
DIV.csc-textpic-clear { clear: both; }
|
||||
|
||||
/* Margins around images: */
|
||||
|
||||
/* Pictures on left, add margin on right */
|
||||
DIV.csc-textpic-left DIV.csc-textpic-imagewrap .csc-textpic-image,
|
||||
DIV.csc-textpic-intext-left-nowrap DIV.csc-textpic-imagewrap .csc-textpic-image,
|
||||
DIV.csc-textpic-intext-left DIV.csc-textpic-imagewrap .csc-textpic-image {
|
||||
display: inline; /* IE fix for double-margin bug */
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
/* Pictures on right, add margin on left */
|
||||
DIV.csc-textpic-right DIV.csc-textpic-imagewrap .csc-textpic-image,
|
||||
DIV.csc-textpic-intext-right-nowrap DIV.csc-textpic-imagewrap .csc-textpic-image,
|
||||
DIV.csc-textpic-intext-right DIV.csc-textpic-imagewrap .csc-textpic-image {
|
||||
display: inline; /* IE fix for double-margin bug */
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
/* Pictures centered, add margin on left */
|
||||
DIV.csc-textpic-center DIV.csc-textpic-imagewrap .csc-textpic-image {
|
||||
display: inline; /* IE fix for double-margin bug */
|
||||
margin-left: 10px;
|
||||
}
|
||||
DIV.csc-textpic DIV.csc-textpic-imagewrap .csc-textpic-image .csc-textpic-caption { margin: 0; }
|
||||
DIV.csc-textpic DIV.csc-textpic-imagewrap .csc-textpic-image IMG { margin: 0; }
|
||||
|
||||
/* Space below each image (also in-between rows) */
|
||||
DIV.csc-textpic DIV.csc-textpic-imagewrap .csc-textpic-image { margin-bottom: 5px; }
|
||||
DIV.csc-textpic-equalheight DIV.csc-textpic-imagerow { margin-bottom: 5px; display: block; }
|
||||
DIV.csc-textpic DIV.csc-textpic-imagerow { clear: both; }
|
||||
|
||||
/* No margins around the whole image-block */
|
||||
DIV.csc-textpic DIV.csc-textpic-imagewrap .csc-textpic-firstcol { margin-left: 0px !important; }
|
||||
DIV.csc-textpic DIV.csc-textpic-imagewrap .csc-textpic-lastcol { margin-right: 0px !important; }
|
||||
|
||||
/* Add margin from image-block to text (in case of "Text w/ images") */
|
||||
DIV.csc-textpic-intext-left DIV.csc-textpic-imagewrap,
|
||||
DIV.csc-textpic-intext-left-nowrap DIV.csc-textpic-imagewrap {
|
||||
margin-right: 10px !important;
|
||||
}
|
||||
DIV.csc-textpic-intext-right DIV.csc-textpic-imagewrap,
|
||||
DIV.csc-textpic-intext-right-nowrap DIV.csc-textpic-imagewrap {
|
||||
margin-left: 10px !important;
|
||||
}
|
||||
|
||||
/* Positioning of images: */
|
||||
|
||||
/* Above */
|
||||
DIV.csc-textpic-above DIV.csc-textpic-text { clear: both; }
|
||||
|
||||
/* Center (above or below) */
|
||||
DIV.csc-textpic-center { text-align: center; /* IE-hack */ }
|
||||
DIV.csc-textpic-center DIV.csc-textpic-imagewrap { margin: 0 auto; }
|
||||
DIV.csc-textpic-center DIV.csc-textpic-imagewrap .csc-textpic-image { text-align: left; /* Remove IE-hack */ }
|
||||
DIV.csc-textpic-center DIV.csc-textpic-text { text-align: left; /* Remove IE-hack */ }
|
||||
|
||||
/* Right (above or below) */
|
||||
DIV.csc-textpic-right DIV.csc-textpic-imagewrap { float: right; }
|
||||
DIV.csc-textpic-right DIV.csc-textpic-text { clear: right; }
|
||||
|
||||
/* Left (above or below) */
|
||||
DIV.csc-textpic-left DIV.csc-textpic-imagewrap { float: left; }
|
||||
DIV.csc-textpic-left DIV.csc-textpic-text { clear: left; }
|
||||
|
||||
/* Left (in text) */
|
||||
DIV.csc-textpic-intext-left DIV.csc-textpic-imagewrap { float: left; }
|
||||
|
||||
/* Right (in text) */
|
||||
DIV.csc-textpic-intext-right DIV.csc-textpic-imagewrap { float: right; }
|
||||
|
||||
/* Right (in text, no wrap around) */
|
||||
DIV.csc-textpic-intext-right-nowrap DIV.csc-textpic-imagewrap { float: right; clear: both; }
|
||||
/* Hide from IE5-mac. Only IE-win sees this. \*/
|
||||
* html DIV.csc-textpic-intext-right-nowrap .csc-textpic-text { height: 1%; }
|
||||
/* End hide from IE5/mac */
|
||||
|
||||
/* Left (in text, no wrap around) */
|
||||
DIV.csc-textpic-intext-left-nowrap DIV.csc-textpic-imagewrap { float: left; clear: both; }
|
||||
/* Hide from IE5-mac. Only IE-win sees this. \*/
|
||||
* html DIV.csc-textpic-intext-left-nowrap .csc-textpic-text { height: 1%; }
|
||||
/* End hide from IE5/mac */
|
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 1.5 KiB |
|
@ -0,0 +1,22 @@
|
|||
'''
|
||||
Very simple example of an RDFa to RDF converter.
|
||||
|
||||
Requires RDFLib from http://code.google.com/p/rdflib/
|
||||
'''
|
||||
|
||||
import sys
|
||||
import logging
|
||||
from rdflib import ConjunctiveGraph
|
||||
|
||||
logging.basicConfig(level=logging.INFO)
|
||||
if len(sys.argv) < 2:
|
||||
logging.info('Usage: rdfa2rdf <URL for RDFa>')
|
||||
sys.exit()
|
||||
try:
|
||||
g = ConjunctiveGraph()
|
||||
res = g.parse(sys.argv[1], format='rdfa')
|
||||
print g.serialize()
|
||||
except Exception,e:
|
||||
logging.error('Exception raised: %s' % str(e))
|
||||
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"
|
||||
xmlns:dc="http://purl.org/dc/terms/"
|
||||
xmlns:dwc="http://rs.tdwg.org/dwc/terms/">
|
||||
<head >
|
||||
<title>Scientific Name in RDFa</title>
|
||||
<meta about='sciname_1.html' property='dc:creator' content="Dave Vieglais"/>
|
||||
<meta about='sciname_1.html' property='dc:date' content="2008-11-14T09:52:00+00:00" />
|
||||
<meta about='sciname_1.html' property='dc:description' content="Demonstrates how to
|
||||
tag a scientific name with RDFa markup so that a parser can recognize that a string
|
||||
value represents a scientific name." />
|
||||
</head>
|
||||
<body>
|
||||
<p>This example shows how to tag a scientific name with RDFa markup so that a
|
||||
parser can recognize that the string
|
||||
<span property='dwc:ScientificName' style='font-style: italic;'>Bufo marinus</span>
|
||||
as a scientific name, and the string "<span property='dwc:Family'>Bufonidae</span>
|
||||
is a family name, but there is no statement that <span style='font-style: italic;'>B. marinus</span> is a
|
||||
member of the family Bufonidae.</p>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,25 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"
|
||||
xmlns:dc="http://purl.org/dc/terms/"
|
||||
xmlns:dwc="http://rs.tdwg.org/dwc/terms/"
|
||||
xmlns:dwct="http://rs.tdwg.org/dwc/dwctype/">
|
||||
<head >
|
||||
<title>Scientific Name in RDFa</title>
|
||||
<meta about='sciname_2.html' property='dc:creator' content="Dave Vieglais"/>
|
||||
<meta about='sciname_2.html' property='dc:date' content="2008-11-14T09:52:00+00:00" />
|
||||
<meta about='sciname_2.html' property='dc:description' content="Demonstrates how to
|
||||
tag a scientific name with RDFa markup so that a parser can recognize that a string
|
||||
value represents a scientific name." />
|
||||
</head>
|
||||
<body>
|
||||
<p>This example shows how to tag a scientific name with RDFa markup so that a
|
||||
parser can recognize that the string
|
||||
<span about='#name1' typeof='dwct:PreservedSpecimen'>
|
||||
<span property='dwc:ScientificName' style='font-style: italic;'>Bufo marinus</span>
|
||||
as a scientific name, and the string "<span property='dwc:Family'>Bufonidae</span>
|
||||
is a family name</span>, and since both terms form part of a Darwin Core record,
|
||||
infers that Bufonidae is the family name for entity named "#name1" and
|
||||
"<span style='font-style: italic;'>Bufo marinus</span>" is the scientific name.</p>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,37 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"
|
||||
xmlns:dc="http://purl.org/dc/terms/"
|
||||
xmlns:dwc="http://rs.tdwg.org/dwc/terms/"
|
||||
xmlns:georss='http://www.georss.org/georss#'
|
||||
xmlns:oboe='http://code.ecoinformatics.org/code/semtools/trunk/dev/oboe/oboe.owl#'>
|
||||
<head >
|
||||
<title>Observation in RDFa</title>
|
||||
<meta about='sciname_location.html' property='dc:creator' content="Dave Vieglais"/>
|
||||
<meta about='sciname_location.html' property='dc:date' content="2008-11-14T09:52:00+00:00" />
|
||||
<meta about='sciname_location.html' property='dc:description' content="Demonstrates how to
|
||||
create the equivalent of a simple observation record within a HTML document that can be
|
||||
converted to an RDF document." />
|
||||
</head>
|
||||
<body>
|
||||
<p>This example document contains a record of an observation tagged with an lsid of xxx
|
||||
<span about="lsid:blah.blah" typeof="oboe:Observation">
|
||||
that includes the scientific name
|
||||
<span property='dwc:ScientificName' style='font-style: italic;'>Bufo marinus</span>,
|
||||
</span>
|
||||
<span about='lsid:blah.blah' typeof="dc:SamplingLocation" >
|
||||
<span property='dwc:GeodeticDatum' content='epsg:4326' />
|
||||
a geographic location of
|
||||
<span property='georss:point' content='-25.273262 152.725067' />
|
||||
longitude
|
||||
<span property='dwc:DecimalLongitude'>152.725067</span>
|
||||
east, latitude
|
||||
<span property='dwc:DecimalLatitude'>-25.273262</span>,
|
||||
</span>
|
||||
and a time of
|
||||
<span about='lsid:blah.blah' property='dwc:EarliestDateCollected' content="2008-11-10T23:32:00+00:00">
|
||||
9:32 in the morning of the 12th of November.
|
||||
</span>
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,45 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<archive xmlns="http://rs.tdwg.org/dwc/terms/xsd/archive/"
|
||||
fileRoot="http://data.gbif.org/download/"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
||||
xsi:schemaLocation="http://rs.tdwg.org/dwc/terms/xsd/archive/ http://darwincore.googlecode.com/svn/trunk/text/tdwg_dwc_text.xsd"
|
||||
>
|
||||
|
||||
<!-- Here is an example that will define the structure of
|
||||
|
||||
InstitutionName,DatasetName,Collector,CollectorNumber
|
||||
"Kew gardens, (Kew)",Plant Specimens,Tim Robertson,12,,12,20010101-12:12:01
|
||||
"Kew gardens, (Kew)",Plant Specimens,Markus Döring,14,,,,
|
||||
-->
|
||||
<file
|
||||
rowType="http://rs.tdwg.org/dwc/terms/text/DarwinRecord"
|
||||
location="occurrence-search-123255244678924570.zip"
|
||||
fieldsTerminatedBy=","
|
||||
linesTerminatedBy="\n"
|
||||
fieldsOptionallyEnclosedBy="""
|
||||
compression="gzip"
|
||||
encoding="utf8"
|
||||
ignoreHeaderLines="1">
|
||||
<field index="2"
|
||||
term="http://rs.tdwg.org/dwc/terms/FieldNumber"
|
||||
type="xs:string"
|
||||
default="timrobertson100"/>
|
||||
<field index="3"
|
||||
term="http://rs.tdwg.org/dwc/terms/CollectorNumber"
|
||||
type="xs:integer"/>
|
||||
<field index="5"
|
||||
term="http://rs.tdwg.org/dwc/terms/IndividualCount"
|
||||
type="xs:integer"
|
||||
default="1"/>
|
||||
<!-- ¿ format is like this ? -->
|
||||
<field index="6"
|
||||
term="http://rs.tdwg.org/dwc/terms/EarliestDateCollected"
|
||||
type="xs:dateTime"
|
||||
format="YYYYMMDD-hh:mm:ss"/>
|
||||
<!-- A constant value -->
|
||||
<field term="http://rs.tdwg.org/dwc/terms/DatasetID"
|
||||
type="xs:string"
|
||||
default="urn:lsid:tim.lsid.tdwg.org:collections:1" />
|
||||
</file>
|
||||
</archive>
|
|
@ -0,0 +1,26 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<archive xmlns="http://rs.tdwg.org/dwc/terms/xsd/archive/"
|
||||
fileRoot="http://data.gbif.org/download/"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
||||
xsi:schemaLocation="http://rs.tdwg.org/dwc/terms/xsd/archive/ http://darwincore.googlecode.com/svn/trunk/text/tdwg_dwc_text.xsd">
|
||||
|
||||
<file rowType="http://rs.tdwg.org/dwc/terms/Sample" location="specimens.txt">
|
||||
<field index="0" term="http://rs.tdwg.org/dwc/terms/CatalogNumber"/>
|
||||
<field index="1" term="http://rs.tdwg.org/dwc/terms/IndividualCount"/>
|
||||
</file>
|
||||
|
||||
<file rowType="http://rs.tdwg.org/dwc/terms/Identification" location="identifications.txt">
|
||||
<field index="0" term="http://rs.tdwg.org/dwc/terms/IdentificationID"/>
|
||||
<field index="1" term="http://rs.tdwg.org/dwc/terms/IdentifiedBy"/>
|
||||
<field index="2" term="http://rs.tdwg.org/dwc/terms/CatalogNumber"/>
|
||||
<field index="3" term="http://rs.tdwg.org/dwc/terms/ScientificName"/>
|
||||
</file>
|
||||
|
||||
<relationships>
|
||||
<relationship>
|
||||
<file location="specimens.txt" fieldIndex="0"/>
|
||||
<file location="identifications.txt" fieldIndex="2"/>
|
||||
</relationship>
|
||||
</relationships>
|
||||
</archive>
|
|
@ -0,0 +1,21 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<DarwinRecordSet
|
||||
xmlns="http://rs.tdwg.org/dwc/dwcrecord/"
|
||||
xmlns:dc="http://purl.org/dc/terms/"
|
||||
xmlns:dwc="http://rs.tdwg.org/dwc/terms/"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://rs.tdwg.org/dwc/dwcrecord/ http://darwincore.googlecode.com/svn/trunk/xsd/tdwg_dwcrec_classes.xsd">
|
||||
<dwc:Sample>
|
||||
<dwc:SampleID>12345678</dwc:SampleID>
|
||||
<dwc:TaxonID>5432-fc43-432</dwc:TaxonID>
|
||||
<dwc:CatalogNumber>cgbers-xydw786</dwc:CatalogNumber>
|
||||
<dc:modified>2001-03-21</dc:modified>
|
||||
</dwc:Sample>
|
||||
|
||||
<dwc:Taxon>
|
||||
<dwc:TaxonID>5432-fc43-432</dwc:TaxonID>
|
||||
<dwc:ScientificName>Robertsonus timmus</dwc:ScientificName>
|
||||
<dc:modified>1978-06-11</dc:modified>
|
||||
</dwc:Taxon>
|
||||
|
||||
</DarwinRecordSet>
|
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<DarwinRecordSet
|
||||
xmlns="http://rs.tdwg.org/dwc/dwcrecord/"
|
||||
xmlns:dc="http://purl.org/dc/terms/"
|
||||
xmlns:dwc="http://rs.tdwg.org/dwc/terms/"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://rs.tdwg.org/dwc/dwcrecord/ ../../xsd/tdwg_dwc_simple.xsd">
|
||||
<!-- http://darwincore.googlecode.com/svn/trunk/xsd/tdwg_dwc_simple.xsd -->
|
||||
<DarwinRecord>
|
||||
<dwc:SampleID>12345678</dwc:SampleID>
|
||||
<dc:modified></dc:modified>
|
||||
<dwc:CatalogNumber>few</dwc:CatalogNumber>
|
||||
<dwc:CollectionCode></dwc:CollectionCode>
|
||||
<dwc:InstitutionCode></dwc:InstitutionCode>
|
||||
<dwc:BasisOfRecord>FossilSpecimen</dwc:BasisOfRecord>
|
||||
</DarwinRecord>
|
||||
</DarwinRecordSet>
|
|
@ -0,0 +1,21 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<DarwinRecordSet
|
||||
xmlns="http://rs.tdwg.org/dwc/dwcrecord/"
|
||||
xmlns:dc="http://purl.org/dc/terms/"
|
||||
xmlns:dwc="http://rs.tdwg.org/dwc/terms/"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://rs.tdwg.org/dwc/dwcrecord/ http://darwincore.googlecode.com/svn/trunk/xsd/tdwg_dwcrec_classes.xsd">
|
||||
<dwc:Sample>
|
||||
<dwc:SampleID>12345678</dwc:SampleID>
|
||||
<dwc:TaxonID>5432-fc43-432</dwc:TaxonID>
|
||||
<dwc:CatalogNumber>cgbers-xydw786</dwc:CatalogNumber>
|
||||
<dc:modified>2001-03-21</dc:modified>
|
||||
</dwc:Sample>
|
||||
|
||||
<dwc:Taxon>
|
||||
<dwc:TaxonID>5432-fc43-432</dwc:TaxonID>
|
||||
<dwc:ScientificName>Robertsonus timmus</dwc:ScientificName>
|
||||
<dc:modified>1978-06-11</dc:modified>
|
||||
</dwc:Taxon>
|
||||
|
||||
</DarwinRecordSet>
|
|
@ -0,0 +1,21 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<DarwinRecordSet
|
||||
xmlns="http://rs.tdwg.org/dwc/dwcrecord/"
|
||||
xmlns:dc="http://purl.org/dc/terms/"
|
||||
xmlns:dwc="http://rs.tdwg.org/dwc/terms/"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://rs.tdwg.org/dwc/dwcrecord/ http://darwincore.googlecode.com/svn/trunk/xsd/tdwg_dwcrec_classes.xsd">
|
||||
<dwc:Sample>
|
||||
<dwc:SampleID>12345678</dwc:SampleID>
|
||||
<dwc:TaxonID>5432-fc43-432</dwc:TaxonID>
|
||||
<dwc:CatalogNumber>cgbers-xydw786</dwc:CatalogNumber>
|
||||
<dc:modified>2001-03-21</dc:modified>
|
||||
</dwc:Sample>
|
||||
|
||||
<dwc:Taxon>
|
||||
<dwc:TaxonID>5432-fc43-432</dwc:TaxonID>
|
||||
<dwc:ScientificName>Robertsonus timmus</dwc:ScientificName>
|
||||
<dc:modified>1978-06-11</dc:modified>
|
||||
</dwc:Taxon>
|
||||
|
||||
</DarwinRecordSet>
|
|
@ -0,0 +1,30 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<DarwinRecordSet
|
||||
xmlns="http://rs.tdwg.org/dwc/dwcrecord/"
|
||||
xmlns:dc="http://purl.org/dc/terms/"
|
||||
xmlns:dwc="http://rs.tdwg.org/dwc/terms/"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://rs.tdwg.org/dwc/dwcrecord/ http://darwincore.googlecode.com/svn/trunk/xsd/tdwg_dwcrec_classes.xsd">
|
||||
<dwc:SamplingLocation>
|
||||
<dwc:Continent>Europe</dwc:Continent>
|
||||
<dwc:Country>Germany</dwc:Country>
|
||||
<dwc:CountryCode>DE</dwc:CountryCode>
|
||||
<dwc:DecimalLatitude>12</dwc:DecimalLatitude>
|
||||
<dwc:DecimalLongitude>2</dwc:DecimalLongitude>
|
||||
<dwc:GeodeticDatum></dwc:GeodeticDatum>
|
||||
<dwc:CoordinateUncertaintyInMeters>10</dwc:CoordinateUncertaintyInMeters>
|
||||
</dwc:SamplingLocation>
|
||||
<dwc:Sample>
|
||||
<dwc:SampleID>12345678</dwc:SampleID>
|
||||
<dwc:TaxonID>5432-fc43-432</dwc:TaxonID>
|
||||
<dwc:CatalogNumber>cgbers-xydw786</dwc:CatalogNumber>
|
||||
<dc:modified>2001-03-21</dc:modified>
|
||||
</dwc:Sample>
|
||||
|
||||
<dwc:Taxon>
|
||||
<dwc:TaxonID>5432-fc43-432</dwc:TaxonID>
|
||||
<dwc:ScientificName>Robertsonus timmus</dwc:ScientificName>
|
||||
<dc:modified>1978-06-11</dc:modified>
|
||||
</dwc:Taxon>
|
||||
|
||||
</DarwinRecordSet>
|
|
@ -0,0 +1,288 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<HTML xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<HEAD>
|
||||
<META http-equiv="Content-Type" content="text/html; charset=utf8"/>
|
||||
<TITLE>Darwin Core</TITLE>
|
||||
<LINK rel="schema.DwC" href="http://rs.tdwg.org/dwc/"/>
|
||||
<META name="DC.title" content="Darwin Core"/>
|
||||
<META name="DC.description" content="The cover page for the Darwin Core standard."/>
|
||||
<META name="DC.subject" content="biodiversity, standards"/>
|
||||
<META name="DC.creator" content="Darwin Core Task Group"/>
|
||||
<META name="DC.contributor" content="John Wieczorek (MVZ) <tuco@berkeley.edu>"/>
|
||||
<META name="DC.contributor" content="Markus Döring (GBIF) <mdoering@gbif.org>"/>
|
||||
<META name="DC.contributor" content="Renato De Giovanni (CRIA) <renato@cria.org.br>"/>
|
||||
<META name="DC.contributor" content="Tim Robertson (GBIF) <trobertson@gbif.org>"/>
|
||||
<META name="DC.contributor" content="Dave Vieglais (KUNHM) <vieglais@ku.edu>"/>
|
||||
<META name="DC.contributor" content="Stan Blum (CAS) <sblum@calacademy.org>"/>
|
||||
<META name="DC.modified" content="2009-02-12"/>
|
||||
<META name="DC.dateAccepted" content="2009-02-12"/>
|
||||
<META name="DC.format" content="text/html"/>
|
||||
<META name="DC.identifier" content="http://rs.tdwg.org/dwc/2009-02-12"/>
|
||||
<META name="DC.publisher" content="Biodiversity Information Standards TDWG"/>
|
||||
<META name="DC.rights" content=""/>
|
||||
<META name="DC.accessRights" content="public"/>
|
||||
<META name="DC.bibliographicCitation" content="Darwin Core Standard. 2009"/>
|
||||
<META name="DC.hasPart" content="http://rs.tdwg.org/dwc/terms/"/>
|
||||
<META name="DC.hasPart" content="http://rs.tdwg.org/dwc/terms/history/"/>
|
||||
<META name="DC.hasPart" content="http://rs.tdwg.org/dwc/namespace/"/>
|
||||
<META name="DC.isReplacedBy" content=""/>
|
||||
<META name="DC.replaces" content=""/>
|
||||
<META name="DC.language" content="en"/>
|
||||
<LINK rel="meta" href="http://www.tdwg.org/"/>
|
||||
<LINK rel="stylesheet" href="./DarwinCore_files/default.css" type="text/css">
|
||||
<SCRIPT src="./DarwinCore_files/default.js" type="text/javascript"></SCRIPT>
|
||||
</HEAD>
|
||||
|
||||
<BODY>
|
||||
<DIV class="header">
|
||||
|
||||
<TABLE width="100%" cellspacing="0" cellpadding="0" bgcolor="#617394">
|
||||
<TBODY><TR>
|
||||
<TD width="70"><A href="http://www.tdwg.org"><IMG src="./DarwinCore_files/TDWGlogo_Twiki.gif" width="150" height="70" alt="Biodiversity Information Standards (TDWG) logo"></A></TD>
|
||||
<TD width="100%" height="70" align="right" valign="top">
|
||||
</TABLE>
|
||||
|
||||
<H1>Darwin Core</H1>
|
||||
<TABLE cellspacing="0" class="docinfo">
|
||||
<TBODY>
|
||||
<TR>
|
||||
<TH>Title:</TH>
|
||||
<TD>Darwin Core</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Date Issued:</TH>
|
||||
<TD>2009-02-12</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Abstract:</TH>
|
||||
<TD>This document is a cover page, an entry-level document to the Darwin Core standard.</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Contributors:</TH>
|
||||
<TD>John Wieczorek (MVZ)<tuco@berkeley.edu>, Markus Döring (GBIF)<mdoering@gbif.org>, Renato De Giovanni (CRIA)<renato@cria.org.br>, Tim Robertson (GBIF)<trobertson@gbif.org>, Dave Vieglais (KUNHM)<vieglais@ku.edu>, Stan Blum (CAS)<sblum@calacademy.org></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Legal:</TH>
|
||||
<TD>This document is governed by the standard legal, copyright, licensing provisions and disclaimers issued by the Taxonomic Databases Working Group.</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Part of TDWG Standard:</TH>
|
||||
<TD>***URL to DwC Standard*** goes here</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Creator:</TH>
|
||||
<TD>Darwin Core Task Group</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Identifier:</TH>
|
||||
<TD><A href="http://rs.tdwg.org/dwc/2009-02-12/">http://rs.tdwg.org/dwc/2009-02-12/</A></TD>
|
||||
</TR>
|
||||
<TR><TH>Latest Version:</TH>
|
||||
<TD><A href="http://rs.tdwg.org/dwc/">http://rs.tdwg.org/dwc/</A></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Replaces:</TH>
|
||||
<TD><A href="http://wiki.tdwg.org/DarwinCore/">http://wiki.tdwg.org/DarwinCore/</A></TD>
|
||||
</TR>
|
||||
<TR><TH>Replaced By:</TH>
|
||||
<TD>Not applicable</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Translations:</TH>
|
||||
<TD><A href="http://rs.tdwg.org/dwc/translations/">http://rs.tdwg.org/dwc/translations/</A></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Document Status:</TH>
|
||||
<TD>This is a TDWG Request for Comment.</TD>
|
||||
</TR>
|
||||
</TBODY></TABLE>
|
||||
|
||||
<H2>Table of Contents</H2>
|
||||
<P><TABLE width="95%" border="0" align="center"><TBODY>
|
||||
<TR><TD width="100%">1. <a href="#introduction">Introduction</a>
|
||||
</TD></TR>
|
||||
<TR><TD width="100%">2. <a href="#references">References</a>
|
||||
</TD></TR>
|
||||
</TBODY> </TABLE
|
||||
|
||||
<P>
|
||||
<A name="introduction" id="introduction"></A>
|
||||
<H2>1. Introduction</H2>
|
||||
<P>
|
||||
<b>Motivation</b>: The Darwin Core standard was conceived to facilitate the discovery, retrieval, and integration of
|
||||
information about organisms, their spatiotemporal occurrence, and the supporting evidence housed in collections
|
||||
(physical or digital).
|
||||
The primary goal of the Darwin Core is to provide a stable reference to standard terms about biodiversity, which
|
||||
can be used in a variety of contexts. The Darwin Core derives its vocabulary from community-based experience in data
|
||||
discovery, sharing, and integration, while its form is derived from the practices developed by the Dublin Core Metadata
|
||||
Initiative [<a href="http://dublincore.org/">DCMI</a>] except where otherwise noted. Structures, data-typing, and
|
||||
constraints on the values of terms are meant to be implemented using representation-specific application profiles such
|
||||
as XML schemas [<A href="./terms/guides/xml/index.htm">XMLSCHEMAGUIDE</A>].
|
||||
<P>
|
||||
<b>Content</b>: The standard
|
||||
consists of a vocabulary of terms (properties, elements, fields, concepts) [<a href="./terms/index.htm">TERMS</a>],
|
||||
the policy governing the maintenance of these terms
|
||||
[<A href="./terms/namespace/index.htm">NAMESPACEPOLICY</a>], decisions resulting in changes to terms
|
||||
[<a href="./terms/history/decisions/index.htm">DECISIONS</a>], the complete history of terms including detailed
|
||||
attributes [<A href="./terms/history/index.htm">HISTORY</a>], a generic application schema for use in the construction of
|
||||
new application schemas based on Darwin Core [<A href="./xsd/tdwg_dwcterms.xsd">GENERICXMLSCHEMA</A>],
|
||||
a simple (flat) application schema for the use
|
||||
of these terms [<A href="./xsd/tdwg_dwc_simple.xsd">SIMPLEXMLSCHEMA</A>] and a metafile schema to allow for the description of Darwin Core fielded text files [<A href="./text/tdwg_dwc_text.xsd">TEXTSCHEMA</A>]. These pages also describe
|
||||
mappings between the current standard and pre-standard historical versions <A href="./terms/history/versions/index.htm">[VERSIONS]</A>,
|
||||
including mappings <A href="./terms/history/dwctoabcd/index.htm">[DWCTOABCD]</A> to concepts in the Access to Biological
|
||||
Collections Data standard <A href="http://www.tdwg.org/schemas/abcd/2.06">[ABCD]</A>.
|
||||
<P>
|
||||
<b>Participation</b>: The Darwin Core is meant to serve the needs of communities interested in the sharing and interoperation of
|
||||
information related to biological diversity and takes its current form through active participation in the standards process.
|
||||
<ul>To receive notification of activity or participate in discussions in the Darwin Core Project, join the tdwg-content mailing
|
||||
list [<A href="mailto:tdwg-content@lists.tdwg.org">DWC-MAIL</A>] and/or set up specific
|
||||
<a href="http://code.google.com/p/darwincore/feeds">feeds</a> in the Darwin Core Project
|
||||
[<A href="http://code.google.com/p/darwincore">DWC-PROJECT</a>].</ul>
|
||||
<ul>For discussion or commentary on the definition of recommended terms, consult the link inside the Comment section in the
|
||||
listing for the term in the Quick Reference Guide [<a href="./terms/index.htm">TERMS</a>] or look for the term on the list
|
||||
of Wiki pages for the Darwin Core Project [<A href="http://code.google.com/p/darwincore">DWC-PROJECT</A>]. Commentary can be added
|
||||
to any term's wiki page.</ul>
|
||||
<ul>To make a formal request for a change to or addition of a term to the Darwin Core, read and follow the recommendations in the
|
||||
Darwin Core Namespace Policy [<A href="./terms/namespace/index.htm">NAMESPACEPOLICY</a>].</ul>
|
||||
<ul>For those who wish to construct and submit as a standard any application profile, such as an XML schema, that extends the
|
||||
capabilities of the Darwin Core, adding any new terms to the Darwin Core vocabulary is a necessary prerequisite. Consult the
|
||||
appropriate guideline, such as the XML Guide [<A href="./terms/guides/xml/index.htm">XMLSCHEMAGUIDE</a>], for information about
|
||||
the construction of a new application profile. The rules of submission of proposed standards can be found in the Biodiversity
|
||||
Information Standards Process document [<a href="http://www.tdwg.org/about-tdwg/process/">PROCESS</a>].</ul>
|
||||
<P>
|
||||
|
||||
<A name="references" id="references"></A>
|
||||
<H2>2. References</H2>
|
||||
<TABLE width="95%" border="0" align="center">
|
||||
<TR>
|
||||
<TD width="10%"><A name="ABCD">[ABCD]</A></TD>
|
||||
<TD width="40%"><A href="http://www.tdwg.org/schemas/abcd/2.06">http://www.tdwg.org/schemas/abcd/2.06</A></TD>
|
||||
<TD width="50%">Access to Biological Collections Data Standard.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="ARCHIVE">[ARCHIVE]</A></TD>
|
||||
<TD width="40%"><A href="./archive/darwincore.zip">http://rs.tdwg.org/dwc/archive/darwincore.zip</A></TD>
|
||||
<TD width="50%">An archive of all files of the Darwin Core Standard.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="DCMI">[DCMI]</A></TD>
|
||||
<TD width="40%"><A href="http://dublincore.org/">http://dublincore.org/</A></TD>
|
||||
<TD width="50%">Dublin Core Metadata Initiative Web site.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="DECISIONS">[DECISIONS]</A></TD>
|
||||
<TD width="40%"><A href="./terms/history/decisions/index.htm">http://rs.tdwg.org/dwc/terms/history/decisions/</A></TD>
|
||||
<TD width="50%">A reference to the decisions leading to changes in terms (definitions, status, etc.).</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="DWC">[DWC]</A></TD>
|
||||
<TD width="40%"><A href="./index.htm">http://rs.tdwg.org/dwc/</A></TD>
|
||||
<TD width="50%">An introduction to the Darwin Core Standard.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="DWC-MAIL">[DWC-MAIL]</A></TD>
|
||||
<TD width="40%"><A href="mailto:tdwg-content@lists.tdwg.org">tdwg-content@lists.tdwg.org</A></TD>
|
||||
<TD width="50%">Mailing list for commentary and discussion on Darwin Core.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="DWC-PROJECT">[DWC-PROJECT]</A></TD>
|
||||
<TD width="40%"><A href="http://code.google.com/p/darwincore">http://code.google.com/p/darwincore</A></TD>
|
||||
<TD width="50%">Project site for the maintenance of Darwin Core development activity.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="DWC-TYPE">[DWC-TYPE]</A></TD>
|
||||
<TD width="40%"><A href="./terms/type-vocabulary/index.htm">http://rs.tdwg.org/dwc/terms/type-vocabulary/</A></TD>
|
||||
<TD width="50%">A reference to the Darwin Core Type Vocabulary terms for use with BasisOfRecord.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="DWC-USAGE">[DWC-USAGE]</A></TD>
|
||||
<TD width="40%"><A href="mailto:tdwg-tag@lists.tdwg.org">tdwg-tag@lists.tdwg.org</A></TD>
|
||||
<TD width="50%">TDWG Architecture Mailing List.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="DWCTOABCD">[DWCTOABCD]</A></TD>
|
||||
<TD width="40%"><A href="./terms/history/dwctoabcd/index.htm">http://rs.tdwg.org/dwc/terms/history/dwctoabcd/</A></TD>
|
||||
<TD width="50%">A reference for Darwin Core terms mapped to ABCD.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="GENERICXMLSCHEMA">[GENERICXMLSCHEMA]</A></TD>
|
||||
<TD width="40%"><A href="./xsd/tdwg_dwcterms.xsd">http://rs.tdwg.org/dwc/xsd/tdwg_dwcterms.xsd</A></TD>
|
||||
<TD width="50%">Generic Darwin Core XML schema.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="HISTORY">[HISTORY]</A></TD>
|
||||
<TD width="40%"><A href="./terms/history/index.htm">http://rs.tdwg.org/dwc/terms/history/</A></TD>
|
||||
<TD width="50%">Complete historical reference to Darwin Core terms.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="NAMESPACEPOLICY">[NAMESPACEPOLICY]</A></TD>
|
||||
<TD width="40%"><A href="./terms/namespace/index.htm">http://rs.tdwg.org/dwc/terms/namespace/</A></TD>
|
||||
<TD width="50%">Policy governing Darwin Core terms.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="PROCESS">[PROCESS]</A></TD>
|
||||
<TD width="40%"><A href="http://www.tdwg.org/about-tdwg/process/">http://www.tdwg.org/about-tdwg/process/</A></TD>
|
||||
<TD width="50%">TDWG Standards Development Process.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="RDF">[RDF]</A></TD>
|
||||
<TD width="40%"><A href="./rdf/dwcterms.rdf">http://rs.tdwg.org/dwc/rdf/dwcterms.rdf</A></TD>
|
||||
<TD width="50%">An rdf document for the complete set of Darwin Core terms.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="SIMPLEXMLSCHEMA">[SIMPLEXMLSCHEMA]</A></TD>
|
||||
<TD width="40%"><A href="./xsd/tdwg_dwc_simple.xsd">http://rs.tdwg.org/dwc/xsd/tdwg_dwc_simple.xsd</A></TD>
|
||||
<TD width="50%">Simple Darwin Core XML schema.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="TERMS">[TERMS]</A></TD>
|
||||
<TD width="40%"><A href="./terms/index.htm">http://rs.tdwg.org/dwc/terms/</A></TD>
|
||||
<TD width="50%">Quick reference to recommended Darwin Core terms.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="VERSIONS"></A>[VERSIONS]</TD>
|
||||
<TD width="40%"><A href="./terms/history/versions/index.htm">http://rs.tdwg.org/dwc/terms/history/versions/</A></TD>
|
||||
<TD width="50%">Reference for mapping historical Darwin Core terms to the current recommended terms.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="XMLSCHEMAGUIDE"></A>[XMLSCHEMAGUIDE]</TD>
|
||||
<TD width="40%"><A href="./terms/guides/xml/index.htm">http://rs.tdwg.org/dwc/terms/guides/xml</A></TD>
|
||||
<TD width="50%">Guide for the construction of XML schemas.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="TEXTGUIDE"></A>[TEXTGUIDE]</TD>
|
||||
<TD width="40%"><A href="./terms/guides/text/index.htm">http://rs.tdwg.org/dwc/terms/guides/text</A></TD>
|
||||
<TD width="50%">Guide for using Darwin Core in fielded text documents.</TD>
|
||||
</TR>
|
||||
|
||||
</TABLE>
|
||||
|
||||
<!-- Footer -->
|
||||
<hr>
|
||||
<p><a rel="license" href="http://creativecommons.org/licenses/by/3.0/us/">
|
||||
<img alt="Creative Commons License" id="creative_commons_icon" src="http://i.creativecommons.org/l/by/3.0/88x31.png" /></a>
|
||||
Copyright 2009 - Biodiversity Information Standards - TDWG - <a href="http://www.tdwg.org/about-tdwg/contact-us/">Contact Us</a><br/>
|
||||
<p>Except where otherwise noted, content on this site is licensed under a
|
||||
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/us/"> Creative Commons
|
||||
Attribution 3.0 United States License</a>.</p>
|
||||
|
||||
</BODY></HTML>
|
|
@ -0,0 +1,436 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml-stylesheet type="text/xsl" href="human.xsl"?>
|
||||
<!DOCTYPE rdf:RDF [
|
||||
<!ENTITY rdfns 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'>
|
||||
<!ENTITY rdfsns 'http://www.w3.org/2000/01/rdf-schema#'>
|
||||
<!ENTITY dctermsns 'http://purl.org/dc/terms/'>
|
||||
<!ENTITY dctypens 'http://purl.org/dc/dcmitype/'>
|
||||
<!ENTITY dwcattributesns 'http://rs.tdwg.org/dwc/terms/attributes/'>
|
||||
<!--
|
||||
<!ENTITY skosns 'http://www.w3.org/2004/02/skos/core#'>
|
||||
<!ENTITY vsns 'http://www.w3.org/2003/06/sw-vocab-status/ns#'>
|
||||
-->
|
||||
]>
|
||||
<rdf:RDF
|
||||
xmlns:dwcattributes="http://rs.tdwg.org/dwc/terms/attributes/"
|
||||
xmlns:dcterms="http://purl.org/dc/terms/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
|
||||
<rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/">
|
||||
<dcterms:title xml:lang="en-US">Darwin Core Namespace for terms in the http://rs.tdwg.org/dwc/terms/ namespace</dcterms:title>
|
||||
<rdfs:comment>To comment on this schema, please see http://code.google.com/p/darwincore/wiki/DarwinCoreCommunity</rdfs:comment>
|
||||
<dcterms:publisher xml:lang="en-US">Biodiversity Information Standards (TDWG)</dcterms:publisher>
|
||||
<dcterms:modified>2009-01-25</dcterms:modified>
|
||||
</rdf:Description>
|
||||
|
||||
<!--
|
||||
Each RDF description uses the following:
|
||||
rdfs:label
|
||||
rdfs:comment
|
||||
dcterms:description
|
||||
rdfs:isDefinedBy
|
||||
dcterms:issued
|
||||
dcterms:modified
|
||||
rdf:type
|
||||
dcterms:hasVersion
|
||||
rdfs:range
|
||||
rdfs:subPropertyOf
|
||||
rdfs:domain
|
||||
rdfs:replaces
|
||||
rdfs:seeAlso (for ABCD mapping)
|
||||
dwcattributes:status
|
||||
dwcattributes:decision
|
||||
|
||||
// potentially useful
|
||||
skos = http://www.w3.org/2004/02/skos/core#
|
||||
skos:example
|
||||
vs = http://www.w3.org/2003/06/sw-vocab-status/ns#
|
||||
vs:term_status
|
||||
-->
|
||||
<!-- Mutable RDF goes here -->
|
||||
|
||||
<rdf:Description rdf:ID="AcceptedTaxon-2008-11-19"> <rdfs:label xml:lang="en-US">AcceptedTaxon</rdfs:label> <rdfs:comment xml:lang="en-US">The currently valid (zoological) or accepted (botanical) name for the ScientificName.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#AcceptedTaxon-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Taxon"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>not in ABCD</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="AcceptedTaxonID-2009-01-21"> <rdfs:label xml:lang="en-US">AcceptedTaxonID</rdfs:label> <rdfs:comment xml:lang="en-US">A global unique identifier for the parent to the AcceptedTaxon.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2009-01-21</dcterms:issued> <dcterms:modified>2009-01-21</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#AcceptedTaxonID-2009-01-21"/> <rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/identifier"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Taxon"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>not in ABCD</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="AccessConstraints-2008-11-19"> <rdfs:label xml:lang="en-US">AccessConstraints</rdfs:label> <rdfs:comment xml:lang="en-US">A description of constraints on the use of the data as shared or access to further data that is not shared.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "not-for-profit use only"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#AccessConstraints-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Sample"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>not in ABCD</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="AccordingTo-2009-01-21"> <rdfs:label xml:lang="en-US">AccordingTo</rdfs:label> <rdfs:comment xml:lang="en-US">Abstract term to attribute information to a source.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2009-01-21</dcterms:issued> <dcterms:modified>2009-01-21</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#AccordingTo-2009-01-21"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>not in ABCD</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Accuracy-2009-01-21"> <rdfs:label xml:lang="en-US">Accuracy</rdfs:label> <rdfs:comment xml:lang="en-US">Abstract term to capture error information about a measurement or fact.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2009-01-21</dcterms:issued> <dcterms:modified>2009-01-21</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#Accuracy-2009-01-21"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Aspect/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Accuracy</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="AgeClass-2003-06-17"> <rdfs:label xml:lang="en-US">AgeClass</rdfs:label> <rdfs:comment xml:lang="en-US">The age class, reproductive stage, life stage of the biological individual (e.g., juvenile, adult, eft, nymph, etc.).</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#AgeClass-2003-06-17"/> <rdfs:seeAlso>{DataSets/DataSet/Units/Unit/ZoologicalUnit/PhasesOrStages/PhaseOrStage or DataSets/DataSet/Units/Unit/MycologicalUnit/MycologicalLifeStages/MycologicalLifeStage or DataSets/DataSet/Units/Unit/MycologicalUnit/MycologicalSexualStage}</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="AssociatedMedia-2008-11-19"> <rdfs:label xml:lang="en-US">AssociatedMedia</rdfs:label> <rdfs:comment xml:lang="en-US">A list (concatenated and separated) of identifiers (publication, global unique identifier, URI) of media associated with the sample.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#AssociatedMedia-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Sample"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/ImageURL-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/MultimediaObjects</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="AssociatedReferences-2008-11-19"> <rdfs:label xml:lang="en-US">AssociatedReferences</rdfs:label> <rdfs:comment xml:lang="en-US">A list (concatenated and separated) of identifiers (publication, global unique identifier, URI) of literature associated with the sample.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#AssociatedReferences-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Sample"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/UnitReferences</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="AssociatedSamples-2008-11-19"> <rdfs:label xml:lang="en-US">AssociatedSamples</rdfs:label> <rdfs:comment xml:lang="en-US">A list (concatenated and separated) of identifiers of other samples associated with the sample and their associations.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "sibling of FMNH:Mammal:1234"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#AssociatedSamples-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Sample"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/RelatedCatalogedItems-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceInstitutionCode + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceName + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitID</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="AssociatedSequences-2008-11-19"> <rdfs:label xml:lang="en-US">AssociatedSequences</rdfs:label> <rdfs:comment xml:lang="en-US">A list (concatenated and separated) of identifiers (publication, global unique identifier, URI) of genetic sequence information associated with the sample.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#AssociatedSequences-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Sample"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/GenBankNumber-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Sequences/Sequence/ID-in-Database + constant</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="AssociatedTaxa-2008-11-19"> <rdfs:label xml:lang="en-US">AssociatedTaxa</rdfs:label> <rdfs:comment xml:lang="en-US">A list (concatenated and separated) of identifiers or names of taxa associated with the sample and their associations.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "host: Quercus alba"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#AssociatedTaxa-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Sample"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/Synecology/AssociatedTaxa</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Attributes-2007-04-17"> <rdfs:label xml:lang="en-US">Attributes</rdfs:label> <rdfs:comment xml:lang="en-US">List of additional measurements or characteristics (concatenated and separated) for which there is no existing semantic element, but which the data provider nevertheless feels the desire to share. Examples: "Tragus length: 14mm; Weight: 120g", "Height: 1-1.5 meters tall; flowers yellow; uncommon".</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwcore/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwcore/#Attributes-2007-04-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/MeasurementsOrFacts</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="AuthorYearOfScientificName-2007-04-17"> <rdfs:label xml:lang="en-US">AuthorYearOfScientificName</rdfs:label> <rdfs:comment xml:lang="en-US">The author of the ScientificName and the year of publication, if known. More than one author can be listed in a concatenated string. Should be formatted with parentheses and year according to the conventions of the applicable NomenclaturalCode.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwcore/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwcore/#AuthorYearOfScientificName-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/dwcore/ScientificNameAuthor-2003-06-17"/> <rdfs:seeAlso>{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/ParentheticalAuthorTeamAndYear + DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/AuthorTeamAndYear} or {DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/AuthorTeamParenthesis + DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/AuthorTeam} or {DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/AuthorTeamOriginalAndYear + [= or] DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/AuthorTeamParenthesisAndYear}</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Basionym-2008-11-19"> <rdfs:label xml:lang="en-US">Basionym</rdfs:label> <rdfs:comment xml:lang="en-US">The basionym of the ScientificName.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#Basionym-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Taxon"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>not in ABCD</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="BasionymID-2009-01-21"> <rdfs:label xml:lang="en-US">BasionymID</rdfs:label> <rdfs:comment xml:lang="en-US">A global unique identifier for the Basionym.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2009-01-21</dcterms:issued> <dcterms:modified>2009-01-21</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#BasionymID-2009-01-21"/> <rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/identifier"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Taxon"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>not in ABCD</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="BasisOfRecord-2008-11-19"> <rdfs:label xml:lang="en-US">BasisOfRecord</rdfs:label> <rdfs:comment xml:lang="en-US">The nature of the sample. Recommended best practice is to use a controlled vocabulary.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "HumanObservation"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#BasisOfRecord-2008-11-19"/> <rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/type"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Sample"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/BasisOfRecord-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/RecordBasis</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="BasisOfRecord-2007-04-17"> <rdfs:label xml:lang="en-US">BasisOfRecord</rdfs:label> <rdfs:comment xml:lang="en-US">A descriptive term indicating whether the record represents an object or observation. Examples: PreservedSpecimen- A physical object representing one or more organisms, part of organism, or artifact of an organism. synonyms: voucher, collection, lot. FossilSpecimen- A physical object representing one or more fossil organisms, part of fossil organism, or artifact of a fossil organism. LivingSpecimen- An organism removed from its natural occurrence and now living in captivity or cultivation. HumanObservation- A report by a known observer that an organism was present at the place and time. MachineObservation- A report by a monitoring device that an organism was present at the place and time. StillImage- An photograph, drawing, painting. MovingImage- A sequence of still images taken at regular intervals and intended to be played back as a moving image; may include sound. SoundRecording- An audio recording. OtherSpecimen- Any type of specimen not covered by any of the categories above.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwcore/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwcore/#BasisOfRecord-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/dwcore/BasisOfRecord-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/RecordBasis</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="BasisOfRecord-2003-06-17"> <rdfs:label xml:lang="en-US">BasisOfRecord</rdfs:label> <rdfs:comment xml:lang="en-US">A description indicating whether the record represents an observation, tissue sample, living organism, voucher specimen, germplasm/seed, genetic information, etc.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#BasisOfRecord-2003-06-17"/> <rdfs:replaces rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/BasisOfRecord-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/RecordBasis</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="BasisOfRecord-2003-06-13"> <rdfs:label xml:lang="en-US">BasisOfRecord</rdfs:label> <rdfs:comment xml:lang="en-US">An abbreviation indicating whether the record represents an observation (O), living organism (L), specimen (S), germplasm/seed (G), etc.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-13</dcterms:issued> <dcterms:modified>2003-06-13</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#BasisOfRecord-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/RecordBasis</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Behavior-2009-01-18"> <rdfs:label xml:lang="en-US">Behavior</rdfs:label> <rdfs:comment xml:lang="en-US">A description of the behavior shown by the sampled subject during the sampling event. Recommended best practice is to use a controlled vocabulary.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "roosting", "foraging", "running"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2009-01-18</dcterms:issued> <dcterms:modified>2009-01-18</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#Behavior-2009-01-18"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingEvent"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>not in ABCD</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Binomial-2008-11-19"> <rdfs:label xml:lang="en-US">Binomial</rdfs:label> <rdfs:comment xml:lang="en-US">The combination of genus and first (species) epithet of the ScientificName.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "Ctenomys sociabilis"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#Binomial-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Taxon"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/Synecology/AssociatedTaxa/TaxonIdentified/ScientificName/FullScientificNameString</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="BoundingBox-2003-06-17"> <rdfs:label xml:lang="en-US">BoundingBox</rdfs:label> <rdfs:comment xml:lang="en-US">This access point provides a mechanism for performing searches using a bounding box. A Bounding Box element is not typically present in the database, but rather is derived from the DecimalLatitude and DecimalLongitude columns by the data provider.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#BoundingBox-2003-06-17"/> <rdfs:replaces rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/BoundingBox-2003-06-13"/> <rdfs:seeAlso>not covered by ABCD</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="BoundingBox-2003-06-13"> <rdfs:label xml:lang="en-US">BoundingBox</rdfs:label> <rdfs:comment xml:lang="en-US">This access point provides a mechanism for performing searches using a bounding box. A Bounding Box element is not typically present in the database, but rather is derived from the Latitude and Longitude columns by the data provider</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-13</dcterms:issued> <dcterms:modified>2003-06-13</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#BoundingBox-2003-06-13"/> <rdfs:seeAlso>not covered by ABCD</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="CatalogNumber-2008-11-19"> <rdfs:label xml:lang="en-US">CatalogNumber</rdfs:label> <rdfs:comment xml:lang="en-US">An identifier (preferably unique) for the sample within the data set or collection.</rdfs:comment> <dcterms:description xml:lang="en-US">Examples: "2008.1334", "145732a", "145732"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#CatalogNumber-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Sample"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/CatalogNumber-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/UnitID</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="CatalogNumber-2007-04-17"> <rdfs:label xml:lang="en-US">CatalogNumber</rdfs:label> <rdfs:comment xml:lang="en-US">The alphanumeric value identifying a record within the collection. It is highly recommended that each record be uniquely identified within a collection by this value. It is also recommended that each record be uniquely identified in a global context by the combination of InstitutionCode, CollectionCode and CatalogNumber.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwcore/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwcore/#CatalogNumber-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/dwcore/CatalogNumberText-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/UnitID</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Collector-2003-06-17"> <rdfs:label xml:lang="en-US">Collector</rdfs:label> <rdfs:comment xml:lang="en-US">The name(s) of the collector(s) of the original data for the cataloged item.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#Collector-2003-06-17"/> <rdfs:replaces rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/Collector-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/GatheringAgents/GatheringAgentsText</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Collector-2003-06-13"> <rdfs:label xml:lang="en-US">Collector</rdfs:label> <rdfs:comment xml:lang="en-US">The name(s) of the collector(s) responsible for collection the specimen or taking the observation</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-13</dcterms:issued> <dcterms:modified>2003-06-13</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#Collector-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/GatheringAgents/GatheringAgentsText</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="EndTimeOfDay-2008-11-19"> <rdfs:label xml:lang="en-US">EndTimeOfDay</rdfs:label> <rdfs:comment xml:lang="en-US">The time of day when the sampling event ended, expressed as decimal hours from midnight, local time.</rdfs:comment> <dcterms:description xml:lang="en-US">Examples: "12.0" (= noon), "13.5" (= 1:30pm)</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#EndTimeOfDay-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingEvent"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/EndTimeOfDay-2005-07-10"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/DateTime/TimeOfDayEnd</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="EndTimeOfDay-2005-07-10"> <rdfs:label xml:lang="en-US">EndTimeOfDay</rdfs:label> <rdfs:comment xml:lang="en-US">The time of day when the sampling event ended, expressed as decimal hours from midnight local time. Examples: 0 = midnight, 12.0 = mid-day, 13.5 = 13:30</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://www.iobis.org/obis/"/> <dcterms:issued>2005-07-10</dcterms:issued> <dcterms:modified>2005-07-10</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://www.iobis.org/obis/#EndTimeOfDay-2005-07-10"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/DateTime/TimeOfDayEnd</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="EndYearCollected-2005-07-10"> <rdfs:label xml:lang="en-US">EndYearCollected</rdfs:label> <rdfs:comment xml:lang="en-US">For samples/observations/record events that were taken over time this gives the end year of the collecting event. The full year should be expressed (e.g. 1972 must be expressed as "1972" not "72"). Must always be a four digit integer.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://www.iobis.org/obis/"/> <dcterms:issued>2005-07-10</dcterms:issued> <dcterms:modified>2005-07-10</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://www.iobis.org/obis/#EndYearCollected-2005-07-10"/> <rdfs:seeAlso>accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeEnd</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="JulianDay-2003-06-17"> <rdfs:label xml:lang="en-US">JulianDay</rdfs:label> <rdfs:comment xml:lang="en-US">The ordinal day of the year (i.e., the number of days since December 31 of the previous year; January 1 is Julian Day 1) on which the cataloged item was collected. May be derived from the YearCollected, MonthCollected, and DayCollected by the provider.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#JulianDay-2003-06-17"/> <rdfs:replaces rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/JulianDay-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/DateTime/DayNumberBegin</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="CatalogNumber-2003-06-13"> <rdfs:label xml:lang="en-US">CatalogNumber</rdfs:label> <rdfs:comment xml:lang="en-US">A unique alphanumeric value which identifies an individual record within the collection. It is recommended that this value provides a key by which the actual specimen can be identified. If the specimen has several items such as various types of preparation, this value should identify the individual component of the specimen</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-13</dcterms:issued> <dcterms:modified>2003-06-13</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#CatalogNumber-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/UnitID</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="CatalogNumberNumeric-2008-11-19"> <rdfs:label xml:lang="en-US">CatalogNumberNumeric</rdfs:label> <rdfs:comment xml:lang="en-US">The numeric value of the CatalogNumber, used to facilitate numerical sorting and searching by ranges.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "1334", "145732"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#CatalogNumberNumeric-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Sample"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/CatalogNumberNumeric-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/UnitIDNumeric</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="CatalogNumberNumeric-2007-04-17"> <rdfs:label xml:lang="en-US">CatalogNumberNumeric</rdfs:label> <rdfs:comment xml:lang="en-US">The CatalogNumber as a numeric value, if applicable. This element allows searching on numeric ranges of CatalogNumbers. Example: 145732.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/curatorial/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/curatorial/#CatalogNumberNumeric-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/curatorial/CatalogNumberNumeric-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/UnitIDNumeric</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="CatalogNumberNumeric-2003-06-17"> <rdfs:label xml:lang="en-US">CatalogNumberNumeric</rdfs:label> <rdfs:comment xml:lang="en-US">The CatalogNumber as a numeric value, if applicable. Allows searching on numeric ranges of CatalogNumbers.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#CatalogNumberNumeric-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/UnitIDNumeric</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="CatalogNumberText-2003-06-17"> <rdfs:label xml:lang="en-US">CatalogNumberText</rdfs:label> <rdfs:comment xml:lang="en-US">An alphanumeric value which identifies an individual cataloged item within the collection. It is recommended that this value provides a key by which the individual cataloged item can be identified.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#CatalogNumberText-2003-06-17"/> <rdfs:replaces rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/CatalogNumber-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/UnitID</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Citation-2008-11-19"> <rdfs:label xml:lang="en-US">Citation</rdfs:label> <rdfs:comment xml:lang="en-US">A statement indicating how this record should be cited (attributed) when used.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#Citation-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Sample"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/IPRStatements/Citations/Citation/Text</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Citation-2005-07-10"> <rdfs:label xml:lang="en-US">Citation</rdfs:label> <rdfs:comment xml:lang="en-US">Indicates how this dataset or record should be attributed if used.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://www.iobis.org/obis/"/> <dcterms:issued>2005-07-10</dcterms:issued> <dcterms:modified>2005-07-10</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://www.iobis.org/obis/#Citation-2005-07-10"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/IPRStatements/Citations/Citation/Text</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Class-2008-11-19"> <rdfs:label xml:lang="en-US">Class</rdfs:label> <rdfs:comment xml:lang="en-US">The name of the class in which the ScientificName is classified.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "Mammalia"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#Class-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Taxon"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/Class-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = classis</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Class-2007-04-17"> <rdfs:label xml:lang="en-US">Class</rdfs:label> <rdfs:comment xml:lang="en-US">The name of the class in which the organism is classified.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwcore/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwcore/#Class-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/dwcore/Class-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = classis</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Class-2003-06-17"> <rdfs:label xml:lang="en-US">Class</rdfs:label> <rdfs:comment xml:lang="en-US">The phylogenetic class to which the cataloged item belongs.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#Class-2003-06-17"/> <rdfs:replaces rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/Class-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = classis</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Class-2003-06-13"> <rdfs:label xml:lang="en-US">Class</rdfs:label> <rdfs:comment xml:lang="en-US">The class name of the organism</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-13</dcterms:issued> <dcterms:modified>2003-06-13</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#Class-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = classis</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="CollectingMethod-2007-04-17"> <rdfs:label xml:lang="en-US">CollectingMethod</rdfs:label> <rdfs:comment xml:lang="en-US">The name of, reference to, or brief description of the method or protocol under which the collecting event occurred. Examples: "UV light trap", "mist net", "bottom trawl".</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwcore/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwcore/#CollectingMethod-2007-04-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/Method</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="CollectionCode-2008-11-19"> <rdfs:label xml:lang="en-US">CollectionCode</rdfs:label> <rdfs:comment xml:lang="en-US">The code (or acronym) identifying the collection within the institution in which the sample is recorded.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "Mammals", "Hildebrandt"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#CollectionCode-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Sample"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/CollectionCode-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/SourceID</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="CollectionCode-2007-04-17"> <rdfs:label xml:lang="en-US">CollectionCode</rdfs:label> <rdfs:comment xml:lang="en-US">The code (or acronym) identifying the collection within the institution in which the organism record is cataloged.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwcore/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwcore/#CollectionCode-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/dwcore/CollectionCode-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/SourceID</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="CollectionCode-2003-06-17"> <rdfs:label xml:lang="en-US">CollectionCode</rdfs:label> <rdfs:comment xml:lang="en-US">A unique alphanumeric value that identifies the collection within the institution in which the item is cataloged. This attribute must contain no spaces.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#CollectionCode-2003-06-17"/> <rdfs:replaces rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/CollectionCode-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/SourceID</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="CollectionCode-2003-06-13"> <rdfs:label xml:lang="en-US">CollectionCode</rdfs:label> <rdfs:comment xml:lang="en-US">A unique alphanumeric value which identifies the collection within the institution</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-13</dcterms:issued> <dcterms:modified>2003-06-13</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#CollectionCode-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/SourceID</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="CollectionID-2008-11-19"> <rdfs:label xml:lang="en-US">CollectionID</rdfs:label> <rdfs:comment xml:lang="en-US">The global unique identifier for the collection. Recommended best practice is to use the identifier in a collections registry such as the Biodiversity Collections Index.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#CollectionID-2008-11-19"/> <rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/identifier"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Sample"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/SourceID</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Collector-2008-11-19"> <rdfs:label xml:lang="en-US">Collector</rdfs:label> <rdfs:comment xml:lang="en-US">A list (concatenated and separated) of names of people, groups, or organizations responsible for the collection of the sample. The primary collector or observer, especially one whose CollectorNumber is also provided, should be listed first.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "Oliver P. Pearson, Anita K. Pearson" where the value in CollectorNumber "OPP 7101" corresponds to the number for the specimen in the field catalog (collector number) of Oliver P. Pearson.</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#Collector-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingEvent"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/Collector-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/GatheringAgents/GatheringAgentsText</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Collector-2007-04-17"> <rdfs:label xml:lang="en-US">Collector</rdfs:label> <rdfs:comment xml:lang="en-US">The name(s) (concatenated and separated) of collectors or observers. "LIKE" or "contains" substring query operations are meant to be used with this element to find matching collector names. The primary collector or observer, especially one whose CollectorNumber is also provided, should be listed first. Example: "Oliver P. Pearson, Anita K. Pearson" where the value in CollectorNumber "OPP 7101" corresponds to the number for the specimen in the field catalog (collector number) of Oliver P. Pearson.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwcore/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwcore/#Collector-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/dwcore/Collector-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/GatheringAgents/GatheringAgentsText</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="CollectorNumber-2008-11-19"> <rdfs:label xml:lang="en-US">CollectorNumber</rdfs:label> <rdfs:comment xml:lang="en-US">An identifier given to the sample at the time of the sampling event. Often serves as a link between field notes and the sample.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "OPP 7101"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#CollectorNumber-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingEvent"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/CollectorNumber-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/CollectorsFieldNumber</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="CollectorNumber-2007-04-17"> <rdfs:label xml:lang="en-US">CollectorNumber</rdfs:label> <rdfs:comment xml:lang="en-US">An identifying string applied to the object or observation at the time of collection. Serves as a link between field notes and the object or observation.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/curatorial/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/curatorial/#CollectorNumber-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/curatorial/CollectorNumber-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/GatheringAgents/GatheringAgentsText</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="CollectorNumber-2003-06-17"> <rdfs:label xml:lang="en-US">CollectorNumber</rdfs:label> <rdfs:comment xml:lang="en-US">An identifying string applied to the cataloged item at the time of collection. Serves as a link between field notes and the cataloged items.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#CollectorNumber-2003-06-17"/> <rdfs:replaces rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/CollectorNumber-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/CollectorsFieldNumber</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="CollectorNumber-2003-06-13"> <rdfs:label xml:lang="en-US">CollectorNumber</rdfs:label> <rdfs:comment xml:lang="en-US">An identifying "number" (really a string) applied to specimens (in some disciplines) at the time of collection. Establishes a links different parts/preparations of a single specimen and between field notes and the specimen.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-13</dcterms:issued> <dcterms:modified>2003-06-13</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#CollectorNumber-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/CollectorsFieldNumber</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Continent-2008-11-19"> <rdfs:label xml:lang="en-US">Continent</rdfs:label> <rdfs:comment xml:lang="en-US">The full, unabbreviated name of the continent on which the sampling event occurred. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "Antarctica"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#Continent-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingLocation"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/Continent-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Continent</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Continent-2007-04-17"> <rdfs:label xml:lang="en-US">Continent</rdfs:label> <rdfs:comment xml:lang="en-US">The full, unabbreviated name of the continent on which the organism was collected or observed.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwcore/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwcore/#Continent-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/dwcore/ContinentOcean-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Continent</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="ContinentOcean-2003-06-17"> <rdfs:label xml:lang="en-US">ContinentOcean</rdfs:label> <rdfs:comment xml:lang="en-US">The full, unabbreviated name of the continent or ocean from which the cataloged item was collected.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#ContinentOcean-2003-06-17"/> <rdfs:replaces rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/ContinentOcean-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Continent</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="ContinentOcean-2003-06-13"> <rdfs:label xml:lang="en-US">ContinentOcean</rdfs:label> <rdfs:comment xml:lang="en-US">The continent or ocean from which a specimen was collected.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-13</dcterms:issued> <dcterms:modified>2003-06-13</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#ContinentOcean-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Continent</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="CoordinatePrecision-2008-11-19"> <rdfs:label xml:lang="en-US">CoordinatePrecision</rdfs:label> <rdfs:comment xml:lang="en-US">A decimal representation of the precision of the coordinates given in the DecimalLatitude and DecimalLongitude.</rdfs:comment> <dcterms:description xml:lang="en-US">Examples: "0.00001" (normal GPS limit for decimal degrees), "0.000278" (nearest second), "0.01667" (nearest minute), "1.0" (nearest degree)</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#CoordinatePrecision-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingLocation"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/CoordinatePrecision-2003-06-13"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLong/ISOAccuracy or DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLong/AccuracyStatement</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="CoordinatePrecision-2003-06-13"> <rdfs:label xml:lang="en-US">CoordinatePrecision</rdfs:label> <rdfs:comment xml:lang="en-US">An estimate of how tightly the collecting locality was specified; expressed as a distance, in meters, that corresponds to a radius around the latitude-longitude coordinates. Use NULL where precision is unknown, cannot be estimated, or is not applicable.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-13</dcterms:issued> <dcterms:modified>2003-06-13</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#CoordinatePrecision-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLong/ISOAccuracy or DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLong/AccuracyStatement</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="CoordinateUncertaintyInMeters-2008-11-19"> <rdfs:label xml:lang="en-US">CoordinateUncertaintyInMeters</rdfs:label> <rdfs:comment xml:lang="en-US">The upper limit of the distance (in meters) from the given DecimalLatitude and DecimalLongitude describing a circle within which the whole of the sampling location is contained. 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.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "30" (reasonable lower limit of a GPS reading under good conditions if the actual precision was not recorded at the time).</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#CoordinateUncertaintyInMeters-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingLocation"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/CoordinateUncertaintyInMeters-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/CoordinateErrorDistanceInMeters</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="CoordinateUncertaintyInMeters-2007-04-17"> <rdfs:label xml:lang="en-US">CoordinateUncertaintyInMeters</rdfs:label> <rdfs:comment xml:lang="en-US">The upper limit of the distance (in meters) from the given DecimalLatitude and DecimalLongitude describing a circle within which the whole of the described locality lies. Leave the value empty if the uncertainty is unknown, cannot be estimated, or is not applicable (because there are no coordinates). Describes the point-radius representation of the location, along with DecimalLatitude, DecimalLongitude, and GeodeticDatum. Zero is not a valid value for this element.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/geospatial/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/geospatial/#CoordinateUncertaintyInMeters-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/geospatial/CoordinateUncertaintyInMeters-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/CoordinateErrorDistanceInMeters</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="CoordinateUncertaintyInMeters-2003-06-17"> <rdfs:label xml:lang="en-US">CoordinateUncertaintyInMeters</rdfs:label> <rdfs:comment xml:lang="en-US">The upper limit of the distance (in meters) from the given latitude and longitude describing a circle within which the whole of the described locality must lie. Use NULL where the uncertainty is unknown, cannot be estimated, or is not applicable.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#CoordinateUncertaintyInMeters-2003-06-17"/> <rdfs:replaces rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/CoordinatePrecision-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/CoordinateErrorDistanceInMeters</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Country-2008-11-19"> <rdfs:label xml:lang="en-US">Country</rdfs:label> <rdfs:comment xml:lang="en-US">The full, unabbreviated name of the country or major political unit in which the sampling event occurred. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.</rdfs:comment> <dcterms:description xml:lang="en-US">Examples: "Denmark", "Colombia", "España"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#Country-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingLocation"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/Country-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/Country/Name</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Country-2007-04-17"> <rdfs:label xml:lang="en-US">Country</rdfs:label> <rdfs:comment xml:lang="en-US">The full, unabbreviated name of the country or major political unit in which the organism was collected or observed.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwcore/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwcore/#Country-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/dwcore/Country-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/Country/Name</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Country-2003-06-17"> <rdfs:label xml:lang="en-US">Country</rdfs:label> <rdfs:comment xml:lang="en-US">The full, unabbreviated name of the country or major political unit from which the cataloged item was collected.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#Country-2003-06-17"/> <rdfs:replaces rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/Country-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/Country/Name</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Country-2003-06-13"> <rdfs:label xml:lang="en-US">Country</rdfs:label> <rdfs:comment xml:lang="en-US">The country or major political unit from which the specimen was collected. ISO 3166-1 (http://www.din.de/gremien/nas/nabd/iso3166ma/codlstp1/db_en.html) values should be used. Full country names are currently in use. A future recommendation is to use ISO3166-1 two letter codes or the full name when searching</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-13</dcterms:issued> <dcterms:modified>2003-06-13</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#Country-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/Country/Name</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="CountryCode-2008-11-19"> <rdfs:label xml:lang="en-US">CountryCode</rdfs:label> <rdfs:comment xml:lang="en-US">The standard code for the country in which the sampling event occurred. Recommended best practice is to used ISO 3166 3-letter country code.</rdfs:comment> <dcterms:description xml:lang="en-US">Examples: "ARG" (=Argentina), "SLV" (=El Salvador)</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#CountryCode-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingLocation"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/Country/ISO3166Code</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="County-2008-11-19"> <rdfs:label xml:lang="en-US">County</rdfs:label> <rdfs:comment xml:lang="en-US">The full, unabbreviated name of the next smaller political region than StateProvince (county, shire, municipality, etc.) in which the sampling event occurred.</rdfs:comment> <dcterms:description xml:lang="en-US">Examples: "Missoula", "Los Lagos", "Mataró"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#County-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingLocation"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/County-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= County</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="County-2007-04-17"> <rdfs:label xml:lang="en-US">County</rdfs:label> <rdfs:comment xml:lang="en-US">The full, unabbreviated name of the county, shire, or municipality (i.e., the next smaller political region than StateProvince) in which the organism was collected or observed.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwcore/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwcore/#County-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/dwcore/County-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= County</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="County-2003-06-17"> <rdfs:label xml:lang="en-US">County</rdfs:label> <rdfs:comment xml:lang="en-US">The full, unabbreviated name of the county, shire, or municipality (i.e., the next smaller political region than StateProvince) from which the cataloged item was collected.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#County-2003-06-17"/> <rdfs:replaces rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/County-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= County</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="County-2003-06-13"> <rdfs:label xml:lang="en-US">County</rdfs:label> <rdfs:comment xml:lang="en-US">The county (or shire, or next political region smaller than State / Province) from which the specimen was collected</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-13</dcterms:issued> <dcterms:modified>2003-06-13</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#County-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= County</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Dataset-2008-11-19"> <rdfs:label xml:lang="en-US">Dataset</rdfs:label> <rdfs:comment xml:lang="en-US">Container class for information about the set of data in which the record is included.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#Dataset-2008-11-19"/> <rdfs:subPropertyOf rdf:resource="http://purl.org/dc/dcmitype/Dataset"/> <rdfs:domain rdf:resource="none"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="DatasetID-2008-11-19"> <rdfs:label xml:lang="en-US">DatasetID</rdfs:label> <rdfs:comment xml:lang="en-US">An identifier for the data set. May be a global unique identifier or an identifier specific to a collection or institution.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#DatasetID-2008-11-19"/> <rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/identifier"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Dataset"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/DataSetGUID</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="DateIdentified-2008-11-19"> <rdfs:label xml:lang="en-US">DateIdentified</rdfs:label> <rdfs:comment xml:lang="en-US">The date on which the sample was identified as being a member of the taxon given in the ScientificName.</rdfs:comment> <dcterms:description xml:lang="en-US">Date may be used to express temporal information at any level of granularity. Recommended best practice is to use an encoding scheme, such as the W3CDTF profile of ISO 8601 [W3CDTF].</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#DateIdentified-2008-11-19"/> <rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/date"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Identification"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/DateIdentified-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Identifications/Identification/Date/DateText</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="DateIdentified-2007-04-17"> <rdfs:label xml:lang="en-US">DateIdentified</rdfs:label> <rdfs:comment xml:lang="en-US">The date-time in the Common Era calendar in which the object or observation was identified as being a member of the taxon given in the ScientificName.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/curatorial/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/curatorial/#DateIdentified-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/curatorial/YearIdentified-2003-06-17, MonthIdentified-2003-06-17, DayIdentified-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Identifications/Identification/Date/DateText</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="DateLastModified-2007-04-17"> <rdfs:label xml:lang="en-US">DateLastModified</rdfs:label> <rdfs:comment xml:lang="en-US">The last date-time of publication when any of the data for the record were modified from the previous publication of that record. When publishing a record for the first time, use the publication date-time. Returns values as ISO 8601 date and time. (cf. http://www.w3.org/TR/xmlschema-2/#isoformats and http://www.iso.org/iso/en/prods-services/popstds/dateandtime.html Example: November 5, 1994, 8:15:30 am, US Eastern Standard Time” would be “1994-11-05T13:15:30Z”</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwcore/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwcore/#DateLastModified-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/dwcore/DateLastModified-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/DateLastEdited</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="DateLastModified-2003-06-17"> <rdfs:label xml:lang="en-US">DateLastModified</rdfs:label> <rdfs:comment xml:lang="en-US">ISO 8601 date and time in UTC(GMT) when the record was last modified. Example: "November 5, 1994, 8:15:30 am, US Eastern Standard Time" would be "1994-11-05T13:15:30Z" (see http://www.w3.org/TR/NOTE-datetime).</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#DateLastModified-2003-06-17"/> <rdfs:replaces rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/DateLastModified-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/DateLastEdited</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="DateLastModified-2003-06-13"> <rdfs:label xml:lang="en-US">DateLastModified</rdfs:label> <rdfs:comment xml:lang="en-US">ISO 8601 compliant stamp indicating the date and time in UTC(GMT) when the record was last modified. Example: the instant "November 5, 1994, 8:15:30 am, US Eastern Standard Time" would be represented as "1994-11-05T13:15:30Z" (see W3C Note on Date and Time Formats - http://www.w3.org/TR/NOTE-datetime). (What to do when this date-time is unknown? Use Date-Time first "published"?)</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-13</dcterms:issued> <dcterms:modified>2003-06-13</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#DateLastModified-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/DateLastEdited</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="DayCollected-2003-06-17"> <rdfs:label xml:lang="en-US">DayCollected</rdfs:label> <rdfs:comment xml:lang="en-US">The two digit day of the month in the Common Era calendar during which the cataloged item was collected from the field.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#DayCollected-2003-06-17"/> <rdfs:replaces rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/DayCollected-2003-06-13"/> <rdfs:seeAlso>accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="DayCollected-2003-06-13"> <rdfs:label xml:lang="en-US">DayCollected</rdfs:label> <rdfs:comment xml:lang="en-US">The day of the month the specimen was collected from the field. Possible value ranges from 01..31 inclusive</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-13</dcterms:issued> <dcterms:modified>2003-06-13</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#DayCollected-2003-06-13"/> <rdfs:seeAlso>accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="DayIdentified-2003-06-17"> <rdfs:label xml:lang="en-US">DayIdentified</rdfs:label> <rdfs:comment xml:lang="en-US">The two digit day of the month in the Common Era calendar during which the cataloged item was identified.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#DayIdentified-2003-06-17"/> <rdfs:replaces rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/DayIdentified-2003-06-13"/> <rdfs:seeAlso>accessible from DataSets/DataSet/Units/Unit/Identifications/Identification/Date/DateText</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="DayIdentified-2003-06-13"> <rdfs:label xml:lang="en-US">DayIdentified</rdfs:label> <rdfs:comment xml:lang="en-US">The day portion of the date when the Collection Item was identified; as two digits [01..31].</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-13</dcterms:issued> <dcterms:modified>2003-06-13</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#DayIdentified-2003-06-13"/> <rdfs:seeAlso>accessible from DataSets/DataSet/Units/Unit/Identifications/Identification/Date/DateText</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="DayOfMonth-2008-11-19"> <rdfs:label xml:lang="en-US">DayOfMonth</rdfs:label> <rdfs:comment xml:lang="en-US">The two-digit day of the month in which the sampling event occurred.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "28"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#DayOfMonth-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingEvent"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/DayCollected-2003-06-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="DayOfYear-2007-04-17"> <rdfs:label xml:lang="en-US">DayOfYear</rdfs:label> <rdfs:comment xml:lang="en-US">The ordinal day of the year on which the object or observation was collected (1 for January 1, 365 for December 31, except in a leap year, in which case it is 366). If the EarliestDateCollected and LatestDateCollected do not occur on the same day, do not populate DayOfYear.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwcore/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwcore/#DayOfYear-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/dwcore/JulianDay-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/DateTime/DayNumberBegin</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="DecimalLatitude-2008-11-19"> <rdfs:label xml:lang="en-US">DecimalLatitude</rdfs:label> <rdfs:comment xml:lang="en-US">The geographic latitude (in decimal degrees, using the coordinate reference system given in GeodeticDatum) of the geographic center of a sampling location. Positive values are north of the Equator, negative values are south of it.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "-41.0983423"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#DecimalLatitude-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingLocation"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/DecimalLatitude-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/LatitudeDecimal</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="DecimalLatitude-2007-04-17"> <rdfs:label xml:lang="en-US">DecimalLatitude</rdfs:label> <rdfs:comment xml:lang="en-US">The latitude of the geographic center of a location where an event occurred (organism collected, observation made), expressed in decimal degrees. Positive values are North of the Equator, negative values are South of the Equator. Describes the point-radius representation of the location, along with DecimalLongitude, GeodeticDatum, and CoordinateUncertaintyInMeters. Example: -41.0983423</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/geospatial/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/geospatial/#DecimalLatitude-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/geospatial/DecimalLatitude-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/LatitudeDecimal</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="DecimalLatitude-2003-06-17"> <rdfs:label xml:lang="en-US">DecimalLatitude</rdfs:label> <rdfs:comment xml:lang="en-US">The latitude of the location from which the cataloged item was collected, expressed in decimal degrees.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#DecimalLatitude-2003-06-17"/> <rdfs:replaces rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/Latitude-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/LatitudeDecimal</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="DecimalLongitude-2008-11-19"> <rdfs:label xml:lang="en-US">DecimalLongitude</rdfs:label> <rdfs:comment xml:lang="en-US">The geographic longitude (in decimal degrees, using the coordinate reference system given in GeodeticDatum) of the geographic center of a sampling location. Positive values are east of the Greenwich Meridian, negative values are west of it.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "-121.1761111"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#DecimalLongitude-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingLocation"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/DecimalLongitude-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/LongitudeDecimal</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="DecimalLongitude-2007-04-17"> <rdfs:label xml:lang="en-US">DecimalLongitude</rdfs:label> <rdfs:comment xml:lang="en-US">The longitude of the geographic center of a location where an event occurred (organism collected, observation made), expressed in decimal degrees. Positive values are East of the Greenwich Meridian, negative values are West of the Greenwich Meridian. Describes the point-radius representation of the location, along with DecimalLatitude, GeodeticDatum, and CoordinateUncertaintyInMeters. Example: -71.0943235</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/geospatial/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/geospatial/#DecimalLongitude-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/geospatial/DecimalLongitude-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/LongitudeDecimal</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="DecimalLongitude-2003-06-17"> <rdfs:label xml:lang="en-US">DecimalLongitude</rdfs:label> <rdfs:comment xml:lang="en-US">The longitude of the location from which the cataloged item was collected, expressed in decimal degrees.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#DecimalLongitude-2003-06-17"/> <rdfs:replaces rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/Longitude-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/LongitudeDecimal</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="DepthRange-2005-07-10"> <rdfs:label xml:lang="en-US">DepthRange</rdfs:label> <rdfs:comment xml:lang="en-US">For data sets that have the depth range expressed in one field (e.g. "150-200 m") it can be entered here as free text. Separate, numeric Minimum and Maximum Depth fields are the preferred format; the Depth Range option is included for legacy data sets.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://www.iobis.org/obis/"/> <dcterms:issued>2005-07-10</dcterms:issued> <dcterms:modified>2005-07-10</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://www.iobis.org/obis/#DepthRange-2005-07-10"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactText</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Disposition-2008-11-19"> <rdfs:label xml:lang="en-US">Disposition</rdfs:label> <rdfs:comment xml:lang="en-US">The current disposition of the sample. Recommended best practice is to use a controlled vocabulary.</rdfs:comment> <dcterms:description xml:lang="en-US">Examples: "in collection", "missing", "voucher elsewhere", "duplicates elsewhere"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#Disposition-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Sample"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/Disposition-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/SpecimenUnit/Disposition</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Disposition-2007-04-17"> <rdfs:label xml:lang="en-US">Disposition</rdfs:label> <rdfs:comment xml:lang="en-US">The current disposition of the cataloged item. Examples: "in collection", "missing", "voucher elsewhere", "duplicates elsewhere".</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/curatorial/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/curatorial/#Disposition-2007-04-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/SpecimenUnit/Disposition</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="DistanceAboveSurfaceInMetersMaximum-2008-11-19"> <rdfs:label xml:lang="en-US">DistanceAboveSurfaceInMetersMaximum</rdfs:label> <rdfs:comment xml:lang="en-US">The greater distance in meters in a range of distance (from the nearest surface in the vertical direction; positive for above, negative for below) at which the sampling event occurred.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: 1.5 meter sediment core from the bottom of a lake (at depth 20m) at 300m elevation; VerbatimElevation: "300m" MinimumElevationInMeters: "300", MaximumElevationInMeters: "300", VerbatimDepth: "20m", MinumumDepthInMeters: "20", MaximumDepthInMeters: "20", DistanceAboveSurfaceInMetersMinimum: "0", DistanceAboveSurfaceInMetersMaximum: "-1.5"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#DistanceAboveSurfaceInMetersMaximum-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingLocation"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/UpperValue</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="DistanceAboveSurfaceInMetersMinimum-2008-11-19"> <rdfs:label xml:lang="en-US">DistanceAboveSurfaceInMetersMinimum</rdfs:label> <rdfs:comment xml:lang="en-US">The lesser distance in meters in a range of distance (from the nearest surface in the vertical direction; positive for above, negative for below) at which the sampling event occurred.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: 1.5 meter sediment core from the bottom of a lake (at depth 20m) at 300m elevation; VerbatimElevation: "300m" MinimumElevationInMeters: "300", MaximumElevationInMeters: "300", VerbatimDepth: "20m", MinumumDepthInMeters: "20", MaximumDepthInMeters: "20", DistanceAboveSurfaceInMetersMinimum: "0", DistanceAboveSurfaceInMetersMaximum: "-1.5"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#DistanceAboveSurfaceInMetersMinimum-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingLocation"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/LowerValue</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="DwCType-2008-11-19"> <rdfs:label xml:lang="en-US">DwCType</rdfs:label> <rdfs:comment xml:lang="en-US">The set of classes specified by the Darwin Core Type Vocabulary, used to categorize the nature or genre of the resource.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/DwCType/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://purl.org/dc/dcam/VocabularyEncodingScheme"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/DwCType/#DwCType-2008-11-19"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>RecordBasisEnum/FossileSpecimen</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="EarliestDateCollected-2008-11-19"> <rdfs:label xml:lang="en-US">EarliestDateCollected</rdfs:label> <rdfs:comment xml:lang="en-US">The earliest date-time in a period during which a sampling event occurred. If the event is recorded as occurring at a single date-time, populate both EarliestDateCollected and LatestDateCollected with the same value.</rdfs:comment> <dcterms:description xml:lang="en-US">Date may be used to express temporal information at any level of granularity. Recommended best practice is to use an encoding scheme, such as the W3CDTF profile of ISO 8601 [W3CDTF].</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#EarliestDateCollected-2008-11-19"/> <rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/date"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingEvent"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/EarliestDateCollected-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="EarliestDateCollected-2007-04-17"> <rdfs:label xml:lang="en-US">EarliestDateCollected</rdfs:label> <rdfs:comment xml:lang="en-US">The earliest date-time (Common Era calendar) in a date-time period during which an organism or group of organisms was collected or observed. If the event is recorded as occurring at a single date-time, populate both EarliestDateCollected and LatestDateCollected with the same value.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwcore/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwcore/#EarliestDateCollected-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/dwcore/YearCollected-2003-06-17, MonthCollected-2003-06-17, DayCollected-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="EndDayCollected-2005-07-10"> <rdfs:label xml:lang="en-US">EndDayCollected</rdfs:label> <rdfs:comment xml:lang="en-US">For samples/observations/record events that were taken over time this gives the end day of the collecting event. Possible value ranges from 01..31 inclusive.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://www.iobis.org/obis/"/> <dcterms:issued>2005-07-10</dcterms:issued> <dcterms:modified>2005-07-10</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://www.iobis.org/obis/#EndDayCollected-2005-07-10"/> <rdfs:seeAlso>accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeEnd</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="EndDayOfYear-2009-01-21"> <rdfs:label xml:lang="en-US">EndDayOfYear</rdfs:label> <rdfs:comment xml:lang="en-US">The latest ordinal day of the year on which the sampling event occurred (1 for January 1, 365 for December 31, except in a leap year, in which case it is 366).</rdfs:comment> <dcterms:description xml:lang="en-US">Examples: "1" (=1 Jan), "366" (=31 Dec), "365" (=30 Dec in a leap year, 31 Dec in a non-leap year)</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2009-01-21</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#EndDayOfYear-2009-01-21"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingEvent"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/DayOfYear-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/DateTime/DayNumberEnd</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="EndJulianDay-2005-07-10"> <rdfs:label xml:lang="en-US">EndJulianDay</rdfs:label> <rdfs:comment xml:lang="en-US">For samples/observations/record events that were taken over time this gives the end ordinal day of the year for the collecting event; i.e., the number of days since January 1 of the same year. (January 1 is Julian Day 1.). Should be an integer from one to 365, i.e. of the form (([0-3][0-9][0-9)|([0-9][0-9)|([1-9])).</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://www.iobis.org/obis/"/> <dcterms:issued>2005-07-10</dcterms:issued> <dcterms:modified>2005-07-10</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://www.iobis.org/obis/#EndJulianDay-2005-07-10"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/DateTime/DayNumberEnd</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="EndLatitude-2005-07-10"> <rdfs:label xml:lang="en-US">EndLatitude</rdfs:label> <rdfs:comment xml:lang="en-US">For samples/observations/record events better represented as line features rather than point features (e.g. extended trawls or transects) this indicates the starting latitude location from which the specimen was collected or in which the sample/observation/record event occurred. This value should be expressed in decimal degrees (East & North = +; West & South = -). GPS-derived data must use the WGS 84 geodetic reference system (http://www.wgs84.com/).</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://www.iobis.org/obis/"/> <dcterms:issued>2005-07-10</dcterms:issued> <dcterms:modified>2005-07-10</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://www.iobis.org/obis/#EndLatitude-2005-07-10"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/CoordinateSets/SiteCoordinates/CoordinatesLatLon/LatitudeDecimal with attribute "begin" set to true</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="EndLongitude-2005-07-10"> <rdfs:label xml:lang="en-US">EndLongitude</rdfs:label> <rdfs:comment xml:lang="en-US">For samples/observations/record events better represented as line features rather than point features (e.g. extended trawls or transects) this indicates the starting longitude location from which the specimen was collected. Express in decimal degrees (East & North = +; West & South = -). GPS-derived data must use the WGS 84 geodetic reference system (http://www.wgs84.com/).</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://www.iobis.org/obis/"/> <dcterms:issued>2005-07-10</dcterms:issued> <dcterms:modified>2005-07-10</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://www.iobis.org/obis/#EndLongitude-2005-07-10"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/CoordinateSets/SiteCoordinates/CoordinatesLatLon/LongitudeDecimal with attribute "begin" set to true</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="EndMonthCollected-2005-07-10"> <rdfs:label xml:lang="en-US">EndMonthCollected</rdfs:label> <rdfs:comment xml:lang="en-US">For samples/observations/record events that were taken over time this gives the end month of the collecting event. Possible values range from 01...12 inclusive.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://www.iobis.org/obis/"/> <dcterms:issued>2005-07-10</dcterms:issued> <dcterms:modified>2005-07-10</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://www.iobis.org/obis/#EndMonthCollected-2005-07-10"/> <rdfs:seeAlso>accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeEnd</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="EstablishmentMeans-2008-11-19"> <rdfs:label xml:lang="en-US">EstablishmentMeans</rdfs:label> <rdfs:comment xml:lang="en-US">The process by which the the biological individual represented by the sample became established at the sampling location. Recommended best practice is to use a controlled vocabulary.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#EstablishmentMeans-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Sample"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/EstablishmentMeans</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="EventAttribute-2008-11-19"> <rdfs:label xml:lang="en-US">EventAttribute</rdfs:label> <rdfs:comment xml:lang="en-US">Container class for information about attributes related to a given sampling event.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#EventAttribute-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingEvent"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="EventAttributeAccuracy-2009-01-18"> <rdfs:label xml:lang="en-US">EventAttributeAccuracy</rdfs:label> <rdfs:comment xml:lang="en-US">The description of the error associated with the EventAttributeValue.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "0.01", "normal distribution with variation of 2 m"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2009-01-18</dcterms:issued> <dcterms:modified>2009-01-18</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#EventAttributeAccuracy-2009-01-18"/> <rdfs:subPropertyOf rdf:resource="http://rs.tdwg.org/dwc/terms/Accuracy"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/EventAttribute"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Aspect/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Accuracy</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="EventAttributeDeterminedBy-2009-01-23"> <rdfs:label xml:lang="en-US">EventAttributeDeterminedBy</rdfs:label> <rdfs:comment xml:lang="en-US">The agent responsible for having determined the value of the measurement or characteristic of the sampling event.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "Robert Hijmans"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2009-01-23</dcterms:issued> <dcterms:modified>2009-01-23</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#EventAttributeDeterminedBy-2009-01-23"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/EventAttribute"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/MeasuredBy</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="EventAttributeDeterminedDate-2009-01-23"> <rdfs:label xml:lang="en-US">EventAttributeDeterminedDate</rdfs:label> <rdfs:comment xml:lang="en-US">The date on which the the measurement or characteristic of the sampling event was made.</rdfs:comment> <dcterms:description xml:lang="en-US">Date may be used to express temporal information at any level of granularity. Recommended best practice is to use an encoding scheme, such as the W3CDTF profile of ISO 8601 [W3CDTF].</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2009-01-23</dcterms:issued> <dcterms:modified>2009-01-23</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#EventAttributeDeterminedDate-2009-01-23"/> <rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/date"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/EventAttribute"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/MeasurementDateTime</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="EventAttributeID-2008-11-19"> <rdfs:label xml:lang="en-US">EventAttributeID</rdfs:label> <rdfs:comment xml:lang="en-US">An identifier for the event attribute. May be a global unique identifier or an identifier specific to the data set.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#EventAttributeID-2008-11-19"/> <rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/identifier"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/EventAttribute"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>not in ABCD</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="EventAttributeRemarks-2008-11-19"> <rdfs:label xml:lang="en-US">EventAttributeRemarks</rdfs:label> <rdfs:comment xml:lang="en-US">Comments or notes accompanying the measurement or characteristic of the sampling event.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "temperature taken at 15:00"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#EventAttributeRemarks-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/EventAttribute"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>not in ABCD</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="EventAttributeType-2008-11-19"> <rdfs:label xml:lang="en-US">EventAttributeType</rdfs:label> <rdfs:comment xml:lang="en-US">The nature of the measurement or characteristic of the sampling event. Recommended best practice is to use a controlled vocabulary.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "Temperature"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#EventAttributeType-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/EventAttribute"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Parameter</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="EventAttributeUnit-2008-11-19"> <rdfs:label xml:lang="en-US">EventAttributeUnit</rdfs:label> <rdfs:comment xml:lang="en-US">The units for the value of the measurement or characteristic of the sampling event. Recommended best practice is to use International System of Units (SI) units.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "Celcius"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#EventAttributeUnit-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/EventAttribute"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UnitOfMeasurement</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="EventAttributeValue-2008-11-19"> <rdfs:label xml:lang="en-US">EventAttributeValue</rdfs:label> <rdfs:comment xml:lang="en-US">The value of the measurement or characteristic of the sampling event.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "22"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#EventAttributeValue-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/EventAttribute"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/UpperValue</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Family-2008-11-19"> <rdfs:label xml:lang="en-US">Family</rdfs:label> <rdfs:comment xml:lang="en-US">The name of the family in which the ScientificName is classified.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "Ctenomyidae"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#Family-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Taxon"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/Family-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = familia</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Family-2007-04-17"> <rdfs:label xml:lang="en-US">Family</rdfs:label> <rdfs:comment xml:lang="en-US">The name of the family in which the organism is classified.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwcore/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwcore/#Family-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/dwcore/Family-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = familia</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Family-2003-06-17"> <rdfs:label xml:lang="en-US">Family</rdfs:label> <rdfs:comment xml:lang="en-US">The phylogenetic family to which the cataloged item belongs.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#Family-2003-06-17"/> <rdfs:replaces rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/Family-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = familia</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Family-2003-06-13"> <rdfs:label xml:lang="en-US">Family</rdfs:label> <rdfs:comment xml:lang="en-US">The family name of the organism</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-13</dcterms:issued> <dcterms:modified>2003-06-13</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#Family-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = familia</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="FieldNotes-2009-01-21"> <rdfs:label xml:lang="en-US">FieldNotes</rdfs:label> <rdfs:comment xml:lang="en-US">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 sample.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "notes available in Grinnell-Miller Library"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2009-01-21</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#FieldNotes-2009-01-21"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingEvent"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/FieldNotes-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/FieldNotes</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="FieldNotes-2007-04-17"> <rdfs:label xml:lang="en-US">FieldNotes</rdfs:label> <rdfs:comment xml:lang="en-US">One of a) a flag indicating the existence of, b) a reference to (such as a URL or literature citation), or c) the actual free text content of notes taken in the field about the specimen or observation.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/curatorial/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/curatorial/#FieldNotes-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/curatorial/FieldNotes-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/FieldNotes</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="FieldNotes-2003-06-17"> <rdfs:label xml:lang="en-US">FieldNotes</rdfs:label> <rdfs:comment xml:lang="en-US">A reference to, or flag marking the existence of notes taken in the field for the cataloged item.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#FieldNotes-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/FieldNotes</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="FieldNumber-2008-11-19"> <rdfs:label xml:lang="en-US">FieldNumber</rdfs:label> <rdfs:comment xml:lang="en-US">An identifier given to the sampling event in the field. Often serves as a link between field notes and the sampling event.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "RV Sol 87-03-08"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#FieldNumber-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingEvent"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/FieldNumber-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/Code</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="FieldNumber-2007-04-17"> <rdfs:label xml:lang="en-US">FieldNumber</rdfs:label> <rdfs:comment xml:lang="en-US">An identifying string applied to a set of objects or observations resulting from a single collecting event.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/curatorial/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/curatorial/#FieldNumber-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/curatorial/FieldNumber-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/Code</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="FieldNumber-2003-06-17"> <rdfs:label xml:lang="en-US">FieldNumber</rdfs:label> <rdfs:comment xml:lang="en-US">An identifying string applied to a set of material that resulted from a single collecting event.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#FieldNumber-2003-06-17"/> <rdfs:replaces rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/FieldNumber-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/Code</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="FieldNumber-2003-06-13"> <rdfs:label xml:lang="en-US">FieldNumber</rdfs:label> <rdfs:comment xml:lang="en-US">A "number" (really a string) created at collection time to identify all material that resulted from a collecting event.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-13</dcterms:issued> <dcterms:modified>2003-06-13</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#FieldNumber-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/Code</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="FootprintSpatialFit-2008-11-19"> <rdfs:label xml:lang="en-US">FootprintSpatialFit</rdfs:label> <rdfs:comment xml:lang="en-US">The ratio of the area of the footprint (FootprintWKT) to the area of the true (original, or most specific) spatial representation of the sampling 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.</rdfs:comment> <dcterms:description xml:lang="en-US">Detailed explanations with graphical examples can be found in the "Guide to Best Practices for Georeferencing" (Chapman and Wieczorek, eds. 2006).</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#FootprintSpatialFit-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingLocation"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/FootprintSpatialFit-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/FootprintSpatialFit (ABCD v2.06b)</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="FootprintSpatialFit-2007-04-17"> <rdfs:label xml:lang="en-US">FootprintSpatialFit</rdfs:label> <rdfs:comment xml:lang="en-US">A measure of how well the geometry expressed in the footprint match the original spatial representation, as a ratio of the area of the footprint given to the area of the original spatial representation. 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 georeference does not completely contain the original representation. The FootprintSpatialFit is undefined 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 Guide to Best Practices for Georeferencing (Chapman and Wieczorek, eds. 2006).</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/geospatial/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/geospatial/#FootprintSpatialFit-2007-04-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/FootprintSpatialFit (ABCD v2.06b)</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="FootprintWKT-2008-11-19"> <rdfs:label xml:lang="en-US">FootprintWKT</rdfs:label> <rdfs:comment xml:lang="en-US">A Well-Known Text (WKT) representation of the the shape (footprint, geometry) that defines the location of the occurrence. The sampling location may have both a point-radius representation (see DecimalLatitude) and a footprint representation, and they may differ from each other for a given location.</rdfs:comment> <dcterms:description xml:lang="en-US">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))</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#FootprintWKT-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingLocation"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/FootprintWKT-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/FootprintWKT (ABCD v2.06b)</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="FootprintWKT-2007-04-17"> <rdfs:label xml:lang="en-US">FootprintWKT</rdfs:label> <rdfs:comment xml:lang="en-US">A Well-Known Text (WKT; see http://en.wikipedia.org/wiki/Well-known_text) representation of the the shape (footprint, geometry) that defines the location of the occurrence. The same place may have both a point-radius representation (see DecimalLatitude) and a footprint representation, and they may differ from each other for the same occurrence. 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))</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/geospatial/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/geospatial/#FootprintWKT-2007-04-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/FootprintWKT (ABCD v2.06b)</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="FossilSpecimen-2008-11-19"> <rdfs:label xml:lang="en-US">FossilSpecimen</rdfs:label> <rdfs:comment xml:lang="en-US">A resource describing a fossilized specimen.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwctype/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwctype/#FossilSpecimen-2008-11-19"/> <rdfs:subPropertyOf rdf:resource="http://rs.tdwg.org/dwc/dwctype/PreservedSpecimen"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>RecordBasisEnum/FossileSpecimen</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="GenBankNum-2003-06-17"> <rdfs:label xml:lang="en-US">GenBankNum</rdfs:label> <rdfs:comment xml:lang="en-US">GenBank Accession number.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#GenBankNum-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Sequences/Sequence/ID-in-Database + constant</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="GenBankNumber-2007-04-17"> <rdfs:label xml:lang="en-US">GenBankNumber</rdfs:label> <rdfs:comment xml:lang="en-US">GenBank Accession number(s) associated with the biological individual(s) referred to by the cataloged object.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/curatorial/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/curatorial/#GenBankNumber-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/curatorial/GenBankNum-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Sequences/Sequence/ID-in-Database + constant</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Generalizations-2008-11-19"> <rdfs:label xml:lang="en-US">Generalizations</rdfs:label> <rdfs:comment xml:lang="en-US">Actions taken to make the data as shared less specific or complete than in its original form. Suggests that alternative data of highly quality may be available on request.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "Coordinates generalized from original GPS coordinates to the nearest half degree grid cell"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#Generalizations-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Sample"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>not in ABCD</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Genus-2008-11-19"> <rdfs:label xml:lang="en-US">Genus</rdfs:label> <rdfs:comment xml:lang="en-US">The name of the genus in which the ScientificName is classified.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "Quercus"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#Genus-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Taxon"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/Genus-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Viral/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/GenusOrMonomial}</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Genus-2007-04-17"> <rdfs:label xml:lang="en-US">Genus</rdfs:label> <rdfs:comment xml:lang="en-US">The name of the genus in which the organism is classified.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwcore/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwcore/#Genus-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/dwcore/Genus-2003-06-17"/> <rdfs:seeAlso>{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Viral/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/GenusOrMonomial}</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Genus-2003-06-17"> <rdfs:label xml:lang="en-US">Genus</rdfs:label> <rdfs:comment xml:lang="en-US">The phylogenetic genus to which the cataloged item belongs.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#Genus-2003-06-17"/> <rdfs:replaces rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/Genus-2003-06-13"/> <rdfs:seeAlso>{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Viral/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/GenusOrMonomial}</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Genus-2003-06-13"> <rdfs:label xml:lang="en-US">Genus</rdfs:label> <rdfs:comment xml:lang="en-US">The genus name of the organism</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-13</dcterms:issued> <dcterms:modified>2003-06-13</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#Genus-2003-06-13"/> <rdfs:seeAlso>{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Viral/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/GenusOrMonomial}</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="GeodeticDatum-2008-11-19"> <rdfs:label xml:lang="en-US">GeodeticDatum</rdfs:label> <rdfs:comment xml:lang="en-US">The geodetic datum (or ellipsoid) for the geographic coordinates in DecimalLatitude, DecimalLongitude, VerbatimCoordinates, VerbatimLatitude, and VerbatimLongitude. Recommended best practice is to use a controlled vocabulary.</rdfs:comment> <dcterms:description xml:lang="en-US">Examples: "WGS84", "NAD27", "Campo Inchauspe", "European 1950", "Clarke 1866"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#GeodeticDatum-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingLocation"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/GeodeticDatum-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/SpatialDatum</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="GeodeticDatum-2007-04-17"> <rdfs:label xml:lang="en-US">GeodeticDatum</rdfs:label> <rdfs:comment xml:lang="en-US">The geodetic datum to which the latitude and longitude refer. If not known, use "not recorded". This concept should be vocabulary-controlled. Example: "WGS84"</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/geospatial/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/geospatial/#GeodeticDatum-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/geospatial/HorizontalDatum-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/SpatialDatum</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="GeoreferencedBy-2009-01-21"> <rdfs:label xml:lang="en-US">GeoreferencedBy</rdfs:label> <rdfs:comment xml:lang="en-US">The name(s) of the person(s) who applied the Georeference to the SampleLocation.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "Heather Constable, Carol Spencer"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2009-01-21</dcterms:issued> <dcterms:modified>2009-01-21</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#GeoreferencedBy-2009-01-21"/> <rdfs:subPropertyOf rdf:resource="http://rs.tdwg.org/dwc/terms/AccordingTo"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingLocation"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>not in ABCD</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="GeoreferenceProtocol-2008-11-19"> <rdfs:label xml:lang="en-US">GeoreferenceProtocol</rdfs:label> <rdfs:comment xml:lang="en-US">A description or reference to the methods used to determine the spatial footprint, coordinates, and uncertainties.</rdfs:comment> <dcterms:description xml:lang="en-US">Examples: "GBIF Best Practices for Georeferencing", "MaNIS/HerpNet/ORNIS Georeferencing Guidelines", "BioGeomancer"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#GeoreferenceProtocol-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingLocation"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/GeoreferenceProtocol-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinateMethod</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="GeoreferenceProtocol-2007-04-17"> <rdfs:label xml:lang="en-US">GeoreferenceProtocol</rdfs:label> <rdfs:comment xml:lang="en-US">A reference to the methods used for determining the coordinates and uncertainties. Example: "http://manisnet.org/GeorefGuide.html".</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/geospatial/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/geospatial/#GeoreferenceProtocol-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/geospatial/GeorefMethod-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinateMethod</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="GeoreferenceRemarks-2008-11-19"> <rdfs:label xml:lang="en-US">GeoreferenceRemarks</rdfs:label> <rdfs:comment xml:lang="en-US">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.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "assumed distance by road (Hwy. 101)"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#GeoreferenceRemarks-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingLocation"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/GeoreferenceRemarks-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceRemarks</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="GeoreferenceRemarks-2007-04-17"> <rdfs:label xml:lang="en-US">GeoreferenceRemarks</rdfs:label> <rdfs:comment xml:lang="en-US">Comments about the spatial description determination, explaining assumptions made in addition or opposition to the those formalized in the method referred to in GeoreferenceProtocol.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/geospatial/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/geospatial/#GeoreferenceRemarks-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/geospatial/LatLongComments-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceRemarks</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="GeoreferenceSources-2008-11-19"> <rdfs:label xml:lang="en-US">GeoreferenceSources</rdfs:label> <rdfs:comment xml:lang="en-US">A list (concatenated and separated) of maps, gazetteers, or other resources used to georeference the locality, described specifically enough to allow anyone in the future to use the same resource to georeference the same locality.</rdfs:comment> <dcterms:description xml:lang="en-US">Examples: "USGS 1:24000 Florence Montana Quad", "Terrametrics 2008 on Google Earth"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#GeoreferenceSources-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingLocation"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/GeoreferenceSources-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceSources</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="GeoreferenceSources-2007-04-17"> <rdfs:label xml:lang="en-US">GeoreferenceSources</rdfs:label> <rdfs:comment xml:lang="en-US">A list of maps, gazetteers or other resources used to georeference the locality. The content of this concept is meant to be specific enough to allow anyone in the future to use the same resource to georeference the same locality. Examples: "USGS 1:24000 Florence Montana Quad", "Terrametrics 2008 on Google Earth"</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/geospatial/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/geospatial/#GeoreferenceSources-2007-04-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceSources</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="GeoreferenceVerificationStatus-2008-11-19"> <rdfs:label xml:lang="en-US">GeoreferenceVerificationStatus</rdfs:label> <rdfs:comment xml:lang="en-US">A categorical description of the extent to which the georeference has been verified to represent the location where the specimen or observation was collected. Recommended best practice is to use a controlled vocabulary.</rdfs:comment> <dcterms:description xml:lang="en-US">Examples: "requires verification", "verified by collector", "verified by curator".</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#GeoreferenceVerificationStatus-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingLocation"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/GeoreferenceVerificationStatus-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceVerificationStatus</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="GeoreferenceVerificationStatus-2007-04-17"> <rdfs:label xml:lang="en-US">GeoreferenceVerificationStatus</rdfs:label> <rdfs:comment xml:lang="en-US">A categorical description of the extent to which the georeference has been verified to represent the location where the specimen or observation was collected. This element should be vocabulary-controlled. Examples: "requires verification", "verified by collector", "verified by curator".</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/geospatial/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/geospatial/#GeoreferenceVerificationStatus-2007-04-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceVerificationStatus</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="GeorefMethod-2003-06-17"> <rdfs:label xml:lang="en-US">GeorefMethod</rdfs:label> <rdfs:comment xml:lang="en-US">A reference to the methods used for determining the coordinates and uncertainties.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#GeorefMethod-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinateMethod</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="GlobalUniqueIdentifier-2007-04-17"> <rdfs:label xml:lang="en-US">GlobalUniqueIdentifier</rdfs:label> <rdfs:comment xml:lang="en-US">A Uniform Resource Name (URN) as a unique identifier for the specimen or observation record. In the absence of a persistent global unique identifier, construct one in the form: “[InstitutionCode]:[CollectionCode]: [CatalogNumber]” Examples: 1) urn:lsid:nhm.ku.edu:Herps:32 2) “FMNH:Mammal:145732”</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwcore/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwcore/#GlobalUniqueIdentifier-2007-04-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/UnitGUID</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="GMLFeature-2005-07-10"> <rdfs:label xml:lang="en-US">GMLFeature</rdfs:label> <rdfs:comment xml:lang="en-US">Geographic Markup Language(GML) description of the feature for representing complex shapes such as lines and polygons, per Open GIS Consortium (OGC) standards - http://www.opengis.net/gml/01-029/GML2.html.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://www.iobis.org/obis/"/> <dcterms:issued>2005-07-10</dcterms:issued> <dcterms:modified>2005-07-10</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://www.iobis.org/obis/#GMLFeature-2005-07-10"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/GML</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Habitat-2008-11-19"> <rdfs:label xml:lang="en-US">Habitat</rdfs:label> <rdfs:comment xml:lang="en-US">A description of the habitat in which the sampling event occurred.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "oak savanna"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#Habitat-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingEvent"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>not in ABCD</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="HigherGeography-2009-01-21"> <rdfs:label xml:lang="en-US">HigherGeography</rdfs:label> <rdfs:comment xml:lang="en-US">A list (concatenated and separated) of geographic names less specific than the information in the Locality term. "LIKE" or "contains" substring query operations can be used with this element to find matching geographic names. This can be useful if it is unclear in which atomized term a name might be found, and in cases where there is no other appropriate geographic element.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "South America, Argentina, Patagonia, Parque Nacional Nahuel Huapi, Neuquén, Los Lagos" with accompanying values "South America" in Continent, "Argentina" in Country, "Neuquén" in StateProvince, and Los Lagos in County.</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2009-01-21</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#HigherGeography-2009-01-21"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingLocation"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/HigherGeography-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>{DataSets/DataSet/Units/Unit/Gathering/LocalityText or DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName}</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="HigherGeography-2007-04-17"> <rdfs:label xml:lang="en-US">HigherGeography</rdfs:label> <rdfs:comment xml:lang="en-US">The names (concatenated and separated) of geographic elements less specific than the information in the Locality element. "LIKE" or "contains" substring query operations are meant to be used with this element to find matching geographic names. This can be useful if it is unclear in which element a name might be found, and in cases where there is no other appropriate geographic element. Example: "South America, Argentina, Patagonia, Parque Nacional Nahuel Huapi, Neuquén, Los Lagos" with accompanying values "South America" in Continent, "Argentina" in Country, "Neuquén" in StateProvince, and Los Lagos in County.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwcore/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwcore/#HigherGeography-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/dwcore/HigherGeography-2003-06-17"/> <rdfs:seeAlso>{DataSets/DataSet/Units/Unit/Gathering/LocalityText or DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName}</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="HigherGeography-2003-06-17"> <rdfs:label xml:lang="en-US">HigherGeography</rdfs:label> <rdfs:comment xml:lang="en-US">The combination of all geographic elements less specific than locality. "Like" query operations on this element will search for a substring in any of the higher geography attributes.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#HigherGeography-2003-06-17"/> <rdfs:seeAlso>{DataSets/DataSet/Units/Unit/Gathering/LocalityText or DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName}</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="HigherGeographyID-2009-01-21"> <rdfs:label xml:lang="en-US">HigherGeographyID</rdfs:label> <rdfs:comment xml:lang="en-US">A global unique identifier for the parent of the location.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2009-01-21</dcterms:issued> <dcterms:modified>2009-01-21</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#HigherGeographyID-2009-01-21"/> <rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/identifier"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingLocation"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>not in ABCD</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="HigherTaxon-2009-01-21"> <rdfs:label xml:lang="en-US">HigherTaxon</rdfs:label> <rdfs:comment xml:lang="en-US">A list (concatenated and separated) of the names for the taxonomic ranks less specific than the ScientificName.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "Animalia, Chordata, Vertebrata, Mammalia, Theria, Eutheria, Rodentia, Hystricognatha, Hystricognathi, Ctenomyidae, Ctenomyini, Ctenomys"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2009-01-21</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#HigherTaxon-2009-01-21"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Taxon"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/HigherTaxon-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="HigherTaxon-2007-04-17"> <rdfs:label xml:lang="en-US">HigherTaxon</rdfs:label> <rdfs:comment xml:lang="en-US">The names of taxonomic ranks less specific than SpecificEpithet concatenated and separated. "LIKE" or "contains" substring query operations are meant to be used with this element to find matching higher taxon names. This element may contain the list of scientific names of all of the supra-specific taxa in the classification used to identify (determine) the specimen or observation. Example: "Animalia, Chordata, Vertebrata, Mammalia, Theria, Eutheria, Rodentia, Hystricognatha, Hystricognathi, Ctenomyidae, Ctenomyini, Ctenomys".</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwcore/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwcore/#HigherTaxon-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/dwcore/HigherTaxon-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="HigherTaxon-2003-06-17"> <rdfs:label xml:lang="en-US">HigherTaxon</rdfs:label> <rdfs:comment xml:lang="en-US">The combination of names of taxonomic ranks less specific than Genus. "Like" query operations on this element will search for a substring in any of the higher taxon attributes.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#HigherTaxon-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="HigherTaxonID-2009-01-21"> <rdfs:label xml:lang="en-US">HigherTaxonID</rdfs:label> <rdfs:comment xml:lang="en-US">A global unique identifier for the parent to the taxon.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2009-01-21</dcterms:issued> <dcterms:modified>2009-01-21</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#HigherTaxonID-2009-01-21"/> <rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/identifier"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Taxon"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>not in ABCD</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="HorizontalDatum-2003-06-17"> <rdfs:label xml:lang="en-US">HorizontalDatum</rdfs:label> <rdfs:comment xml:lang="en-US">The horizontal geodetic datum to which the DecimalLatitude and DecimalLongitude refer.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#HorizontalDatum-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/SpatialDatum</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="HumanObservation-2008-11-19"> <rdfs:label xml:lang="en-US">HumanObservation</rdfs:label> <rdfs:comment xml:lang="en-US">A resource describing an observation made by one or more people without accompanying physical evidence.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwctype/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwctype/#HumanObservation-2008-11-19"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>RecordBasisEnum/HumanObservation</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Identification-2008-11-19"> <rdfs:label xml:lang="en-US">Identification</rdfs:label> <rdfs:comment xml:lang="en-US">Container class for information about the taxonomic determination of the sample.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#Identification-2008-11-19"/> <rdfs:domain rdf:resource="none"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Identifications/Identification</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="IdentificationID-2008-11-19"> <rdfs:label xml:lang="en-US">IdentificationID</rdfs:label> <rdfs:comment xml:lang="en-US">An identifier for the Identification. May be a global unique identifier or an identifier specific to the data set.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#IdentificationID-2008-11-19"/> <rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/identifier"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Identification"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>not in ABCD</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="IdentificationModifier-2003-06-17"> <rdfs:label xml:lang="en-US">IdentificationModifier</rdfs:label> <rdfs:comment xml:lang="en-US">Additional information documenting the taxonomic determination of the cataloged item (e.g., "cf.", "aff.", "subspecies in question", etc.).</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#IdentificationModifier-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/IdentificationQualifier</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="IdentificationQualifier-2008-11-19"> <rdfs:label xml:lang="en-US">IdentificationQualifier</rdfs:label> <rdfs:comment xml:lang="en-US">A brief phrase or a standard term ("cf.", "aff.") to express the identifier's doubts about the taxonomic identification of the sample.</rdfs:comment> <dcterms:description xml:lang="en-US">Examples: 1) For the determination "Quercus aff. agrifolia var. oxyadenia", IdentificationQualifier would be "aff. agrifolia var. oxyadenia" with accompanying values "Quercus" in Genus, "agrifolia" in SpecificEpithet, "oxyadenia" in InfraspecificEpithet, and "var." in InfraspecificRank. 2) For the determination "Quercus agrifolia cf. var. oxyadenia", IdentificationQualifier would be "cf. var. oxyadenia " with accompanying values "Quercus" in Genus, "agrifolia" in SpecificEpithet, "oxyadenia" in InfraspecificEpithet, and "var." in InfraspecificRank.</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#IdentificationQualifier-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Identification"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/IdentificationQualifier-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/IdentificationQualifier</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="IdentificationQualifier-2007-04-17"> <rdfs:label xml:lang="en-US">IdentificationQualifier</rdfs:label> <rdfs:comment xml:lang="en-US">A brief phrase or a standard term ("cf.", "aff.") to qualify the identification of the organism when doubts have arisen as to its taxonomic identity (determination). Examples: 1) For the determination "Quercus aff. agrifolia var. oxyadenia", IdentificationQualifier would be "aff. agrifolia var. oxyadenia" with accompanying values "Quercus" in Genus, "agrifolia" in SpecificEpithet, "oxyadenia" in InfraspecificEpithet, and "var." in InfraspecificRank. 2) For the determination "Quercus agrifolia cf. var. oxyadenia", IdentificationQualifier would be "cf. var. oxyadenia " with accompanying values "Quercus" in Genus, "agrifolia" in SpecificEpithet, "oxyadenia" in InfraspecificEpithet, and "var." in InfraspecificRank.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwcore/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwcore/#IdentificationQualifier-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/dwcore/IdentificationModifier-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/IdentificationQualifier</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="IdentificationReferences-2008-11-19"> <rdfs:label xml:lang="en-US">IdentificationReferences</rdfs:label> <rdfs:comment xml:lang="en-US">A list (concatenated and separated) of identifiers (publication, global unique identifier, URI) of references used in the identification of the sample.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "Aves del Noroeste Patagonico. Christie et al. 2004."</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#IdentificationReferences-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Identification"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Identifications/Identification/References</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="IdentificationRemarks-2008-11-19"> <rdfs:label xml:lang="en-US">IdentificationRemarks</rdfs:label> <rdfs:comment xml:lang="en-US">Comments or notes about the identification of the sample.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "Distinguished between Anthus correndera and Anthus hellmayri based on the comparative lengths of the uñas."</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#IdentificationRemarks-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Identification"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Identifications/Identification/Notes</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="IdentifiedBy-2009-01-21"> <rdfs:label xml:lang="en-US">IdentifiedBy</rdfs:label> <rdfs:comment xml:lang="en-US">The name(s) of the person(s) who applied the ScientificName to the sample.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "James L. Patton"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2009-01-21</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#IdentifiedBy-2009-01-21"/> <rdfs:subPropertyOf rdf:resource="http://rs.tdwg.org/dwc/terms/AccordingTo"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Identification"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/IdentifiedBy-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Identifications/Identification/Identifiers/IdentifiersText</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="IdentifiedBy-2007-04-17"> <rdfs:label xml:lang="en-US">IdentifiedBy</rdfs:label> <rdfs:comment xml:lang="en-US">The name(s) of the person(s) who applied the ScientificName to the object or observation. Example: James L. Patton.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/curatorial/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/curatorial/#IdentifiedBy-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/curatorial/IdentifiedBy-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Identifications/Identification/Identifiers/IdentifiersText</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="IdentifiedBy-2003-06-17"> <rdfs:label xml:lang="en-US">IdentifiedBy</rdfs:label> <rdfs:comment xml:lang="en-US">The name(s) of the person(s) who applied the currently accepted ScientificName to the cataloged item.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#IdentifiedBy-2003-06-17"/> <rdfs:replaces rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/IdentifiedBy-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Identifications/Identification/Identifiers/IdentifiersText</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="IdentifiedBy-2003-06-13"> <rdfs:label xml:lang="en-US">IdentifiedBy</rdfs:label> <rdfs:comment xml:lang="en-US">The name(s) of the person(s) who applied the currently accepted Scientific Name to the Cataloged Item.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-13</dcterms:issued> <dcterms:modified>2003-06-13</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#IdentifiedBy-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Identifications/Identification/Identifiers/IdentifiersText</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="ImageURL-2007-04-17"> <rdfs:label xml:lang="en-US">ImageURL</rdfs:label> <rdfs:comment xml:lang="en-US">A Universal Resource Locator reference to digital images associated with the specimen or observation.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwcore/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwcore/#ImageURL-2007-04-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/MultimediaObjects</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="IndividualCount-2008-11-19"> <rdfs:label xml:lang="en-US">IndividualCount</rdfs:label> <rdfs:comment xml:lang="en-US">The number of individuals present in the sample or observed in the sampling event.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "1"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#IndividualCount-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Sample"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/IndividualCount-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/LowerValue</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="IndividualCount-2007-04-17"> <rdfs:label xml:lang="en-US">IndividualCount</rdfs:label> <rdfs:comment xml:lang="en-US">The number of individuals present in the lot or container. Not to be used for observations.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/curatorial/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/curatorial/#IndividualCount-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/curatorial/IndividualCount-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/LowerValue</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="IndividualCount-2003-06-17"> <rdfs:label xml:lang="en-US">IndividualCount</rdfs:label> <rdfs:comment xml:lang="en-US">The number of individuals present in the lot or container referred to by the catalog number. Not an estimate of abundance or density at the collecting locality.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#IndividualCount-2003-06-17"/> <rdfs:replaces rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/IndividualCount-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/LowerValue</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="IndividualCount-2003-06-13"> <rdfs:label xml:lang="en-US">IndividualCount</rdfs:label> <rdfs:comment xml:lang="en-US">The number of individuals present in the lot or container. Not an estimate of abundance or density at the collecting locality.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-13</dcterms:issued> <dcterms:modified>2003-06-13</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#IndividualCount-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/LowerValue</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="IndividualID-2008-11-19"> <rdfs:label xml:lang="en-US">IndividualID</rdfs:label> <rdfs:comment xml:lang="en-US">An identifier for an individual or named group of individual organisms represented in the sample. Meant to accommodate resampling of the same individual or group for monitoring purposes. May be a global unique identifier or an identifier specific to a data set.</rdfs:comment> <dcterms:description xml:lang="en-US">Examples: "U.amer. 44", "Smedley", "Orca J 23"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#IndividualID-2008-11-19"/> <rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/identifier"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Sample"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Identifications/Identification/Result/TaxonIdentified/ScientificName/NameAtomised/Zoological/NamedIndividual or DataSets/DataSet/Units/Unit/ObservationUnit/ObservationUnitIdentifiers/ObservationUnitIdentifier or DataSets/DataSet/Units/Unit/SpecimenUnit/Accessions/AccessionNumber</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="InformationWithheld-2008-11-19"> <rdfs:label xml:lang="en-US">InformationWithheld</rdfs:label> <rdfs:comment xml:lang="en-US">Additional information that exists, but that has not been made public in the given record.</rdfs:comment> <dcterms:description xml:lang="en-US">Examples: "specific locality information given only to nearest county", "ask about tissue samples", "georeferences given only to nearest degree".</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#InformationWithheld-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Sample"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/InformationWithheld-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/InformationWithheld</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="InformationWithheld-2007-04-17"> <rdfs:label xml:lang="en-US">InformationWithheld</rdfs:label> <rdfs:comment xml:lang="en-US">Brief descriptions of additional information that may exist, but that has not been made public. Information about obtaining the withheld information should be sought from the administrative contact identified in the provider resource metadata (curator, collection manager). Examples: "specific locality information given only to nearest county", "ask about tissue samples", "georeferences given only to nearest degree".</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwcore/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwcore/#InformationWithheld-2007-04-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/InformationWithheld</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="InfraspecificEpithet-2008-11-19"> <rdfs:label xml:lang="en-US">InfraspecificEpithet</rdfs:label> <rdfs:comment xml:lang="en-US">The name of the second or subspecies epithet of the ScientificName.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "oxyadenia"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#InfraspecificEpithet-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Taxon"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/InfraspecificEpithet-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/SubspeciesEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/SecondEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/SubspeciesEpithet}</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="InfraspecificEpithet-2007-04-17"> <rdfs:label xml:lang="en-US">InfraspecificEpithet</rdfs:label> <rdfs:comment xml:lang="en-US">The infraspecific epithet of the scientific name applied to the organism.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwcore/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwcore/#InfraspecificEpithet-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/dwcore/Subspecies-2003-06-17"/> <rdfs:seeAlso>{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/SubspeciesEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/SecondEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/SubspeciesEpithet}</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="InfraspecificRank-2007-04-17"> <rdfs:label xml:lang="en-US">InfraspecificRank</rdfs:label> <rdfs:comment xml:lang="en-US">The infraspecific rank (subspecies, variety, forma) of the InfraspecificEpithet. Examples: "subsp.", "var.", "forma".</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwcore/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwcore/#InfraspecificRank-2007-04-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/Rank</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="InstitutionCode-2008-11-19"> <rdfs:label xml:lang="en-US">InstitutionCode</rdfs:label> <rdfs:comment xml:lang="en-US">The code (or acronym) in use by the institution administering the collection or data set in which the sample is recorded.</rdfs:comment> <dcterms:description xml:lang="en-US">Examples: "MVZ", "FMNH"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#InstitutionCode-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Sample"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/InstitutionCode-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/SourceInstitutionID</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="InstitutionCode-2007-04-17"> <rdfs:label xml:lang="en-US">InstitutionCode</rdfs:label> <rdfs:comment xml:lang="en-US">The code (or acronym) identifying the institution administering the collection in which the organism record is cataloged. No global registry exists for institutional codes; use the code that is "standard" at your institution or in your discipline.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwcore/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwcore/#InstitutionCode-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/dwcore/InstitutionCode-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/SourceInstitutionID</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="InstitutionCode-2003-06-17"> <rdfs:label xml:lang="en-US">InstitutionCode</rdfs:label> <rdfs:comment xml:lang="en-US">A code that identifies the institution to which the cataloged item belongs. No global registry exists for institutional codes; use the code that is "standard" in your discipline. This attribute must contain no spaces.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#InstitutionCode-2003-06-17"/> <rdfs:replaces rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/InstitutionCode-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/SourceInstitutionID</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="InstitutionCode-2003-06-13"> <rdfs:label xml:lang="en-US">InstitutionCode</rdfs:label> <rdfs:comment xml:lang="en-US">A "standard" code identifier that identifies the institution to which the collection belongs. No global registry exists for assigning institutional codes. Use the code that is "standard" in your discipline.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-13</dcterms:issued> <dcterms:modified>2003-06-13</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#InstitutionCode-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/SourceInstitutionID</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Island-2008-11-19"> <rdfs:label xml:lang="en-US">Island</rdfs:label> <rdfs:comment xml:lang="en-US">The full, unabbreviated name of the island in which the sampling event occurred. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "Isla Victoria"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#Island-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingLocation"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/Island-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Island</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Island-2007-04-17"> <rdfs:label xml:lang="en-US">Island</rdfs:label> <rdfs:comment xml:lang="en-US">The full, unabbreviated name of the island on which the organism was collected or observed.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwcore/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwcore/#Island-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/dwcore/Island-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Island</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Island-2003-06-17"> <rdfs:label xml:lang="en-US">Island</rdfs:label> <rdfs:comment xml:lang="en-US">The full, unabbreviated name of the island from which the cataloged item was collected.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#Island-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Island</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="IslandGroup-2008-11-19"> <rdfs:label xml:lang="en-US">IslandGroup</rdfs:label> <rdfs:comment xml:lang="en-US">The full, unabbreviated name of the island group in which the sampling event occurred. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "Alexander Archipelago"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#IslandGroup-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingLocation"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/IslandGroup-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Island group</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="IslandGroup-2007-04-17"> <rdfs:label xml:lang="en-US">IslandGroup</rdfs:label> <rdfs:comment xml:lang="en-US">The full, unabbreviated name of the island group in which the organism was collected or observed.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwcore/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwcore/#IslandGroup-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/dwcore/IslandGroup-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Island group</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="IslandGroup-2003-06-17"> <rdfs:label xml:lang="en-US">IslandGroup</rdfs:label> <rdfs:comment xml:lang="en-US">The full, unabbreviated name of the island group from which the cataloged item was collected.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#IslandGroup-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Island group</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="JulianDay-2003-06-13"> <rdfs:label xml:lang="en-US">JulianDay</rdfs:label> <rdfs:comment xml:lang="en-US">The ordinal day of the year; i.e., the number of days since January 1 of the same year. (January 1 is Julian Day 1.)</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-13</dcterms:issued> <dcterms:modified>2003-06-13</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#JulianDay-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/DateTime/DayNumberBegin</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Kingdom-2008-11-19"> <rdfs:label xml:lang="en-US">Kingdom</rdfs:label> <rdfs:comment xml:lang="en-US">The name of the kingdom in which the ScientificName is classified.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "Animalia"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#Kingdom-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Taxon"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/Kingdom-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = regnum</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Kingdom-2007-04-17"> <rdfs:label xml:lang="en-US">Kingdom</rdfs:label> <rdfs:comment xml:lang="en-US">The name of the kingdom in which the organism is classified.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwcore/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwcore/#Kingdom-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/dwcore/Kingdom-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = regnum</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="MinimumElevationInMeters-2003-06-17"> <rdfs:label xml:lang="en-US">MinimumElevationInMeters</rdfs:label> <rdfs:comment xml:lang="en-US">The minimum distance in meters above (positive) or below sea level of the collecting locality.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#MinimumElevationInMeters-2003-06-17"/> <rdfs:replaces rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/MinimumElevation-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/LowerValue</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="RelatedCatalogedItems-2003-06-17"> <rdfs:label xml:lang="en-US">RelatedCatalogedItems</rdfs:label> <rdfs:comment xml:lang="en-US">The fully qualified identifier (Institution Code + " " + Collection Code + " " + Catalog Number) of the related Cataloged Item, preceded by the nature of the relationship (e.g., (sibling of) MVZ Mamm 1234).</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#RelatedCatalogedItems-2003-06-17"/> <rdfs:replaces rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/RelatedCatalogItem-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceInstitutionCode + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceName + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitID</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="SampleAttribute-2008-11-19"> <rdfs:label xml:lang="en-US">SampleAttribute</rdfs:label> <rdfs:comment xml:lang="en-US">Container class for information about attributes related to a given sample.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#SampleAttribute-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Sample"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>Datasets/Dataset/Units/Unit/MeasurementsOrFacts</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Subgenus-2005-07-10"> <rdfs:label xml:lang="en-US">Subgenus</rdfs:label> <rdfs:comment xml:lang="en-US">The name of the subgenus in which the identified name is classified.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://www.iobis.org/obis/"/> <dcterms:issued>2005-07-10</dcterms:issued> <dcterms:modified>2005-07-10</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://www.iobis.org/obis/#Subgenus-2005-07-10"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/Subgenus</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Subspecies-2003-06-17"> <rdfs:label xml:lang="en-US">Subspecies</rdfs:label> <rdfs:comment xml:lang="en-US">The phylogenetic subspecific epithet of the cataloged item.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#Subspecies-2003-06-17"/> <rdfs:replaces rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/Subspecies-2003-06-13"/> <rdfs:seeAlso>{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/SubspeciesEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/SecondEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/SubspeciesEpithet}</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Kingdom-2003-06-17"> <rdfs:label xml:lang="en-US">Kingdom</rdfs:label> <rdfs:comment xml:lang="en-US">The phylogenetic kingdom to which the cataloged item belongs.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#Kingdom-2003-06-17"/> <rdfs:replaces rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/Kingdom-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = regnum</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Kingdom-2003-06-13"> <rdfs:label xml:lang="en-US">Kingdom</rdfs:label> <rdfs:comment xml:lang="en-US">The kingdom to which the organism belongs</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-13</dcterms:issued> <dcterms:modified>2003-06-13</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#Kingdom-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = regnum</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="LatestDateCollected-2008-11-19"> <rdfs:label xml:lang="en-US">LatestDateCollected</rdfs:label> <rdfs:comment xml:lang="en-US">The latest date-time in a period during which a sampling event occurred. If the event is recorded as occurring at a single date-time, populate both EarliestDateCollected and LatestDateCollected with the same value.</rdfs:comment> <dcterms:description xml:lang="en-US">Date may be used to express temporal information at any level of granularity. Recommended best practice is to use an encoding scheme, such as the W3CDTF profile of ISO 8601 [W3CDTF].</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#LatestDateCollected-2008-11-19"/> <rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/date"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingEvent"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/LatestDateCollected-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/ISODateTimeEnd</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="LatestDateCollected-2007-04-17"> <rdfs:label xml:lang="en-US">LatestDateCollected</rdfs:label> <rdfs:comment xml:lang="en-US">The latest date-time (Common Era calendar) in a date-time period during which an organism or group of organisms was collected or observed. If the event is recorded as occurring at a single date-time, populate both EarliestDateCollected and LatestDateCollected with the same value.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwcore/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwcore/#LatestDateCollected-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/dwcore/YearCollected-2003-06-17, MonthCollected-2003-06-17, DayCollected-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/ISODateTimeEnd</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Latitude-2003-06-13"> <rdfs:label xml:lang="en-US">Latitude</rdfs:label> <rdfs:comment xml:lang="en-US">The latitude of the location from which the specimen was collected. This value should be expressed in decimal degrees with a datum such as WGS-84</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-13</dcterms:issued> <dcterms:modified>2003-06-13</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#Latitude-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/LatitudeDecimal</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="LatLongComments-2003-06-17"> <rdfs:label xml:lang="en-US">LatLongComments</rdfs:label> <rdfs:comment xml:lang="en-US">Comments about the LatLong determination.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#LatLongComments-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceRemarks</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="LifeStage-2008-11-19"> <rdfs:label xml:lang="en-US">LifeStage</rdfs:label> <rdfs:comment xml:lang="en-US">The age class or life stage of the biological individual represented by the sample. Recommended best practice is to use a controlled vocabulary.</rdfs:comment> <dcterms:description xml:lang="en-US">Examples: "egg", "eft", "juvenile", "adult"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#LifeStage-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Sample"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/LifeStage-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/MycologicalUnit/MycologicalSexualStage or DataSets/DataSet/Units/Unit/MycologicalUnit/MycologicalLiveStages/MycologicalLiveStage (Note DwC spec uses ”MycologicalLifeStage” or DataSets/DataSet/Units/Unit/ZoologicalUnit/PhasesOrStages/PhaseOrStage</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="LifeStage-2007-04-17"> <rdfs:label xml:lang="en-US">LifeStage</rdfs:label> <rdfs:comment xml:lang="en-US">The age class or life stage of the biological individual represented by the catalogued object or observation. Examples: "adult", "mature", "juvenile", "eft", "nymph", "seedling", "seed", "egg"</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwcore/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwcore/#LifeStage-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/dwcore/AgeClass-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/MycologicalUnit/MycologicalSexualStage or DataSets/DataSet/Units/Unit/MycologicalUnit/MycologicalLiveStages/MycologicalLiveStage (Note DwC spec uses ”MycologicalLifeStage” or DataSets/DataSet/Units/Unit/ZoologicalUnit/PhasesOrStages/PhaseOrStage</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Lifestage-2005-07-10"> <rdfs:label xml:lang="en-US">Lifestage</rdfs:label> <rdfs:comment xml:lang="en-US">Indicates the life stage present. Will require developing a controlled vocabulary. Can include multiple stages for a lot with multiple individuals.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://www.iobis.org/obis/"/> <dcterms:issued>2005-07-10</dcterms:issued> <dcterms:modified>2005-07-10</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://www.iobis.org/obis/#Lifestage-2005-07-10"/> <rdfs:replaces rdf:resource="http://www.iobis.org/obis/AgeClass-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/MycologicalUnit/MycologicalSexualStage or DataSets/DataSet/Units/Unit/MycologicalUnit/MycologicalLiveStages/MycologicalLiveStage (Note DwC spec uses ”MycologicalLifeStage” or DataSets/DataSet/Units/Unit/ZoologicalUnit/PhasesOrStages/PhaseOrStage</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="LivingSpecimen-2008-11-19"> <rdfs:label xml:lang="en-US">LivingSpecimen</rdfs:label> <rdfs:comment xml:lang="en-US">A resource describing a living specimen.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwctype/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwctype/#LivingSpecimen-2008-11-19"/> <rdfs:subPropertyOf rdf:resource="http://purl.org/dc/dcmitype/PhysicalObject"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>RecordBasisEnum/LivingSpecimen</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Locality-2008-11-19"> <rdfs:label xml:lang="en-US">Locality</rdfs:label> <rdfs:comment xml:lang="en-US">The specific place where the sampling event occurred. More general geographic information can be provided in other geographic terms (HigherGeography, Continent, Country, StateProvince, County, WaterBody, Island, IslandGroup). This term may contain a description modified from the the original to correct perceived errors or standardize the description.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "Bariloche, 25 km NNE via Ruta Nacional 40 (=Ruta 237)"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#Locality-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingLocation"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/Locality-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Locality-2007-04-17"> <rdfs:label xml:lang="en-US">Locality</rdfs:label> <rdfs:comment xml:lang="en-US">The specific natural language description of the place where the organism was collected or observed. This element need not contain less specific geographic information provided in other geographic elements (HigherGeography, Continent, Country, StateProvince, County, WaterBody, Island, IslandGroup). Though coordinate information can be contained in this concept, these data will be usable analytically only when shared through the concepts of the Geospatial Extension.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwcore/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwcore/#Locality-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/dwcore/Locality-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/AreaDetail</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Locality-2003-06-17"> <rdfs:label xml:lang="en-US">Locality</rdfs:label> <rdfs:comment xml:lang="en-US">The description of the locality from which the cataloged item was collected, sans geographic information provided in other geographic fields.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#Locality-2003-06-17"/> <rdfs:replaces rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/Locality-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/AreaDetail</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Locality-2003-06-13"> <rdfs:label xml:lang="en-US">Locality</rdfs:label> <rdfs:comment xml:lang="en-US">The locality description (place name plus optionally a displacement from the place name) from which the specimen was collected. Where a displacement from a location is provided, it should be in un-projected units of measurement</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-13</dcterms:issued> <dcterms:modified>2003-06-13</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#Locality-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/AreaDetail</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Location-2009-01-23"> <rdfs:label xml:lang="en-US">Location</rdfs:label> <rdfs:comment xml:lang="en-US">A resource describing a location.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwctype/"/> <dcterms:issued>2009-01-23</dcterms:issued> <dcterms:modified>2009-01-23</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwctype/#Location-2009-01-23"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>not in ABCD</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Longitude-2003-06-13"> <rdfs:label xml:lang="en-US">Longitude</rdfs:label> <rdfs:comment xml:lang="en-US">The longitude of the location from which the specimen was collected. This value should be expressed in decimal degrees with a datum such as WGS-84</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-13</dcterms:issued> <dcterms:modified>2003-06-13</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#Longitude-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/LongitudeDecimal</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="MachineObservation-2008-11-19"> <rdfs:label xml:lang="en-US">MachineObservation</rdfs:label> <rdfs:comment xml:lang="en-US">A resource describing an observation made by a machine without accompanying physical evidence.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwctype/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwctype/#MachineObservation-2008-11-19"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>RecordBasisEnum/MachineObservation</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="MaximumDepth-2003-06-13"> <rdfs:label xml:lang="en-US">MaximumDepth</rdfs:label> <rdfs:comment xml:lang="en-US">The maximum distance in meters below the surface of the water at which the collection was made; all material collected was at most this deep. Positive below the surface, negative above (e.g. collecting above sea level in tidal areas).</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-13</dcterms:issued> <dcterms:modified>2003-06-13</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#MaximumDepth-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/UpperValue</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="MaximumDepthInMeters-2008-11-19"> <rdfs:label xml:lang="en-US">MaximumDepthInMeters</rdfs:label> <rdfs:comment xml:lang="en-US">The greater depth in meters of a range of depth (below the local surface) at with the sampling event occurred.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "200"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#MaximumDepthInMeters-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingLocation"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/MaximumDepthInMeters-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/UpperValue</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="MaximumDepthInMeters-2007-04-17"> <rdfs:label xml:lang="en-US">MaximumDepthInMeters</rdfs:label> <rdfs:comment xml:lang="en-US">The maximum or actual depth at which the collection or observation was made. Use positive values for locations below the surface. Examples: 10 (for a depth of up to 10m). 100 (for a depth between 50m and 100m).</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwcore/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwcore/#MaximumDepthInMeters-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/dwcore/MaximumDepthInMeters-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/UpperValue</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="MaximumDepthInMeters-2003-06-17"> <rdfs:label xml:lang="en-US">MaximumDepthInMeters</rdfs:label> <rdfs:comment xml:lang="en-US">The maximum distance in meters below the surface of the water at which the collection was made; all material collected was at most this deep. Positive below the surface, negative above (e.g., collecting above sea level in tidal areas).</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#MaximumDepthInMeters-2003-06-17"/> <rdfs:replaces rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/MaximumDepth-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/UpperValue</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="MaximumElevation-2003-06-13"> <rdfs:label xml:lang="en-US">MaximumElevation</rdfs:label> <rdfs:comment xml:lang="en-US">The maximum distance in meters above (positive) or below sea level of the collecting locality.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-13</dcterms:issued> <dcterms:modified>2003-06-13</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#MaximumElevation-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/UpperValue</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="MaximumElevationInMeters-2008-11-19"> <rdfs:label xml:lang="en-US">MaximumElevationInMeters</rdfs:label> <rdfs:comment xml:lang="en-US">The upper limit of the range of elevation (altitude, usually above sea level), in meters, at which the sampling event occurred.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "200"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#MaximumElevationInMeters-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingLocation"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/MaximumElevationInMeters-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/UpperValue</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="MaximumElevationInMeters-2007-04-17"> <rdfs:label xml:lang="en-US">MaximumElevationInMeters</rdfs:label> <rdfs:comment xml:lang="en-US">The maximum or actual elevation at which the collection or observation was made. Use negative values for locations below sea level. Examples: Examples: 125 (for an elevation of 100 +- 25 meters). 200 (for an elevation between 100m and 200m).</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwcore/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwcore/#MaximumElevationInMeters-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/dwcore/MaximumElevationInMeters-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/UpperValue</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="MaximumElevationInMeters-2003-06-17"> <rdfs:label xml:lang="en-US">MaximumElevationInMeters</rdfs:label> <rdfs:comment xml:lang="en-US">The maximum distance in meters above (positive) or below sea level of the collecting locality.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#MaximumElevationInMeters-2003-06-17"/> <rdfs:replaces rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/MaximumElevation-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/UpperValue</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="MinimumDepth-2003-06-13"> <rdfs:label xml:lang="en-US">MinimumDepth</rdfs:label> <rdfs:comment xml:lang="en-US">The minimum distance in meters below the surface of the water at which the collection was made; all material collected was at least this deep. Positive below the surface, negative above (e.g. collecting above sea level in tidal areas).</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-13</dcterms:issued> <dcterms:modified>2003-06-13</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#MinimumDepth-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/LowerValue</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="MinimumDepthInMeters-2008-11-19"> <rdfs:label xml:lang="en-US">MinimumDepthInMeters</rdfs:label> <rdfs:comment xml:lang="en-US">The lesser depth in meters of a range of depth (below the local surface) at with the sampling event occurred.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "100"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#MinimumDepthInMeters-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingLocation"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/MinimumDepthInMeters-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/LowerValue</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="MinimumDepthInMeters-2007-04-17"> <rdfs:label xml:lang="en-US">MinimumDepthInMeters</rdfs:label> <rdfs:comment xml:lang="en-US">The minimum or actual depth at which the collection or observation was made. Use positive values for locations below the surface. Examples: 0 (for a depth of up to 10m). 50 (for a depth between 50m and 100m).</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwcore/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwcore/#MinimumDepthInMeters-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/dwcore/MinimumDepthInMeters-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/LowerValue</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="MinimumDepthInMeters-2003-06-17"> <rdfs:label xml:lang="en-US">MinimumDepthInMeters</rdfs:label> <rdfs:comment xml:lang="en-US">The minimum distance in meters below the surface of the water at which the collection was made; all material collected was at least this deep. Positive below the surface, negative above (e.g., collecting above sea level in tidal areas).</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#MinimumDepthInMeters-2003-06-17"/> <rdfs:replaces rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/MinimumDepth-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/LowerValue</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="MinimumElevation-2003-06-13"> <rdfs:label xml:lang="en-US">MinimumElevation</rdfs:label> <rdfs:comment xml:lang="en-US">The minimum distance in meters above (positive) or below sea level of the collecting locality.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-13</dcterms:issued> <dcterms:modified>2003-06-13</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#MinimumElevation-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/LowerValue</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="MinimumElevationInMeters-2008-11-19"> <rdfs:label xml:lang="en-US">MinimumElevationInMeters</rdfs:label> <rdfs:comment xml:lang="en-US">The lower limit of the range of elevation (altitude, usually above sea level), in meters, at which the sampling event occurred.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "100"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#MinimumElevationInMeters-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingLocation"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/MinimumElevationInMeters-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/LowerValue</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="MinimumElevationInMeters-2007-04-17"> <rdfs:label xml:lang="en-US">MinimumElevationInMeters</rdfs:label> <rdfs:comment xml:lang="en-US">The minimum or actual elevation at which the collection or observation was made. Use negative values for locations below sea level. Examples: 75 (for an elevation of 100 +- 25 meters). 100 (for an elevation between 100m and 200m).</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwcore/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwcore/#MinimumElevationInMeters-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/dwcore/MinimumElevationInMeters-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/LowerValue</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="MonthCollected-2003-06-17"> <rdfs:label xml:lang="en-US">MonthCollected</rdfs:label> <rdfs:comment xml:lang="en-US">The two digit month of year in the Common Era calendar during which the cataloged item was collected from the field.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#MonthCollected-2003-06-17"/> <rdfs:replaces rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/MonthCollected-2003-06-13"/> <rdfs:seeAlso>accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="MonthCollected-2003-06-13"> <rdfs:label xml:lang="en-US">MonthCollected</rdfs:label> <rdfs:comment xml:lang="en-US">The month of year the specimen was collected from the field. Possible values range from 01...12 inclusive</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-13</dcterms:issued> <dcterms:modified>2003-06-13</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#MonthCollected-2003-06-13"/> <rdfs:seeAlso>accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="MonthIdentified-2003-06-17"> <rdfs:label xml:lang="en-US">MonthIdentified</rdfs:label> <rdfs:comment xml:lang="en-US">The two digit month in the Common Era calendar during which the cataloged item was identified.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#MonthIdentified-2003-06-17"/> <rdfs:replaces rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/MonthIdentified-2003-06-13"/> <rdfs:seeAlso>accessible from DataSets/DataSet/Units/Unit/Identifications/Identification/Date/DateText</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="MonthIdentified-2003-06-13"> <rdfs:label xml:lang="en-US">MonthIdentified</rdfs:label> <rdfs:comment xml:lang="en-US">The month portion of the date when the Collection Item was identified; as two digits [01..12].</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-13</dcterms:issued> <dcterms:modified>2003-06-13</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#MonthIdentified-2003-06-13"/> <rdfs:seeAlso>accessible from DataSets/DataSet/Units/Unit/Identifications/Identification/Date/DateText</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="MonthOfYear-2008-11-19"> <rdfs:label xml:lang="en-US">MonthOfYear</rdfs:label> <rdfs:comment xml:lang="en-US">The ordinal month in which the sampling event occurred.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "10" (=October)</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#MonthOfYear-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingEvent"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/MonthCollected-2003-06-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="NamePublishedIn-2008-11-19"> <rdfs:label xml:lang="en-US">NamePublishedIn</rdfs:label> <rdfs:comment xml:lang="en-US">A full literature reference to the first (original) valid publication of the ScientificName.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#NamePublishedIn-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Taxon"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeDesignation/NomenclaturalReference/TitleCitation</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="NomenclaturalChecklist-2009-01-23"> <rdfs:label xml:lang="en-US">NomenclaturalChecklist</rdfs:label> <rdfs:comment xml:lang="en-US">A resource describing a nomenclatural checklist.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwctype/"/> <dcterms:issued>2009-01-23</dcterms:issued> <dcterms:modified>2009-01-23</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwctype/#NomenclaturalChecklist-2009-01-23"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>not in ABCD</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="NomenclaturalCode-2008-11-19"> <rdfs:label xml:lang="en-US">NomenclaturalCode</rdfs:label> <rdfs:comment xml:lang="en-US">The nomenclatural code under which the ScientificName is constructed. Recommended best practice is to use a controlled vocabulary.</rdfs:comment> <dcterms:description xml:lang="en-US">Examples: "ICBN", "ICZN", "BC", "ICNCP", "BioCode"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#NomenclaturalCode-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Taxon"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/NomenclaturalCode-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/Code</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="NomenclaturalCode-2007-04-17"> <rdfs:label xml:lang="en-US">NomenclaturalCode</rdfs:label> <rdfs:comment xml:lang="en-US">The nomenclatural code under which the ScientificName is constructed. Examples: "ICBN", "ICZN", "BC", "ICNCP", "BioCode"</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwcore/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwcore/#NomenclaturalCode-2007-04-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/Code</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="NomenclaturalStatus-2009-01-18"> <rdfs:label xml:lang="en-US">NomenclaturalStatus</rdfs:label> <rdfs:comment xml:lang="en-US">The status related to the original publication of the name and it's 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.</rdfs:comment> <dcterms:description xml:lang="en-US">Examples: "nom. ambig.", "nom. illeg.", "nom. subnud."</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2009-01-18</dcterms:issued> <dcterms:modified>2009-01-18</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#NomenclaturalStatus-2009-01-18"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Taxon"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>(DataSets/DataSet/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeDesignation/NomenclaturalReference/TitleCitation)
|
||||
pro parte</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Notes-2003-06-13"> <rdfs:label xml:lang="en-US">Notes</rdfs:label> <rdfs:comment xml:lang="en-US">Free text notes attached to the specimen record</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-13</dcterms:issued> <dcterms:modified>2003-06-13</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#Notes-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Notes</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="ObservedIndividualCount-2005-07-10"> <rdfs:label xml:lang="en-US">ObservedIndividualCount</rdfs:label> <rdfs:comment xml:lang="en-US">The number of individuals (abundance) found in a collection/record event.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://www.iobis.org/obis/"/> <dcterms:issued>2005-07-10</dcterms:issued> <dcterms:modified>2005-07-10</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://www.iobis.org/obis/#ObservedIndividualCount-2005-07-10"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/LowerValue + constant</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="ObservedWeight-2005-07-10"> <rdfs:label xml:lang="en-US">ObservedWeight</rdfs:label> <rdfs:comment xml:lang="en-US">The total biomass found in a collection/record event. Expressed as kg.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://www.iobis.org/obis/"/> <dcterms:issued>2005-07-10</dcterms:issued> <dcterms:modified>2005-07-10</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://www.iobis.org/obis/#ObservedWeight-2005-07-10"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/LowerValue + constant</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Order-2008-11-19"> <rdfs:label xml:lang="en-US">Order</rdfs:label> <rdfs:comment xml:lang="en-US">The name of the order in which the ScientificName is classified.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "Rodentia"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#Order-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Taxon"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/Order-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = ordo</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Order-2007-04-17"> <rdfs:label xml:lang="en-US">Order</rdfs:label> <rdfs:comment xml:lang="en-US">The name of the order in which the organism is classified.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwcore/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwcore/#Order-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/dwcore/Order-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = ordo</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Order-2003-06-17"> <rdfs:label xml:lang="en-US">Order</rdfs:label> <rdfs:comment xml:lang="en-US">The phylogenetic order to which the cataloged item belongs.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#Order-2003-06-17"/> <rdfs:replaces rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/Order-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = ordo</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Order-2003-06-13"> <rdfs:label xml:lang="en-US">Order</rdfs:label> <rdfs:comment xml:lang="en-US">The order name of the organism</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-13</dcterms:issued> <dcterms:modified>2003-06-13</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#Order-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = ordo</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="OriginalCoordinateSystem-2003-06-17"> <rdfs:label xml:lang="en-US">OriginalCoordinateSystem</rdfs:label> <rdfs:comment xml:lang="en-US">The name of the system in which the original geographic coordinates were recorded (e.g., "decimal degrees", "degrees minutes seconds", "UTM", etc.).</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#OriginalCoordinateSystem-2003-06-17"/> <rdfs:seeAlso>(partly) DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesGrid/GridCellSystem</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="OtherCatalogNumbers-2008-11-19"> <rdfs:label xml:lang="en-US">OtherCatalogNumbers</rdfs:label> <rdfs:comment xml:lang="en-US">A list (concatenated and separated) of previous or alternate fully qualified catalog numbers for the same sample, whether in the current or any other data set or collection.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "FMNH:Mammal:1234"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#OtherCatalogNumbers-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Sample"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/OtherCatalogNumbers-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/SpecimenUnit/History/PreviousUnitsText</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="OtherCatalogNumbers-2007-04-17"> <rdfs:label xml:lang="en-US">OtherCatalogNumbers</rdfs:label> <rdfs:comment xml:lang="en-US">A list of previous or alternative fully qualified catalog numbers for the same object or observation, whether in the current collection or in any other.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/curatorial/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/curatorial/#OtherCatalogNumbers-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/curatorial/OtherCatalogNumbers-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/SpecimenUnit/History/PreviousUnitsText</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="OtherCatalogNumbers-2003-06-17"> <rdfs:label xml:lang="en-US">OtherCatalogNumbers</rdfs:label> <rdfs:comment xml:lang="en-US">A list of previous or alternative fully qualified catalog numbers of the cataloged item whether in the current collection or in any other.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#OtherCatalogNumbers-2003-06-17"/> <rdfs:replaces rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/PreviousCatalogNumber-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/SpecimenUnit/History/PreviousUnitsText</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Phylum-2008-11-19"> <rdfs:label xml:lang="en-US">Phylum</rdfs:label> <rdfs:comment xml:lang="en-US">The name of the phlyum (or division) in which the ScientificName is classified.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "Chordata"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#Phylum-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Taxon"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/Phylum-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = phylum</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Phylum-2007-04-17"> <rdfs:label xml:lang="en-US">Phylum</rdfs:label> <rdfs:comment xml:lang="en-US">The name of the phylum (or division) in which the organism is classified.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwcore/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwcore/#Phylum-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/dwcore/Phylum-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = phylum</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Phylum-2003-06-17"> <rdfs:label xml:lang="en-US">Phylum</rdfs:label> <rdfs:comment xml:lang="en-US">The phylogenetic phylum (or division) to which the cataloged item belongs.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#Phylum-2003-06-17"/> <rdfs:replaces rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/Phylum-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = phylum</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Phylum-2003-06-13"> <rdfs:label xml:lang="en-US">Phylum</rdfs:label> <rdfs:comment xml:lang="en-US">The phylum (or division) to which the organism belongs</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-13</dcterms:issued> <dcterms:modified>2003-06-13</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#Phylum-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = phylum</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="PointRadiusSpatialFit-2008-11-19"> <rdfs:label xml:lang="en-US">PointRadiusSpatialFit</rdfs:label> <rdfs:comment xml:lang="en-US">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 sampling 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.</rdfs:comment> <dcterms:description xml:lang="en-US">Detailed explanations with graphical examples can be found in the "Guide to Best Practices for Georeferencing" (Chapman and Wieczorek, eds. 2006).</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#PointRadiusSpatialFit-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingLocation"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/PointRadiusSpatialFit-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/PointRadiusSpatialFit</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="PointRadiusSpatialFit-2007-04-17"> <rdfs:label xml:lang="en-US">PointRadiusSpatialFit</rdfs:label> <rdfs:comment xml:lang="en-US">A measure of how well the circle defined by the coordinates and uncertainty match the original spatial representation, as a ratio of the area of the circle to the area of the original spatial representation. 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 georeference does not completely contain the original representation. The PointRadiusSpatialFit is undefined 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).</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/geospatial/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/geospatial/#PointRadiusSpatialFit-2007-04-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/PointRadiusSpatialFit</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Preparations-2008-11-19"> <rdfs:label xml:lang="en-US">Preparations</rdfs:label> <rdfs:comment xml:lang="en-US">A list (concatenated and separated) of preparations and preservation methods for a sample.</rdfs:comment> <dcterms:description xml:lang="en-US">Examples: "skin", "skull", "skeleton", "whole animal (ETOH)", "tissue (EDTA)"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#Preparations-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Sample"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/Preparations-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/SpecimenUnit/Preparations/PreparationsText</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Preparations-2007-04-17"> <rdfs:label xml:lang="en-US">Preparations</rdfs:label> <rdfs:comment xml:lang="en-US">A concatenated list of preparations and preservation methods for the object. Examples: "skin", "skull", "skeleton", "whole animal (ETOH)", "tissue (EDTA)".</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/curatorial/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/curatorial/#Preparations-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/curatorial/Preparations-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/SpecimenUnit/Preparations/PreparationsText</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Preparations-2003-06-17"> <rdfs:label xml:lang="en-US">Preparations</rdfs:label> <rdfs:comment xml:lang="en-US">A concatenated list of preparations and preservation methods (skin, skull, skeleton, whole animal (ETOH), slide, etc.) for the cataloged item.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#Preparations-2003-06-17"/> <rdfs:replaces rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/PreparationType-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/SpecimenUnit/Preparations/PreparationsText</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="PreparationType-2003-06-13"> <rdfs:label xml:lang="en-US">PreparationType</rdfs:label> <rdfs:comment xml:lang="en-US">The type of preparation (skin. slide, etc). Probably best to add this as a record element rather than access point. Should be a list of preparations for a single collection record.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-13</dcterms:issued> <dcterms:modified>2003-06-13</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#PreparationType-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/SpecimenUnit/Preparations/PreparationsText</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="PreservedSpecimen-2008-11-19"> <rdfs:label xml:lang="en-US">PreservedSpecimen</rdfs:label> <rdfs:comment xml:lang="en-US">A resource describing a preserved specimen.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwctype/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwctype/#PreservedSpecimen-2008-11-19"/> <rdfs:subPropertyOf rdf:resource="http://purl.org/dc/dcmitype/PhysicalObject"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>RecordBasisEnum/PreservedSpecimen</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="PreviousCatalogNumber-2003-06-13"> <rdfs:label xml:lang="en-US">PreviousCatalogNumber</rdfs:label> <rdfs:comment xml:lang="en-US">The previous (fully qualified) catalog number of the Cataloged Item if the item earlier identified by another Catalog Number, either in the current catalog or another Institution / catalog. A fully qualified Catalog Number is preceded by Institution Code and Collection Code, with a space separating the each subelement. Referencing a previous Catalog Number does not imply that a record for the referenced item is or is not present in the corresponding catalog, or even that the referenced catalog still exists. This access point is intended to provide a way to retrieve this record by previously used identifier, which may used in the literature. In future versions of this schema this attribute should be set-valued.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-13</dcterms:issued> <dcterms:modified>2003-06-13</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#PreviousCatalogNumber-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/SpecimenUnit/History/PreviousUnitsText</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="PreviousIdentifications-2008-11-19"> <rdfs:label xml:lang="en-US">PreviousIdentifications</rdfs:label> <rdfs:comment xml:lang="en-US">A list (concatenated and separated) of previous ScientificNames to which the sample was identified.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "Anthus correndera"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#PreviousIdentifications-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Identification"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Identifications/Identification with PreferredFlag = false</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="RecordURL-2005-07-10"> <rdfs:label xml:lang="en-US">RecordURL</rdfs:label> <rdfs:comment xml:lang="en-US">Gives the web address of the page where more information on this particular record (not on the whole dataset) can be found.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://www.iobis.org/obis/"/> <dcterms:issued>2005-07-10</dcterms:issued> <dcterms:modified>2005-07-10</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://www.iobis.org/obis/#RecordURL-2005-07-10"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/RecordURI</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="RelatedBasisOfRecord-2008-11-19"> <rdfs:label xml:lang="en-US">RelatedBasisOfRecord</rdfs:label> <rdfs:comment xml:lang="en-US">The nature of the related resource. Recommended best practice is to use the same controlled vocabulary as for BasisOfRecord.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "PreservedSpecimen"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2009-01-26</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#RelatedBasisOfRecord-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/ResourceRelationship"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>not in ABCD</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="RelatedCatalogedItems-2007-04-17"> <rdfs:label xml:lang="en-US">RelatedCatalogedItems</rdfs:label> <rdfs:comment xml:lang="en-US">One or more GlobalUniqueIdentifiers (cf. http://wiki.tdwg.org/twiki/bin/view/DarwinCore/GlobalUniqueIdentifier ) of related objects or observations, optionally preceded by the nature of the relationship. Examples: "(sibling of) URN:catalog:MVZ:Mammal:1234", "(endoparasite of) URN:catalog:FMNH:Bird:41321", "(sheet 2 of 2) URN:WTU:VascularPlants:353087".</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/curatorial/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/curatorial/#RelatedCatalogedItems-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/curatorial/RelatedCatalogedItems-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceInstitutionCode + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceName + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitID</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="RelatedCatalogItem-2003-06-13"> <rdfs:label xml:lang="en-US">RelatedCatalogItem</rdfs:label> <rdfs:comment xml:lang="en-US">The fully qualified identifier of a related Catalog Item (a reference to another specimen); Institution Code, Collection Code, and Catalog Number of the related Cataloged Item, where a space separates the three subelements.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-13</dcterms:issued> <dcterms:modified>2003-06-13</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#RelatedCatalogItem-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceInstitutionCode + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceName + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitID</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="RelatedInformation-2007-04-17"> <rdfs:label xml:lang="en-US">RelatedInformation</rdfs:label> <rdfs:comment xml:lang="en-US">Free text references to information not delivered via the conceptual schema, including URLs to specimen details, publications, bibliographic references, etc.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwcore/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwcore/#RelatedInformation-2007-04-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/RecordURI</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="RelatedResourceID-2008-11-19"> <rdfs:label xml:lang="en-US">RelatedResourceID</rdfs:label> <rdfs:comment xml:lang="en-US">A global unique identifier to a related resource.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2009-01-26</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#RelatedResourceID-2008-11-19"/> <rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/references"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/ResourceRelationship"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceInstitutionCode + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceName + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitID</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="RelatedResourceType-2009-01-23"> <rdfs:label xml:lang="en-US">RelatedResourceType</rdfs:label> <rdfs:comment xml:lang="en-US">The type of related resource. Recommended best practice is to use a controlled vocabulary.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "Sample", "Taxon", "Publication"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2009-01-26</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#RelatedResourceType-2009-01-23"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/ResourceRelationship"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>not in ABCD</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="RelationshipOfResource-2008-11-19"> <rdfs:label xml:lang="en-US">RelationshipOfResource</rdfs:label> <rdfs:comment xml:lang="en-US">The relationship of the related resource to this resource. Recommended best practice is to use a controlled vocabulary.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "mother"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2009-01-26</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#RelationshipOfResource-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/ResourceRelationship"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociationType</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="RelationshipRemarks-2008-11-19"> <rdfs:label xml:lang="en-US">RelationshipRemarks</rdfs:label> <rdfs:comment xml:lang="en-US">Comments or notes about the relationship of the related resource to this resource.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "mother and offspring collected from the same nest"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2009-01-26</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#RelationshipRemarks-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/ResourceRelationship"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Associations/UnitAssociation/Comments</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="RelationshipType-2003-06-13"> <rdfs:label xml:lang="en-US">RelationshipType</rdfs:label> <rdfs:comment xml:lang="en-US">A named or coded valued that identifies the kind relationship between this Collection Item and the referenced Collection Item. Named values include: "parasite of", "epiphyte on", "progeny of", etc. In future versions of this schema this attribute should be set-valued.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-13</dcterms:issued> <dcterms:modified>2003-06-13</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#RelationshipType-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociationType</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Remarks-2007-04-17"> <rdfs:label xml:lang="en-US">Remarks</rdfs:label> <rdfs:comment xml:lang="en-US">Free text comments accompanying the object or observation record.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwcore/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwcore/#Remarks-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/dwcore/Remarks-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Notes</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Remarks-2003-06-17"> <rdfs:label xml:lang="en-US">Remarks</rdfs:label> <rdfs:comment xml:lang="en-US">Free text comments accompanying the cataloged item record.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#Remarks-2003-06-17"/> <rdfs:replaces rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/Notes-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Notes</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="ReproductiveCondition-2008-11-19"> <rdfs:label xml:lang="en-US">ReproductiveCondition</rdfs:label> <rdfs:comment xml:lang="en-US">The reproductive condition of the biological individual represented by the sample. Recommended best practice is to use a controlled vocabulary.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#ReproductiveCondition-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Sample"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>not in ABCD</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="ResourceRelationship-2009-01-21"> <rdfs:label xml:lang="en-US">ResourceRelationship</rdfs:label> <rdfs:comment xml:lang="en-US">Container class for information about a relationship between resources. May be any type of resource - Sample, SamplingEvent, Taxon, and other resources that are not Darwin Core classes.</rdfs:comment> <dcterms:description xml:lang="en-US">To use ResourceRelationship properly in an application schema you must provide a container to avoid ambiguity about the resource being related, especially if you intend to allow ResourceRelationship to refer to more than one class.</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2009-01-26</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#ResourceRelationship-2009-01-21"/> <rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/relation"/> <rdfs:domain rdf:resource="none"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Associations</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="ResourceRelationshipID-2008-11-19"> <rdfs:label xml:lang="en-US">ResourceRelationshipID</rdfs:label> <rdfs:comment xml:lang="en-US">A global unique identifier for an instance of relationship (not of a relationship type) between one resource and another.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2009-01-26</dcterms:issued> <dcterms:modified>2009-01-26</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#ResourceRelationshipID-2008-11-19"/> <rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/identifier"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/ResourceRelationship"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>not in ABCD</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Sample-2008-11-19"> <rdfs:label xml:lang="en-US">Sample</rdfs:label> <rdfs:comment xml:lang="en-US">Container class for information about the results of a sampling event (specimen, observation, etc.)</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#Sample-2008-11-19"/> <rdfs:domain rdf:resource="none"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="SampleAttibuteRemarks-2008-11-19"> <rdfs:label xml:lang="en-US">SampleAttibuteRemarks</rdfs:label> <rdfs:comment xml:lang="en-US">Comments or notes accompanying the measurement or characteristic of the sample.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "tip of tail missing"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#SampleAttibuteRemarks-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SampleAttribute"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>not in ABCD</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="SampleAttributeAccuracy-2009-01-18"> <rdfs:label xml:lang="en-US">SampleAttributeAccuracy</rdfs:label> <rdfs:comment xml:lang="en-US">The description of the error associated with the SampleAttributeValue.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "0.01", "normal distribution with variation of 2 m"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2009-01-18</dcterms:issued> <dcterms:modified>2009-01-18</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#SampleAttributeAccuracy-2009-01-18"/> <rdfs:subPropertyOf rdf:resource="http://rs.tdwg.org/dwc/terms/Error"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SampleAttribute"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Accuracy</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="SampleAttributeDeterminedBy-2009-01-23"> <rdfs:label xml:lang="en-US">SampleAttributeDeterminedBy</rdfs:label> <rdfs:comment xml:lang="en-US">The agent responsible for having determined the value of the measurement or characteristic of the sample.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "Javier de la Torre"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2009-01-23</dcterms:issued> <dcterms:modified>2009-01-23</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#SampleAttributeDeterminedBy-2009-01-23"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SampleAttribute"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/MeasuredBy</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="SampleAttributeDeterminedDate-2009-01-23"> <rdfs:label xml:lang="en-US">SampleAttributeDeterminedDate</rdfs:label> <rdfs:comment xml:lang="en-US">The date on which the the measurement or characteristic of the sample was made.</rdfs:comment> <dcterms:description xml:lang="en-US">Date may be used to express temporal information at any level of granularity. Recommended best practice is to use an encoding scheme, such as the W3CDTF profile of ISO 8601 [W3CDTF].</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2009-01-23</dcterms:issued> <dcterms:modified>2009-01-23</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#SampleAttributeDeterminedDate-2009-01-23"/> <rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/date"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SampleAttribute"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/MeasurementDateTime</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="SampleAttributes-2008-11-19"> <rdfs:label xml:lang="en-US">SampleAttributes</rdfs:label> <rdfs:comment xml:lang="en-US">A list (concatenated and separated) of additional measurements or characteristics of the sample.</rdfs:comment> <dcterms:description xml:lang="en-US">Examples: "Tragus length: 14mm; Weight: 120g", "Height: 1-1.5 meters tall; flowers yellow; uncommon".</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#SampleAttributes-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Sample"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/Attributes-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/MeasurementsOrFacts</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="SampleAttributeType-2008-11-19"> <rdfs:label xml:lang="en-US">SampleAttributeType</rdfs:label> <rdfs:comment xml:lang="en-US">The nature of the measurement or characteristic of the sample. Recommended best practice is to use a controlled vocabulary.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "tail length"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#SampleAttributeType-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SampleAttribute"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Parameter</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="SampleAttributeUnit-2008-11-19"> <rdfs:label xml:lang="en-US">SampleAttributeUnit</rdfs:label> <rdfs:comment xml:lang="en-US">The units for the value of the measurement or characteristic of the sample. Recommended best practice is to use International System of Units (SI) units.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "mm"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#SampleAttributeUnit-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SampleAttribute"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UnitOfMeasurement</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="SampleAttributeValue-2008-11-19"> <rdfs:label xml:lang="en-US">SampleAttributeValue</rdfs:label> <rdfs:comment xml:lang="en-US">The value of the measurement or characteristic of the sample.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "45"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#SampleAttributeValue-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SampleAttribute"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UpperValue</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="SampleDetails-2008-11-19"> <rdfs:label xml:lang="en-US">SampleDetails</rdfs:label> <rdfs:comment xml:lang="en-US">A reference (publication, URI) to the most detailed information available about the sample.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#SampleDetails-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Sample"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/RelatedInformation-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/RecordURI</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="SampleID-2008-11-19"> <rdfs:label xml:lang="en-US">SampleID</rdfs:label> <rdfs:comment xml:lang="en-US">A Uniform Resource Name (URN) as a unique identifier for the sample (as opposed to a particular digital record of the sample). 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 SampleID globally unique and persistent.</rdfs:comment> <dcterms:description xml:lang="en-US">For a specimen, for example, use the form: "urn:catalog:[InstitutionCode]:[CollectionCode]:[CatalogNumber]. Examples: 1) "urn:lsid:nhm.ku.edu:Herps:32", 2) "urn:catalog:FMNH:Mammal:145732"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#SampleID-2008-11-19"/> <rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/identifier"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Sample"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/GlobalUniqueIdentifier-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/UnitGUID</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="SampleRemarks-2009-01-18"> <rdfs:label xml:lang="en-US">SampleRemarks</rdfs:label> <rdfs:comment xml:lang="en-US">Comments or notes about the sample or record.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "found dead on road"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2009-01-18</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#SampleRemarks-2009-01-18"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Sample"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/Remarks-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Notes</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="SampleSize-2005-07-10"> <rdfs:label xml:lang="en-US">SampleSize</rdfs:label> <rdfs:comment xml:lang="en-US">The size of the sample from which the collection/observation was drawn. It can be a volume (e.g. for a phytoplankton sample), a linear distance (e.g. for a visual transect or net haul), a surface area (e.g. for a benthic core), etc. This field must also include the units, e.g. 200 mfor a transect, or 0.25 m^2 for a benthic grab (use ^ to denote a superscript). Note that When multiple collections/observations are reported from the same physical sample, a code identifying the sample can be placed in the Field_Number field to allow all collections/observations from a single sample to be connected.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://www.iobis.org/obis/"/> <dcterms:issued>2005-07-10</dcterms:issued> <dcterms:modified>2005-07-10</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://www.iobis.org/obis/#SampleSize-2005-07-10"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/LowerValue + constant</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="SamplingAttributeID-2008-11-19"> <rdfs:label xml:lang="en-US">SamplingAttributeID</rdfs:label> <rdfs:comment xml:lang="en-US">An identifier for the sampling attribute. May be a global unique identifier or an identifier specific to the data set.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#SamplingAttributeID-2008-11-19"/> <rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/identifier"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SampleAttribute"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>not in ABCD</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="SamplingEvent-2008-11-19"> <rdfs:label xml:lang="en-US">SamplingEvent</rdfs:label> <rdfs:comment xml:lang="en-US">Container class for information about the conditions and methods of acquisition of samples.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#SamplingEvent-2008-11-19"/> <rdfs:subPropertyOf rdf:resource="http://purl.org/dc/dcmitype/Event"/> <rdfs:domain rdf:resource="none"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="SamplingEventAttributes-2008-11-19"> <rdfs:label xml:lang="en-US">SamplingEventAttributes</rdfs:label> <rdfs:comment xml:lang="en-US">A list (concatenated and separated) of additional measurements or characteristics of the sampling event.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "Relative humidity: 28%; Temperature: 22 Celcius; Sample size: 10 kg"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#SamplingEventAttributes-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingEvent"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="SamplingEventID-2008-11-19"> <rdfs:label xml:lang="en-US">SamplingEventID</rdfs:label> <rdfs:comment xml:lang="en-US">An identifier for the sampling event. May be a global unique identifier or an identifier specific to the data set.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#SamplingEventID-2008-11-19"/> <rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/identifier"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingEvent"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/Code</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="SamplingEventRemarks-2009-01-18"> <rdfs:label xml:lang="en-US">SamplingEventRemarks</rdfs:label> <rdfs:comment xml:lang="en-US">Comments or notes about the sampling event.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "found dead on road"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2009-01-18</dcterms:issued> <dcterms:modified>2009-01-18</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#SamplingEventRemarks-2009-01-18"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingEvent"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>not in ABCD</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="SamplingLocation-2008-11-19"> <rdfs:label xml:lang="en-US">SamplingLocation</rdfs:label> <rdfs:comment xml:lang="en-US">Container class for information about the location where a sampling event occurred.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#SamplingLocation-2008-11-19"/> <rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/Location"/> <rdfs:domain rdf:resource="none"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/LocalityText</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="SamplingLocationID-2008-11-19"> <rdfs:label xml:lang="en-US">SamplingLocationID</rdfs:label> <rdfs:comment xml:lang="en-US">An identifier for the sampling location. May be a global unique identifier or an identifier specific to the data set.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "MVZ:LocID:12345"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#SamplingLocationID-2008-11-19"/> <rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/identifier"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingLocation"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>not in ABCD</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="SamplingLocationRemarks-2009-01-18"> <rdfs:label xml:lang="en-US">SamplingLocationRemarks</rdfs:label> <rdfs:comment xml:lang="en-US">Comments or notes about the sampling location.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "under water since 2005"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2009-01-18</dcterms:issued> <dcterms:modified>2009-01-18</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#SamplingLocationRemarks-2009-01-18"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingLocation"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/AreaDetail</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="SamplingProtocol-2008-11-19"> <rdfs:label xml:lang="en-US">SamplingProtocol</rdfs:label> <rdfs:comment xml:lang="en-US">The name of, reference to, or brief description of the method or protocol used for the sampling event.</rdfs:comment> <dcterms:description xml:lang="en-US">Examples: "UV light trap", "mist net", "bottom trawl"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#SamplingProtocol-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingEvent"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/CollectingMethod-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/Method</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="ScientificName-2009-01-21"> <rdfs:label xml:lang="en-US">ScientificName</rdfs:label> <rdfs:comment xml:lang="en-US">The taxon name (with date and authorship information if applicable) of the lowest level taxonomic rank that can be applied. Identifier qualifications should be supplied in the IdentificationQualifier term rather than here.</rdfs:comment> <dcterms:description xml:lang="en-US">Examples: "Coleoptera" (order), "Vespertilionidae" (family), "Manis" (genus), "Ctenomys sociabilis" (binomial), "Ambystoma tigrinum diaboli" (binomial + InfraspecificEpithet), "Quercus agrifolia var. oxyadenia (Torr.) J.T. Howell" (binomial + TaxonRank + InfraspecificEpithet + ScientificNameAuthorship)</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2009-01-21</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#ScientificName-2009-01-21"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Taxon"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/ScientificName-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/FullScientificNameString</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="ScientificName-2007-04-17"> <rdfs:label xml:lang="en-US">ScientificName</rdfs:label> <rdfs:comment xml:lang="en-US">The full name of the lowest level taxon to which the organism has been identified in the most recent accepted determination, specified as precisely as possible, including name-author, year or authorship, sensu or sec. (according to or following) author, and indication of uncertainty. Conceptually equivalent to a full taxonomic identification as given by the identifier (verbatim). Does not include the identifier name or date of identification. Examples: "Coleoptera" (an Order), "Vespertilionidae" (a Family), "Manis" (a Genus), "Ctenomys sociabilis" (Genus + SpecificEpithet), "Ambystoma tigrinum diaboli" (Genus + SpecificEpithet + SubspecificEpithet), "Quercus agrifolia var. oxyadenia (Torr.) J.T. Howell" (Genus + SpecificEpithet + InfraspecificRank + InfraspecificEpithet + AuthorYearOfScientificName).</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwcore/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwcore/#ScientificName-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/dwcore/ScientificName-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/FullScientificNameString</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="ScientificName-2003-06-17"> <rdfs:label xml:lang="en-US">ScientificName</rdfs:label> <rdfs:comment xml:lang="en-US">The full name of lowest level taxon to which the cataloged item can be identified (e.g., genus name, specific epithet, subspecific epithet, etc.).</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#ScientificName-2003-06-17"/> <rdfs:replaces rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/ScientificName-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/FullScientificNameString</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="ScientificName-2003-06-13"> <rdfs:label xml:lang="en-US">ScientificName</rdfs:label> <rdfs:comment xml:lang="en-US">The full name of lowest level taxon the Cataloged Item can be identified as a member of; includes genus name, specific epithet, and subspecific epithet (zool.) or infraspecific rank abbreviation, and infraspecific epithet (bot.) Use name of suprageneric taxon (e.g., family name) if Cataloged Item cannot be identified to genus, species, or infraspecific taxon.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-13</dcterms:issued> <dcterms:modified>2003-06-13</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#ScientificName-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/FullScientificNameString</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="ScientificNameAuthor-2003-06-17"> <rdfs:label xml:lang="en-US">ScientificNameAuthor</rdfs:label> <rdfs:comment xml:lang="en-US">The author of the ScientificName. Can be more than one author in a concatenated string. Should be formatted according to the conventions of the applicable taxonomic discipline.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#ScientificNameAuthor-2003-06-17"/> <rdfs:replaces rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/ScientificNameAuthor-2003-06-13"/> <rdfs:seeAlso>{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/ParentheticalAuthorTeamAndYear + DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/AuthorTeamAndYear} or {DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/AuthorTeamParenthesis + DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/AuthorTeam} or {DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/AuthorTeamOriginalAndYear + [= or] DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/AuthorTeamParenthesisAndYear}</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="ScientificNameAuthor-2003-06-13"> <rdfs:label xml:lang="en-US">ScientificNameAuthor</rdfs:label> <rdfs:comment xml:lang="en-US">The author of a scientific name. Author string as applied to the accepted name. Can be more than one author (concatenated string). Should be formatted according to the conventions of the applicable taxonomic discipline.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-13</dcterms:issued> <dcterms:modified>2003-06-13</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#ScientificNameAuthor-2003-06-13"/> <rdfs:seeAlso>{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/ParentheticalAuthorTeamAndYear + DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/AuthorTeamAndYear} or {DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/AuthorTeamParenthesis + DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/AuthorTeam} or {DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/AuthorTeamOriginalAndYear + [= or] DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/AuthorTeamParenthesisAndYear}</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="ScientificNameAuthorship-2008-11-19"> <rdfs:label xml:lang="en-US">ScientificNameAuthorship</rdfs:label> <rdfs:comment xml:lang="en-US">The authorship information for the ScientificName formatted according to the conventions of the applicable NomenclaturalCode.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "(Torr.) J.T. Howell"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#ScientificNameAuthorship-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Taxon"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/AuthorYearOfScientificName-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/ParentheticalAuthorTeamAndYear + DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/AuthorTeamAndYear} or {DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/AuthorTeamParenthesis + DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/AuthorTeam} or {DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/AuthorTeamOriginalAndYear + [= or] DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/AuthorTeamParenthesisAndYear}</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Sex-2008-11-19"> <rdfs:label xml:lang="en-US">Sex</rdfs:label> <rdfs:comment xml:lang="en-US">The sex of the biological individual represented by the sample. Recommended best practice is to use a controlled vocabulary.</rdfs:comment> <dcterms:description xml:lang="en-US">Examples: "female", "hermaphrodite"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#Sex-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Sample"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/Sex-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Sex</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Sex-2007-04-17"> <rdfs:label xml:lang="en-US">Sex</rdfs:label> <rdfs:comment xml:lang="en-US">The sex of the biological individual represented by the cataloged object or observation. Examples: "male", "female", "hermaphrodite", "gynandromorph", "monoecious", "dioecious", "not recorded", "indeterminate", "transitional".</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwcore/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwcore/#Sex-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/dwcore/Sex-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Sex</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Sex-2003-06-17"> <rdfs:label xml:lang="en-US">Sex</rdfs:label> <rdfs:comment xml:lang="en-US">The sex of a cataloged item (e.g., male, female, hermaphrodite, gynandromorph, not recorded, indeterminate, transitional - between sexes, for sequential hermaphrodites).</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#Sex-2003-06-17"/> <rdfs:replaces rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/Sex-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Sex</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Sex-2003-06-13"> <rdfs:label xml:lang="en-US">Sex</rdfs:label> <rdfs:comment xml:lang="en-US">The sex of a specimen. The domain should be a controlled set of terms (codes) based on community consensus. Proposed values: M=Male; F=Female; H=Hermaphrodite; I=Indeterminate (examined but could not be determined; U=Unkown (not examined); T=Transitional (between sexes; useful for sequential hermaphrodites)</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-13</dcterms:issued> <dcterms:modified>2003-06-13</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#Sex-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Sex</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Source-2005-07-10"> <rdfs:label xml:lang="en-US">Source</rdfs:label> <rdfs:comment xml:lang="en-US">Indicates who gave the record to the data provider. Can indicate a literature citation, an electronic dataset, etc. Is used to provide credit.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://www.iobis.org/obis/"/> <dcterms:issued>2005-07-10</dcterms:issued> <dcterms:modified>2005-07-10</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://www.iobis.org/obis/#Source-2005-07-10"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/GatheringAgents/GatheringAgentsText</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Species-2003-06-17"> <rdfs:label xml:lang="en-US">Species</rdfs:label> <rdfs:comment xml:lang="en-US">The phylogenetic specific epithet of the cataloged item.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#Species-2003-06-17"/> <rdfs:replaces rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/Species-2003-06-13"/> <rdfs:seeAlso>{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}</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Species-2003-06-13"> <rdfs:label xml:lang="en-US">Species</rdfs:label> <rdfs:comment xml:lang="en-US">The specific epithet of the organism</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-13</dcterms:issued> <dcterms:modified>2003-06-13</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#Species-2003-06-13"/> <rdfs:seeAlso>{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}</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="SpecificEpithet-2008-11-19"> <rdfs:label xml:lang="en-US">SpecificEpithet</rdfs:label> <rdfs:comment xml:lang="en-US">The name of the first or species epithet of the ScientificName.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "agrifolia"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#SpecificEpithet-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Taxon"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/SpecificEpithet-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>{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}</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="SpecificEpithet-2007-04-17"> <rdfs:label xml:lang="en-US">SpecificEpithet</rdfs:label> <rdfs:comment xml:lang="en-US">The specific epithet of the scientific name applied to the organism.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwcore/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwcore/#SpecificEpithet-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/dwcore/Species-2003-06-17"/> <rdfs:seeAlso>{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}</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Start_EndCoordinatePrecision-2005-07-10"> <rdfs:label xml:lang="en-US">Start_EndCoordinatePrecision</rdfs:label> <rdfs:comment xml:lang="en-US">An estimate of how tightly the locality was specified in the Start/End Latitude and Longitude fields; expressed as a distance, in meters, that corresponds to a radius around the latitude-longitude coordinates. Use NULL where precision is unknown, cannot be estimated, or is not applicable.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://www.iobis.org/obis/"/> <dcterms:issued>2005-07-10</dcterms:issued> <dcterms:modified>2005-07-10</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://www.iobis.org/obis/#Start_EndCoordinatePrecision-2005-07-10"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLong/CoordinateErrorDistanceInMeters</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="StartDayCollected-2005-07-10"> <rdfs:label xml:lang="en-US">StartDayCollected</rdfs:label> <rdfs:comment xml:lang="en-US">For samples/observations/record events that were taken over time this gives the start day of the collecting event. Possible value ranges from 01..31 inclusive.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://www.iobis.org/obis/"/> <dcterms:issued>2005-07-10</dcterms:issued> <dcterms:modified>2005-07-10</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://www.iobis.org/obis/#StartDayCollected-2005-07-10"/> <rdfs:seeAlso>accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="StartDayOfYear-2009-01-21"> <rdfs:label xml:lang="en-US">StartDayOfYear</rdfs:label> <rdfs:comment xml:lang="en-US">The earliest ordinal day of the year on which the sampling event occurred (1 for January 1, 365 for December 31, except in a leap year, in which case it is 366).</rdfs:comment> <dcterms:description xml:lang="en-US">Examples: "1" (=1 Jan), "366" (=31 Dec), "365" (=30 Dec in a leap year, 31 Dec in a non-leap year)</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2009-01-21</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#StartDayOfYear-2009-01-21"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingEvent"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/DayOfYear-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/DateTime/DayNumberBegin</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="StartJulianDay-2005-07-10"> <rdfs:label xml:lang="en-US">StartJulianDay</rdfs:label> <rdfs:comment xml:lang="en-US">For samples/observations/record events that were taken over time this gives the start ordinal day of the year for the collecting event; i.e., the number of days since January 1 of the same year. (January 1 is Julian Day 1.). Should be an integer from one to 365, i.e. of the form (([0-3][0-9][0-9)|([0-9][0-9)|([1-9])).</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://www.iobis.org/obis/"/> <dcterms:issued>2005-07-10</dcterms:issued> <dcterms:modified>2005-07-10</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://www.iobis.org/obis/#StartJulianDay-2005-07-10"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/DateTime/DayNumberBegin</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="StartLatitude-2005-07-10"> <rdfs:label xml:lang="en-US">StartLatitude</rdfs:label> <rdfs:comment xml:lang="en-US">For samples/observations/record events better represented as line features rather than point features (e.g. extended trawls or transects) this indicates the starting latitude location from which the specimen was collected or in which the sample/observation/record event occurred. This value should be expressed in decimal degrees (East & North = +; West & South = -). GPS-derived data must use the WGS 84 geodetic reference system (http://www.wgs84.com/).</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://www.iobis.org/obis/"/> <dcterms:issued>2005-07-10</dcterms:issued> <dcterms:modified>2005-07-10</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://www.iobis.org/obis/#StartLatitude-2005-07-10"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/CoordinateSets/SiteCoordinates/CoordinatesLatLon/LatitudeDecimal with attribute "begin" set to true</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="StartLongitude-2005-07-10"> <rdfs:label xml:lang="en-US">StartLongitude</rdfs:label> <rdfs:comment xml:lang="en-US">For samples/observations/record events better represented as line features rather than point features (e.g. extended trawls or transects) this indicates the starting longitude location from which the specimen was collected. Express in decimal degrees (East & North = +; West & South = -). GPS-derived data must use the WGS 84 geodetic reference system (http://www.wgs84.com/).</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://www.iobis.org/obis/"/> <dcterms:issued>2005-07-10</dcterms:issued> <dcterms:modified>2005-07-10</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://www.iobis.org/obis/#StartLongitude-2005-07-10"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/CoordinateSets/SiteCoordinates/CoordinatesLatLon/LongitudeDecimal with attribute "begin" set to true</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="StartMonthCollected-2005-07-10"> <rdfs:label xml:lang="en-US">StartMonthCollected</rdfs:label> <rdfs:comment xml:lang="en-US">For samples/observations/record events that were taken over time this gives the start month of the collecting event. Possible values range from 01...12 inclusive.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://www.iobis.org/obis/"/> <dcterms:issued>2005-07-10</dcterms:issued> <dcterms:modified>2005-07-10</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://www.iobis.org/obis/#StartMonthCollected-2005-07-10"/> <rdfs:seeAlso>accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="StartTimeOfDay-2008-11-19"> <rdfs:label xml:lang="en-US">StartTimeOfDay</rdfs:label> <rdfs:comment xml:lang="en-US">The time of day when the sampling event began, expressed as decimal hours from midnight, local time.</rdfs:comment> <dcterms:description xml:lang="en-US">Examples: "12.0" (= noon), "13.5" (= 1:30pm)</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#StartTimeOfDay-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingEvent"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/StartTimeOfDay-2005-07-10"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="StartTimeOfDay-2005-07-10"> <rdfs:label xml:lang="en-US">StartTimeOfDay</rdfs:label> <rdfs:comment xml:lang="en-US">The time of day when the sampling event began, expressed as decimal hours from midnight local time. Examples: 0 = midnight, 12.0 = mid-day, 13.5 = 13:30</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://www.iobis.org/obis/"/> <dcterms:issued>2005-07-10</dcterms:issued> <dcterms:modified>2005-07-10</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://www.iobis.org/obis/#StartTimeOfDay-2005-07-10"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/DateTime/TimeOfDayBegin</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="StartYearCollected-2005-07-10"> <rdfs:label xml:lang="en-US">StartYearCollected</rdfs:label> <rdfs:comment xml:lang="en-US">For samples/observations/record events that were taken over time this gives the start year of the collecting event. The full year should be expressed (e.g. 1972 must be expressed as "1972" not "72"). Must always be a four digit integer.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://www.iobis.org/obis/"/> <dcterms:issued>2005-07-10</dcterms:issued> <dcterms:modified>2005-07-10</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://www.iobis.org/obis/#StartYearCollected-2005-07-10"/> <rdfs:seeAlso>accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="StateProvince-2008-11-19"> <rdfs:label xml:lang="en-US">StateProvince</rdfs:label> <rdfs:comment xml:lang="en-US">The full, unabbreviated name of the next smaller political region than Country (state, province, canton, department, region, etc.) in which sampling event occurred.</rdfs:comment> <dcterms:description xml:lang="en-US">Examples: "Montana", "Minas Gerais", "Córdoba"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#StateProvince-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingLocation"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/StateProvince-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= State or = Province (etc.)</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="StateProvince-2007-04-17"> <rdfs:label xml:lang="en-US">StateProvince</rdfs:label> <rdfs:comment xml:lang="en-US">The full, unabbreviated name of the state, province, or region (i.e., the next smaller political region than Country) in which the organism was collected or observed.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwcore/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwcore/#StateProvince-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/dwcore/StateProvince-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= State or = Province (etc.)</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="StateProvince-2003-06-17"> <rdfs:label xml:lang="en-US">StateProvince</rdfs:label> <rdfs:comment xml:lang="en-US">The full, unabbreviated name of the state, province, or region (i.e., the next smaller political region than Country) from which the cataloged item was collected.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#StateProvince-2003-06-17"/> <rdfs:replaces rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/StateProvince-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= State or = Province (etc.)</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="StateProvince-2003-06-13"> <rdfs:label xml:lang="en-US">StateProvince</rdfs:label> <rdfs:comment xml:lang="en-US">The state, province or region (i.e. next political region smaller than Country) from which the specimen was collected. There is some suggestion to use the values described in ISO 3166-2 (http://www.iso.ch/cate/d8349.html), however these values are in a continual state of flux and it appears unlikely that an appropriate mechanism (by ISO) will be in place to manage these changes. Hence it is recommended that where possible, the full, unabbreviated name should be used for storing information. The server should optionally handle abbreviations as an access point. Note: this is a recurring theme (country and state) abbreviations. Check the existence of an attribute type to deal with abbreviations from the bib-1 profile</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-13</dcterms:issued> <dcterms:modified>2003-06-13</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#StateProvince-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= State or = Province (etc.)</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Subgenus-2008-11-19"> <rdfs:label xml:lang="en-US">Subgenus</rdfs:label> <rdfs:comment xml:lang="en-US">The name of the subgenus in which the ScientificName is classified.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#Subgenus-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Taxon"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/Subgenus-2005-07-10"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/Subgenus</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Subspecies-2003-06-13"> <rdfs:label xml:lang="en-US">Subspecies</rdfs:label> <rdfs:comment xml:lang="en-US">The sub-specific epithet of the organism</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-13</dcterms:issued> <dcterms:modified>2003-06-13</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#Subspecies-2003-06-13"/> <rdfs:seeAlso>{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/SubspeciesEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/SecondEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/SubspeciesEpithet}</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Taxon-2008-11-19"> <rdfs:label xml:lang="en-US">Taxon</rdfs:label> <rdfs:comment xml:lang="en-US">Container class for information about the taxonomic name or concept referred to by an Identification.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#Taxon-2008-11-19"/> <rdfs:domain rdf:resource="none"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>no simple equivalent in ABCD</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="TaxonAccordingTo-2009-01-21"> <rdfs:label xml:lang="en-US">TaxonAccordingTo</rdfs:label> <rdfs:comment xml:lang="en-US">Information about the authorship of this taxon concept which uses the ScientificName in their sense (secundum, sensu). Could be a publication (identification key), institution or team of individuals.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2009-01-21</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#TaxonAccordingTo-2009-01-21"/> <rdfs:subPropertyOf rdf:resource="http://rs.tdwg.org/dwc/terms/AccordingTo"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Taxon"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>not in ABCD</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="TaxonID-2008-11-19"> <rdfs:label xml:lang="en-US">TaxonID</rdfs:label> <rdfs:comment xml:lang="en-US">A global unique identifier for the taxon (name in a classification).</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#TaxonID-2008-11-19"/> <rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/identifier"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Taxon"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>not in ABCD</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="TaxonomicStatus-2008-11-19"> <rdfs:label xml:lang="en-US">TaxonomicStatus</rdfs:label> <rdfs:comment xml:lang="en-US">The status of the use of the ScientificName as a label for a taxon. Requires taxonomic opinion to define the scope of a taxon. Rules of priority then are used to define the taxonomic status of the nomenclature contained in that scope, combined with the experts opinion. It must be linked to a specific taxonomic reference that defines the concept. Recommended best practice is to use a controlled vocabulary.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "invalid", "misapplied", "homotypic synonym", "accepted"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#TaxonomicStatus-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Taxon"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>not in ABCD</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Taxonomy-2009-01-23"> <rdfs:label xml:lang="en-US">Taxonomy</rdfs:label> <rdfs:comment xml:lang="en-US">A resource describing a taxon.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwctype/"/> <dcterms:issued>2009-01-23</dcterms:issued> <dcterms:modified>2009-01-23</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwctype/#Taxonomy-2009-01-23"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>not in ABCD</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="TaxonRank-2008-11-19"> <rdfs:label xml:lang="en-US">TaxonRank</rdfs:label> <rdfs:comment xml:lang="en-US">The taxonomic rank of the most specific name in the ScientificName. Recommended best practice is to use a controlled vocabulary.</rdfs:comment> <dcterms:description xml:lang="en-US">Examples: "subsp.", "var.", "forma".</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#TaxonRank-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Taxon"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/InfraspecificRank-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/Rank</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Temperature-2005-07-10"> <rdfs:label xml:lang="en-US">Temperature</rdfs:label> <rdfs:comment xml:lang="en-US">The temperature recorded with the collection/record event. Is assumed to be taken at the collection depth. Expressed in degrees Celsius.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://www.iobis.org/obis/"/> <dcterms:issued>2005-07-10</dcterms:issued> <dcterms:modified>2005-07-10</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://www.iobis.org/obis/#Temperature-2005-07-10"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/LowerValue + constant</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="TimeCollected-2003-06-17"> <rdfs:label xml:lang="en-US">TimeCollected</rdfs:label> <rdfs:comment xml:lang="en-US">The time of day the cataloged item was collected, expressed as decimal hours from midnight, local time (e.g., 12.0 = noon, 13.5 = 1:30pm).</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#TimeCollected-2003-06-17"/> <rdfs:replaces rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/TimeOfDay-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/DateTime/TimeOfDayBegin</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="TimeOfDay-2003-06-13"> <rdfs:label xml:lang="en-US">TimeOfDay</rdfs:label> <rdfs:comment xml:lang="en-US">The time of day a specimen was collected expressed as decimal hours from midnight local time (e.g. 12.0 = mid day, 13.5 = 1:30pm)</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-13</dcterms:issued> <dcterms:modified>2003-06-13</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#TimeOfDay-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/DateTime/TimeOfDayBegin</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="TimeZone-2005-07-10"> <rdfs:label xml:lang="en-US">TimeZone</rdfs:label> <rdfs:comment xml:lang="en-US">Indicates the time zone for the Time of Day measurements.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://www.iobis.org/obis/"/> <dcterms:issued>2005-07-10</dcterms:issued> <dcterms:modified>2005-07-10</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://www.iobis.org/obis/#TimeZone-2005-07-10"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/DateTime/TimeZone</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Tissues-2003-06-17"> <rdfs:label xml:lang="en-US">Tissues</rdfs:label> <rdfs:comment xml:lang="en-US">A concatenated list of tissues and preservation methods (whole (frozen), liver (EDTA), etc.) for the cataloged item.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#Tissues-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/SpecimenUnit/Preparations/PreparationsText</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="TypeStatus-2008-11-19"> <rdfs:label xml:lang="en-US">TypeStatus</rdfs:label> <rdfs:comment xml:lang="en-US">A list (concatenated and separated) of nomenclatural types (type status, typified ScientificName, publication) applied to the sample.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "holotype of Ctenomys sociabilis. Pearson O. P., and M. I. Christie. 1985. Historia Natural, 5(37):388"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#TypeStatus-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/Identification"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/TypeStatus-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeText</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="TypeStatus-2007-04-17"> <rdfs:label xml:lang="en-US">TypeStatus</rdfs:label> <rdfs:comment xml:lang="en-US">A list of one or more nomenclatural types (including type status and typified taxonomic name) represented by the object. Example: "holotype of Ctenomys sociabilis. Pearson O. P., and M. I. Christie. 1985. Historia Natural, 5(37):388".</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/curatorial/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/curatorial/#TypeStatus-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/curatorial/TypeStatus-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeText</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="TypeStatus-2003-06-17"> <rdfs:label xml:lang="en-US">TypeStatus</rdfs:label> <rdfs:comment xml:lang="en-US">A list of one or more nomenclatural types that the cataloged item represents (e.g., "holotype of Ctenomys sociabilis. Pearson O. P., and M. I. Christie. 1985. Historia Natural, 5(37):388.").</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#TypeStatus-2003-06-17"/> <rdfs:replaces rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/TypeStatus-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeText</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="TypeStatus-2003-06-13"> <rdfs:label xml:lang="en-US">TypeStatus</rdfs:label> <rdfs:comment xml:lang="en-US">Indicates the kind of nomenclatural type that a specimen represents. (This is incomplete because type status actually describes the relationship between a name and a specimen [or ternary relatiohnship between a specimen, name, and publication].) In particular, the type status may not apply to the name listed in the scientific name, i.e., current identification. In rare cases, a single specimen may be the type of more than one name.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-13</dcterms:issued> <dcterms:modified>2003-06-13</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#TypeStatus-2003-06-13"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeText</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="ValidDistributionFlag-2007-04-17"> <rdfs:label xml:lang="en-US">ValidDistributionFlag</rdfs:label> <rdfs:comment xml:lang="en-US">A flag ("true" or "false") that indicates whether the locality information represents a valid distribution occurrence for a specimen. Specimens taken from captivity and showing the captive location should use the value "false".</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwcore/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwcore/#ValidDistributionFlag-2007-04-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/ValidDistributionFlag</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="VerbatimCollectingDate-2008-11-19"> <rdfs:label xml:lang="en-US">VerbatimCollectingDate</rdfs:label> <rdfs:comment xml:lang="en-US">The verbatim original representation of the date (and time) information for the sampling event.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "spring 1910"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#VerbatimCollectingDate-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingEvent"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/VerbatimCollectingDate-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/DateTime/DateText</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="VerbatimCollectingDate-2007-04-17"> <rdfs:label xml:lang="en-US">VerbatimCollectingDate</rdfs:label> <rdfs:comment xml:lang="en-US">The verbatim original representation of the date (and time) information for the collecting event. Example: "spring 1910".</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/curatorial/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/curatorial/#VerbatimCollectingDate-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/curatorial/VerbatimCollectingDate-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/DateTime/DateText</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="VerbatimCollectingDate-2003-06-17"> <rdfs:label xml:lang="en-US">VerbatimCollectingDate</rdfs:label> <rdfs:comment xml:lang="en-US">The verbatim original representation of the date information for the collecting event.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#VerbatimCollectingDate-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/DateTime/DateText</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="VerbatimCoordinates-2008-11-19"> <rdfs:label xml:lang="en-US">VerbatimCoordinates</rdfs:label> <rdfs:comment xml:lang="en-US">The original spatial coordinates of the place where the sampling event occurred. The coordinate reference system (datum, ellipsoid) for these coordinates should be stored in GeodeticDatum and the coordinate system should be stored in VerbatimCoordinateSystem.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "41 05 54S 121 05 34W"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#VerbatimCoordinates-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingLocation"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/VerbatimCoordinates-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>{DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/CoordinatesText or DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesUTM/UTMText}</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="VerbatimCoordinates-2007-04-17"> <rdfs:label xml:lang="en-US">VerbatimCoordinates</rdfs:label> <rdfs:comment xml:lang="en-US">A text representation of the coordinate data (Latitude/ Longitude, UTM, TRS, etc.) from its original source if it cannot be separated into its component parts. Example: "470999 1234300".</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/geospatial/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/geospatial/#VerbatimCoordinates-2007-04-17"/> <rdfs:seeAlso>{DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/CoordinatesText or DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesUTM/UTMText}</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="VerbatimCoordinateSystem-2008-11-19"> <rdfs:label xml:lang="en-US">VerbatimCoordinateSystem</rdfs:label> <rdfs:comment xml:lang="en-US">The spatial coordinate system for the VerbatimLatitude and VerbatimLongitude or the VerbatimCoordinates of the place where the sampling event occurred. Recommended best practice is to use a controlled vocabulary.</rdfs:comment> <dcterms:description xml:lang="en-US">Examples: "decimal degrees", "degrees decimal minutes", "degrees minutes seconds", "UTM", "Gauss-Kruger"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#VerbatimCoordinateSystem-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingLocation"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/VerbatimCoordinateSystem-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>(partly) DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesGrid/GridCellSystem</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="VerbatimCoordinateSystem-2007-04-17"> <rdfs:label xml:lang="en-US">VerbatimCoordinateSystem</rdfs:label> <rdfs:comment xml:lang="en-US">The name of the system in which the verbatim geographic coordinates were recorded. Examples: "decimal degrees", "degrees minutes seconds", "degrees decimal minutes", "UTM"</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/geospatial/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/geospatial/#VerbatimCoordinateSystem-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/geospatial/OriginalCoordinateSystem-2003-06-17"/> <rdfs:seeAlso>(partly) DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesGrid/GridCellSystem</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="VerbatimDepth-2008-11-19"> <rdfs:label xml:lang="en-US">VerbatimDepth</rdfs:label> <rdfs:comment xml:lang="en-US">The original description of the depth (below the local surface) at which the sampling event occurred.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "100-200 m"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#VerbatimDepth-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingLocation"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/VerbatimDepth-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactText</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="VerbatimDepth-2007-04-17"> <rdfs:label xml:lang="en-US">VerbatimDepth</rdfs:label> <rdfs:comment xml:lang="en-US">A text representation of the depth in its original format in the source database. Example: "100 to 200 ft below sea level".</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/curatorial/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/curatorial/#VerbatimDepth-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/curatorial/VerbatimDepth-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactText</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="VerbatimDepth-2003-06-17"> <rdfs:label xml:lang="en-US">VerbatimDepth</rdfs:label> <rdfs:comment xml:lang="en-US">A text representation of the Depth in its original format in the source database.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#VerbatimDepth-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactText</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="VerbatimElevation-2008-11-19"> <rdfs:label xml:lang="en-US">VerbatimElevation</rdfs:label> <rdfs:comment xml:lang="en-US">The original description of the elevation (altitude, usually above sea level) at which the sampling event occurred.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "100-200 m"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#VerbatimElevation-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingLocation"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/VerbatimElevation-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactText</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="VerbatimElevation-2007-04-17"> <rdfs:label xml:lang="en-US">VerbatimElevation</rdfs:label> <rdfs:comment xml:lang="en-US">A text representation of the altitude in its original format in the source database. Example: "1000+- meters".</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/curatorial/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/curatorial/#VerbatimElevation-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/curatorial/VerbatimElevation-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactText</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="VerbatimElevation-2003-06-17"> <rdfs:label xml:lang="en-US">VerbatimElevation</rdfs:label> <rdfs:comment xml:lang="en-US">A text representation of the Elevation in its original format in the source database.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#VerbatimElevation-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactText</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="VerbatimLatitude-2008-11-19"> <rdfs:label xml:lang="en-US">VerbatimLatitude</rdfs:label> <rdfs:comment xml:lang="en-US">The verbatim original latitude of the place where the sampling event occurred. The coordinate reference system (datum, ellipsoid) for these coordinates should be stored in GeodeticDatum and the coordinate system should be stored in VerbatimCoordinateSystem.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "41 05 54.03S"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#VerbatimLatitude-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingLocation"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/VerbatimLatitude-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/VerbatimLatitude</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="VerbatimLatitude-2007-04-17"> <rdfs:label xml:lang="en-US">VerbatimLatitude</rdfs:label> <rdfs:comment xml:lang="en-US">A text representation of the Latitude part of the coordinate data from its original source. Example: 47d09'99"N</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/geospatial/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/geospatial/#VerbatimLatitude-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/geospatial/VerbatimLatitude-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/VerbatimLatitude</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="VerbatimLatitude-2003-06-17"> <rdfs:label xml:lang="en-US">VerbatimLatitude</rdfs:label> <rdfs:comment xml:lang="en-US">A text representation of the Latitude data in its original format in the source database.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#VerbatimLatitude-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/VerbatimLatitude</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="VerbatimLocality-2008-11-19"> <rdfs:label xml:lang="en-US">VerbatimLocality</rdfs:label> <rdfs:comment xml:lang="en-US">The original description of the specific place where the sampling event occurred.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "25 km NNE Bariloche por R. Nac. 237"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#VerbatimLocality-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingLocation"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="VerbatimLongitude-2008-11-19"> <rdfs:label xml:lang="en-US">VerbatimLongitude</rdfs:label> <rdfs:comment xml:lang="en-US">The verbatim original longitude of the place where the sampling event occurred. The coordinate reference system (datum, ellipsoid) for these coordinates should be stored in GeodeticDatum and the coordinate system should be stored in VerbatimCoordinateSystem.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "121d 10' 34" W"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#VerbatimLongitude-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingLocation"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/VerbatimLongitude-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/VerbatimLongitude</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="VerbatimLongitude-2007-04-17"> <rdfs:label xml:lang="en-US">VerbatimLongitude</rdfs:label> <rdfs:comment xml:lang="en-US">A text representation of the Longitude part of the coordinate data from its original source. Example: -122.43254</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/geospatial/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/geospatial/#VerbatimLongitude-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/geospatial/VerbatimLongitude-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/VerbatimLongitude</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="VerbatimLongitude-2003-06-17"> <rdfs:label xml:lang="en-US">VerbatimLongitude</rdfs:label> <rdfs:comment xml:lang="en-US">A text representation of the Longitude data in its original format in the source database.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#VerbatimLongitude-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/VerbatimLongitude</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="Waterbody-2008-11-19"> <rdfs:label xml:lang="en-US">Waterbody</rdfs:label> <rdfs:comment xml:lang="en-US">The full, unabbreviated name of the water body in which the sampling event occurred. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "Indian Ocean", "Baltic Sea"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#Waterbody-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingLocation"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/WaterBody-2007-04-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Water body</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="WaterBody-2007-04-17"> <rdfs:label xml:lang="en-US">WaterBody</rdfs:label> <rdfs:comment xml:lang="en-US">The full, unabbreviated name of the body of water in or over which the organism was collected or observed.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/dwcore/"/> <dcterms:issued>2007-04-17</dcterms:issued> <dcterms:modified>2007-04-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/dwcore/#WaterBody-2007-04-17"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/dwcore/ContinentOcean-2003-06-17"/> <rdfs:seeAlso>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Water body</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="YearCollected-2003-06-17"> <rdfs:label xml:lang="en-US">YearCollected</rdfs:label> <rdfs:comment xml:lang="en-US">The four digit year in the Common Era calendar in which the cataloged item was collected.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#YearCollected-2003-06-17"/> <rdfs:replaces rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/YearCollected-2003-06-13"/> <rdfs:seeAlso>accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="YearCollected-2003-06-13"> <rdfs:label xml:lang="en-US">YearCollected</rdfs:label> <rdfs:comment xml:lang="en-US">The year (expressed as an integer) in which the specimen was collected. The full year should be expressed (e.g. 1972 must be expressed as "1972" not "72"). Must always be a four digit integer [-9999..9999]</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-13</dcterms:issued> <dcterms:modified>2003-06-13</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#YearCollected-2003-06-13"/> <rdfs:seeAlso>accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="YearIdentified-2003-06-17"> <rdfs:label xml:lang="en-US">YearIdentified</rdfs:label> <rdfs:comment xml:lang="en-US">The four digit year in the Common Era calendar in which the cataloged item was identified as having the ScientificName.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-17</dcterms:issued> <dcterms:modified>2003-06-17</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#YearIdentified-2003-06-17"/> <rdfs:replaces rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/YearIdentified-2003-06-13"/> <rdfs:seeAlso>accessible from DataSets/DataSet/Units/Unit/Identifications/Identification/Date/DateText</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="YearIdentified-2003-06-13"> <rdfs:label xml:lang="en-US">YearIdentified</rdfs:label> <rdfs:comment xml:lang="en-US">The year portion of the date when the Collection Item was identified; as four digits [-9999..9999], e.g., 1906, 2002.</rdfs:comment> <rdfs:isDefinedBy rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/"/> <dcterms:issued>2003-06-13</dcterms:issued> <dcterms:modified>2003-06-13</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://digir.net/schema/conceptual/darwin/2003/1.0/#YearIdentified-2003-06-13"/> <rdfs:seeAlso>accessible from DataSets/DataSet/Units/Unit/Identifications/Identification/Date/DateText</rdfs:seeAlso> </rdf:Description>
|
||||
<rdf:Description rdf:ID="YearSampled-2008-11-19"> <rdfs:label xml:lang="en-US">YearSampled</rdfs:label> <rdfs:comment xml:lang="en-US">The four-digit year in which the sampling event occurred, according to the Common Era Calendar.</rdfs:comment> <dcterms:description xml:lang="en-US">Example: "2008"</dcterms:description> <rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/> <dcterms:issued>2008-11-19</dcterms:issued> <dcterms:modified>2008-11-19</dcterms:modified> <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/> <dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/#YearSampled-2008-11-19"/> <rdfs:domain rdf:resource="http://rs.tdwg.org/dwc/terms/SamplingEvent"/> <rdfs:replaces rdf:resource="http://rs.tdwg.org/dwc/terms/YearCollected-2003-06-17"/> <dwcattributes:status>recommended</dwcattributes:status> <rdfs:seeAlso>accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin</rdfs:seeAlso> </rdf:Description>
|
||||
|
||||
<!-- end Mutable RDF -->
|
||||
</rdf:RDF>
|
|
@ -0,0 +1,145 @@
|
|||
/** ----------------------------------------------------------------------------------
|
||||
RDF styling by loic@ultimedia.com.au
|
||||
---------------------------------------------------------------------------------- */
|
||||
|
||||
|
||||
/** ----------------------------------------------------------------------------------
|
||||
* Common HTML elements //////////////////////////////////////////////////////////////
|
||||
---------------------------------------------------------------------------------- */
|
||||
|
||||
body {
|
||||
background-color: #FFFFFF;
|
||||
margin-left: 0px;
|
||||
margin-top: 0px;
|
||||
margin-right: 0px;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
body,td,th,p,div {
|
||||
font: 12px/1.4 Verdana, Arial, Helvetica, sans-serif;
|
||||
color: #617694;
|
||||
}
|
||||
p {
|
||||
margin-top: 0px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
/*---------------------------------------------------- links */
|
||||
|
||||
a:link { color: #EC7600; text-decoration:none; }
|
||||
a:visited { color:#EC7600; text-decoration:none; }
|
||||
a:hover { color:#EC7600; text-decoration:underline; }
|
||||
a:active { color:#EC7600; text-decoration:none; }
|
||||
|
||||
/*---------------------------------------------------- headers */
|
||||
|
||||
h1,h2,h3,h4,h5,h6 {
|
||||
font: 18px/1.8 Tahoma, Tahoma, "Times New Roman", sans-serif;
|
||||
letter-spacing:1px;
|
||||
margin-top: 0px;
|
||||
color: #6A9832;
|
||||
}
|
||||
h1 {
|
||||
font-size: 22px;
|
||||
}
|
||||
h2 {
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
/** ----------------------------------------------------------------------------------
|
||||
* Main layout elements //////////////////////////////////////////////////////////////
|
||||
---------------------------------------------------------------------------------- */
|
||||
|
||||
#container {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
/*---------------------------------------------------- page header */
|
||||
|
||||
#RDF-header {
|
||||
height:89px;
|
||||
background:#617694 url(images/headerImage_RDF.jpg) right top no-repeat;
|
||||
}
|
||||
#logoBox {
|
||||
width:149px;
|
||||
height:89px;
|
||||
float:left;
|
||||
margin: 0;
|
||||
background:#fff url(images/logo_RDF_bgd.gif) right bottom no-repeat;
|
||||
}
|
||||
#logo {
|
||||
padding-top: 9px;
|
||||
padding-left: 12px;
|
||||
}
|
||||
#RDF-header-title {
|
||||
font: 24px/1.2 Georgia, "Times New Roman", sans-serif;
|
||||
color: #E7F2D9;
|
||||
margin: 0;
|
||||
padding-top: 15px;
|
||||
margin-left: 170px;
|
||||
}
|
||||
|
||||
#RDF-title-bar {
|
||||
background:#CADDB5 url(images/RDF-titlebar-right.gif) right bottom no-repeat;
|
||||
height:30px;
|
||||
}
|
||||
|
||||
/*---------------------------------------------------- main content */
|
||||
#left-bar {
|
||||
width: 133px;
|
||||
float:left;
|
||||
background:#617694 url(images/left-bar-bottom-right.gif) right bottom no-repeat;
|
||||
}
|
||||
#left-bar-menu {
|
||||
padding: 0px 0px 20px 10px;
|
||||
}
|
||||
#left-bar-menu a:link { color: #FFCC00; text-decoration:none; }
|
||||
#left-bar-menu a:visited { color:#FFCC00; text-decoration:none; }
|
||||
#left-bar-menu a:hover { color:#FFFFFF; text-decoration:none; }
|
||||
#left-bar-menu a:active { color:#FFFFFF; text-decoration:none; }
|
||||
|
||||
#RDF-main {
|
||||
margin: 0 auto;
|
||||
margin-top:20px;
|
||||
margin-right:20px;
|
||||
margin-left:150px;
|
||||
}
|
||||
|
||||
/*---------------------------------------------------- RDF styles */
|
||||
|
||||
.TopProperties{
|
||||
border: 1px solid #617694;
|
||||
}
|
||||
.ClassProperties{
|
||||
background-color: #FAFCF8;
|
||||
padding:20px;
|
||||
border: 1px solid #ddd;
|
||||
margin-bottom:20px;
|
||||
}
|
||||
|
||||
|
||||
table{
|
||||
width: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
border: 1px solid #ccc;
|
||||
}
|
||||
th{
|
||||
color: white;
|
||||
background-color: #617694;
|
||||
vertical-align:text-top;
|
||||
}
|
||||
td{
|
||||
padding: 5px;
|
||||
border-top: 1px solid #ddd;
|
||||
vertical-align:text-top;
|
||||
background-color: #F0F2F4;
|
||||
}
|
||||
.ClassProperties dl {
|
||||
margin-left:20px;
|
||||
padding:10px;
|
||||
border: 1px dashed #aaa;
|
||||
margin-bottom:20px;
|
||||
}
|
||||
dd {
|
||||
margin-bottom:5px;
|
||||
}
|
|
@ -0,0 +1,289 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- $Rev: 1321 $ -->
|
||||
<!-- $Date: 2007-09-10 17:23:32 +0200 (Mon, 10 Sep 2007) $ -->
|
||||
<!-- $Author: RogerHyam $ -->
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" version="1.0"
|
||||
xmlns:dcterms="http://purl.org/dc/terms/" xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:dwc="http://rs.tdwg.org/dwc/terms/" xmlns:dwctype="http://rs.tdwg.org/dwc/terms/vocabulary/"
|
||||
xmlns:owl="http://www.w3.org/2002/07/owl#">
|
||||
<xsl:output method="html" encoding="UTF-8" indent="yes"/>
|
||||
<xsl:variable name="wikiPrefix">http://code.google.com/p/darwincore/wiki/</xsl:variable>
|
||||
<xsl:template match="rdf:RDF">
|
||||
<html>
|
||||
<head>
|
||||
<title>Darwin Core Terms</title>
|
||||
<link rel="stylesheet" type="text/css" href="human.css"/>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
|
||||
<div id="RDF-header">
|
||||
<div id="logoBox">
|
||||
<a href="http://www.tdwg.org">
|
||||
<img src="http://rs.tdwg.org/ontology/voc/images/logo_RDF.gif" alt="TDWG logo" width="117"
|
||||
height="67" border="0" id="logo"/>
|
||||
</a>
|
||||
</div>
|
||||
<div id="RDF-header-title"> Darwin Core Terms</div>
|
||||
</div>
|
||||
|
||||
<div id="RDF-title-bar">
|
||||
<img src="http://rs.tdwg.org/ontology/voc/images/left-bar-top.gif" alt="left bar top"/>
|
||||
</div>
|
||||
|
||||
<div id="left-bar">
|
||||
<div id="left-bar-menu">
|
||||
<a href="http://www.tdwg.org">TDWG home</a>
|
||||
<div class="separator"><hr/></div>
|
||||
<a href="http://128.32.146.144/dcterms/index.htm">DarwinCore Home</a>
|
||||
<a href="http://code.google.com/p/darwincore/">DarwinCore Google Code</a>
|
||||
<div class="separator"><hr/></div>
|
||||
<a href="http://128.32.146.144/dcterms/terms/index.htm">Terms</a><br/>
|
||||
<a href="http://128.32.146.144/dcterms/terms/type-vocabulary/index.htm">Type Vocabulary</a><br/>
|
||||
<a href="http://128.32.146.144/dcterms/terms/namespace/index.htm">Namespaces</a><br/>
|
||||
<a href="http://128.32.146.144/dcterms/terms/xsd/guide/index.htm">XML encoding</a><br/>
|
||||
<a href="">Text encoding</a><br/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="RDF-main">
|
||||
|
||||
<h1>
|
||||
Darwin Core Terms
|
||||
</h1>
|
||||
<p>(This is an HTML view of the RDF term definitions. Use View-Source to
|
||||
see the underlying RDF.) </p>
|
||||
<xsl:apply-templates select="rdf:Description"/>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
</xsl:template>
|
||||
|
||||
|
||||
<xsl:template match="rdf:Description">
|
||||
<xsl:variable name="currentTerm">
|
||||
<xsl:value-of select="concat('#', @rdf:ID)"/>
|
||||
</xsl:variable>
|
||||
|
||||
<a>
|
||||
<xsl:attribute name="name">
|
||||
<xsl:value-of select="@rdf:ID"/>
|
||||
</xsl:attribute>
|
||||
</a>
|
||||
|
||||
<xsl:if test="@rdf:ID">
|
||||
<h2>Term: <xsl:value-of select="@rdf:ID"/></h2>
|
||||
</xsl:if>
|
||||
<h3><xsl:value-of select="@rdf:about"/></h3>
|
||||
<dl>
|
||||
<xsl:apply-templates select="rdfs:*"/>
|
||||
</dl>
|
||||
<dl>
|
||||
<xsl:apply-templates select="rdf:*"/>
|
||||
</dl>
|
||||
<dl>
|
||||
<xsl:apply-templates select="dcterms:*"/>
|
||||
</dl>
|
||||
|
||||
<dl>
|
||||
<dt>
|
||||
<a>
|
||||
<xsl:attribute name="href">
|
||||
<xsl:value-of select="concat($wikiPrefix ,@rdf:ID)"/>
|
||||
</xsl:attribute> Discussion Page. </a>
|
||||
</dt>
|
||||
<dd>Discussions related to this term on the wiki.</dd>
|
||||
</dl>
|
||||
</xsl:template>
|
||||
|
||||
|
||||
<!-- RDF links -->
|
||||
<xsl:template match="rdf:type">
|
||||
<dt>
|
||||
Type
|
||||
</dt>
|
||||
<dd>
|
||||
<a>
|
||||
<xsl:attribute name="href"><xsl:value-of select="./@rdf:resource"/></xsl:attribute><xsl:value-of select="./@rdf:resource"/></a>
|
||||
</dd>
|
||||
</xsl:template>
|
||||
<!-- RDFS links -->
|
||||
<xsl:template match="rdfs:label">
|
||||
<dt>
|
||||
<a>
|
||||
<xsl:attribute name="href"
|
||||
>http://www.w3.org/2000/01/rdf-schema#label</xsl:attribute> Label </a>
|
||||
</dt>
|
||||
<dd>
|
||||
<xsl:value-of select="."/>
|
||||
</dd>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="rdfs:comment">
|
||||
<dt>
|
||||
<a>
|
||||
<xsl:attribute name="href"
|
||||
>http://www.w3.org/2000/01/rdf-schema#comment</xsl:attribute> Comment </a>
|
||||
</dt>
|
||||
<dd>
|
||||
<xsl:value-of select="."/>
|
||||
</dd>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="rdfs:isDefinedBy">
|
||||
<dt>
|
||||
<a>
|
||||
<xsl:attribute name="href"
|
||||
>http://www.w3.org/2000/01/rdf-schema#isDefinedBy</xsl:attribute> Is Defined By
|
||||
</a>
|
||||
</dt>
|
||||
<dd>
|
||||
<a>
|
||||
<xsl:attribute name="href">
|
||||
<xsl:value-of select="./@rdf:resource"/>
|
||||
</xsl:attribute>
|
||||
<xsl:value-of select="./@rdf:resource"/>
|
||||
</a>
|
||||
</dd>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="rdfs:subClassOf">
|
||||
<dt>
|
||||
<a>
|
||||
<xsl:attribute name="href"
|
||||
>http://www.w3.org/2000/01/rdf-schema#subClassOf</xsl:attribute> Sub Class Of
|
||||
</a>
|
||||
</dt>
|
||||
<dd>
|
||||
<a>
|
||||
<xsl:attribute name="href">
|
||||
<xsl:value-of select="./@rdf:resource"/>
|
||||
</xsl:attribute>
|
||||
<xsl:value-of select="./@rdf:resource"/>
|
||||
</a>
|
||||
</dd>
|
||||
</xsl:template>
|
||||
<!-- subPropertyOf -->
|
||||
<xsl:template match="rdfs:subPropertyOf">
|
||||
<dt>
|
||||
Refines
|
||||
</dt>
|
||||
<dd>
|
||||
<a>
|
||||
<xsl:attribute name="href"><xsl:value-of select="./@rdf:resource"/></xsl:attribute><xsl:value-of select="./@rdf:resource"/></a>
|
||||
</dd>
|
||||
</xsl:template>
|
||||
<xsl:template match="rdfs:range">
|
||||
<dt>
|
||||
<a>
|
||||
<xsl:attribute name="href"
|
||||
>http://www.w3.org/2000/01/rdf-schema#range</xsl:attribute> Range </a>
|
||||
</dt>
|
||||
<dd>
|
||||
<a>
|
||||
<xsl:attribute name="href">
|
||||
<xsl:value-of select="./@rdf:resource"/>
|
||||
</xsl:attribute>
|
||||
<xsl:value-of select="./@rdf:resource"/>
|
||||
</a>
|
||||
</dd>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="rdfs:domain">
|
||||
<dt>
|
||||
<a>
|
||||
<xsl:attribute name="href"
|
||||
>http://www.w3.org/2000/01/rdf-schema#domain</xsl:attribute> Class </a>
|
||||
</dt>
|
||||
<dd>
|
||||
<a>
|
||||
<xsl:attribute name="href">
|
||||
<xsl:value-of select="./@rdf:resource"/>
|
||||
</xsl:attribute>
|
||||
<xsl:value-of select="./@rdf:resource"/>
|
||||
</a>
|
||||
</dd>
|
||||
</xsl:template>
|
||||
|
||||
<!-- DC Links -->
|
||||
<xsl:template match="dc:title">
|
||||
<dt>
|
||||
<a>
|
||||
<xsl:attribute name="href"
|
||||
>http://purl.org/dc/elements/1.1/title</xsl:attribute>Title</a>
|
||||
</dt>
|
||||
<dd>
|
||||
<xsl:value-of select="."/>
|
||||
</dd>
|
||||
</xsl:template>
|
||||
<xsl:template match="dc:creator">
|
||||
<dt>
|
||||
<a>
|
||||
<xsl:attribute name="href"
|
||||
>http://purl.org/dc/elements/1.1/creator</xsl:attribute>Creator</a>
|
||||
</dt>
|
||||
<dd>
|
||||
<xsl:value-of select="."/>
|
||||
</dd>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="dc:publisher">
|
||||
<dt>
|
||||
<a>
|
||||
<xsl:attribute name="href"
|
||||
>http://purl.org/dc/elements/1.1/publisher</xsl:attribute>Publisher</a>
|
||||
</dt>
|
||||
<dd>
|
||||
<xsl:value-of select="."/>
|
||||
</dd>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="dcterms:description">
|
||||
<dt>
|
||||
<a>
|
||||
<xsl:attribute name="href"
|
||||
>http://purl.org/dc/elements/1.1/description</xsl:attribute>Description</a>
|
||||
</dt>
|
||||
<dd>
|
||||
<xsl:value-of select="."/>
|
||||
</dd>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="dcterms:issued">
|
||||
<dt>
|
||||
<a>
|
||||
<xsl:attribute name="href"
|
||||
>http://purl.org/dc/terms/issued</xsl:attribute>Issued</a>
|
||||
</dt>
|
||||
<dd>
|
||||
<xsl:value-of select="."/>
|
||||
</dd>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="dcterms:modified">
|
||||
<dt>
|
||||
<a>
|
||||
<xsl:attribute name="href"
|
||||
>http://purl.org/dc/terms/modified</xsl:attribute>Modified</a>
|
||||
</dt>
|
||||
<dd>
|
||||
<xsl:value-of select="."/>
|
||||
</dd>
|
||||
</xsl:template>
|
||||
|
||||
|
||||
<!-- hasVersion -->
|
||||
<xsl:template match="dcterms:hasVersion">
|
||||
<dt>
|
||||
Version
|
||||
</dt>
|
||||
<dd>
|
||||
<a>
|
||||
<xsl:attribute name="href"><xsl:value-of select="./@rdf:resource"/></xsl:attribute><xsl:value-of select="./@rdf:resource"/></a>
|
||||
</dd>
|
||||
</xsl:template>
|
||||
|
||||
</xsl:stylesheet>
|
|
@ -0,0 +1,388 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<outputModel xmlns:dwc="http://rs.tdwg.org/dwc/terms/"
|
||||
xmlns:dc="http://purl.org/dc/terms/"
|
||||
xmlns="http://rs.tdwg.org/tapir/1.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://rs.tdwg.org/tapir/1.0 http://rs.tdwg.org/tapir/1.0/schema/tapir.xsd" >
|
||||
<label>
|
||||
Output Model for Darwin Compound Sample Schema
|
||||
</label>
|
||||
<documentation>
|
||||
Output Model for Darwin Compound Sample Schema
|
||||
</documentation>
|
||||
<structure>
|
||||
<schema location="http://darwincore.googlecode.com/svn/trunk/xsd/tdwg_dwc_compound_sample.xsd"/>
|
||||
</structure>
|
||||
<indexingElement path="/DarwinRecordSet/dwc:Sample"/>
|
||||
<mapping>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dc:modified">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/modified" required="true"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dc:rights">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/rights"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dc:rightsHolder">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/rightsHolder"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dc:language">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/language"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:InstitutionCode">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/InstitutionCode" required="true"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:CollectionCode">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/CollectionCode" required="true"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:CollectionID">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/CollectionID"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SampleID">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/SampleID" required="true"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:AccessConstraints">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/AccessConstraints"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:BasisOfRecord">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/BasisOfRecord" required="true"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:InformationWithheld">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/InformationWithheld"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:Generalizations">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Generalizations"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SampleDetails">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/SampleDetails"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SampleRemarks">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/SampleRemarks"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:CatalogNumber">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/CatalogNumber"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:CatalogNumberNumeric">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/CatalogNumberNumeric"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:IndividualID">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/IndividualID"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:IndividualCount">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/IndividualCount"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:FieldNotes">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/FieldNotes"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:Citation">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Citation"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:Sex">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Sex"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:LifeStage">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/LifeStage"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:ReproductiveCondition">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/ReproductiveCondition"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:EstablishmentMeans">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/EstablishmentMeans"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SampleAttributes">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/SampleAttributes"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:Preparations">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Preparations"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:Disposition">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Disposition"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:OtherCatalogNumbers">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/OtherCatalogNumbers"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:AssociatedMedia">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/AssociatedMedia"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:AssociatedReferences">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/AssociatedReferences"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:AssociatedSamples">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/AssociatedSamples"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:AssociatedSequences">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/AssociatedSequences"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:AssociatedTaxa">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/AssociatedTaxa"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:SamplingEventID">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/SamplingEventID"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:SamplingProtocol">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/SamplingProtocol"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:VerbatimCollectingDate">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/VerbatimCollectingDate"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:EarliestDateCollected">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/EarliestDateCollected"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:LatestDateCollected">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/LatestDateCollected"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:StartDayOfYear">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/StartDayOfYear"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:EndDayOfYear">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/EndDayOfYear"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:StartTimeOfDay">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/StartTimeOfDay"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:EndTimeOfDay">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/EndTimeOfDay"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:YearSampled">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/YearSampled"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:MonthOfYear">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/MonthOfYear"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:DayOfMonth">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/DayOfMonth"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:Habitat">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Habitat"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:Behavior">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Behavior"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:Collector">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Collector"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:CollectorNumber">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/CollectorNumber"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:FieldNumber">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/FieldNumber"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:SamplingEventAttributes">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/SamplingEventAttributes"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:SamplingEventRemarks">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/SamplingEventRemarks"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:SamplingLocation/dwc:SamplingLocationID">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/SamplingLocationID"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:SamplingLocation/dwc:HigherGeographyID">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/HigherGeographyID"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:SamplingLocation/dwc:HigherGeography">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/HigherGeography"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:SamplingLocation/dwc:Continent">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Continent"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:SamplingLocation/dwc:Waterbody">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/WaterBody"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:SamplingLocation/dwc:IslandGroup">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/IslandGroup"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:SamplingLocation/dwc:Island">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Island"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:SamplingLocation/dwc:Country">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Country"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:SamplingLocation/dwc:CountryCode">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/CountryCode"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:SamplingLocation/dwc:StateProvince">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/StateProvince"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:SamplingLocation/dwc:County">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/County"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:SamplingLocation/dwc:Locality">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Locality"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:SamplingLocation/dwc:VerbatimLocality">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/VerbatimLocality"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:SamplingLocation/dwc:VerbatimElevation">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/VerbatimElevation"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:SamplingLocation/dwc:MinimumElevationInMeters">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/MinimumElevationInMeters"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:SamplingLocation/dwc:MaximumElevationInMeters">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/MaximumElevationInMeters"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:SamplingLocation/dwc:VerbatimDepth">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/VerbatimDepth"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:SamplingLocation/dwc:MinimumDepthInMeters">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/MinimumDepthInMeters"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:SamplingLocation/dwc:MaximumDepthInMeters">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/MaximumDepthInMeters"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:SamplingLocation/dwc:DistanceAboveSurfaceInMetersMinimum">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/DistanceAboveSurfaceInMetersMinimum"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:SamplingLocation/dwc:DistanceAboveSurfaceInMetersMaximum">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/DistanceAboveSurfaceInMetersMaximum"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:SamplingLocation/dwc:DecimalLatitude">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/DecimalLatitude"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:SamplingLocation/dwc:DecimalLongitude">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/DecimalLongitude"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:SamplingLocation/dwc:GeodeticDatum">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/GeodeticDatum"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:SamplingLocation/dwc:CoordinateUncertaintyInMeters">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/CoordinateUncertaintyInMeters"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:SamplingLocation/dwc:CoordinatePrecision">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/CoordinatePrecision"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:SamplingLocation/dwc:PointRadiusSpatialFit">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/PointRadiusSpatialFit"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:SamplingLocation/dwc:VerbatimCoordinates">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/VerbatimCoordinates"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:SamplingLocation/dwc:VerbatimLatitude">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/VerbatimLatitude"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:SamplingLocation/dwc:VerbatimLongitude">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/VerbatimLongitude"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:SamplingLocation/dwc:GeoreferencedBy">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/GeoreferencedBy"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:SamplingLocation/dwc:GeoreferenceProtocol">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/GeoreferenceProtocol"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:SamplingLocation/dwc:VerbatimCoordinateSystem">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/VerbatimCoordinateSystem"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:SamplingLocation/dwc:GeoreferenceSources">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/GeoreferenceSources"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:SamplingLocation/dwc:GeoreferenceVerificationStatus">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/GeoreferenceVerificationStatus"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:SamplingLocation/dwc:GeoreferenceRemarks">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/GeoreferenceRemarks"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:SamplingLocation/dwc:FootprintWKT">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/FootprintWKT"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:SamplingEvent/dwc:SamplingLocation/dwc:FootprintSpatialFit">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/FootprintSpatialFit"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:Identification/dwc:IdentificationID">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/IdentificationID"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:Identification/dwc:IdentifiedBy">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/IdentifiedBy"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:Identification/dwc:DateIdentified">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/DateIdentified"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:Identification/dwc:IdentificationReferences">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/IdentificationReferences"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:Identification/dwc:IdentificationRemarks">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/IdentificationRemarks"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:Identification/dwc:PreviousIdentifications">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/PreviousIdentifications"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:Identification/dwc:IdentificationQualifier">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/IdentificationQualifier"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:Identification/dwc:TypeStatus">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/TypeStatus"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:Identification/dwc:Taxon/dwc:TaxonID">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/TaxonID"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:Identification/dwc:Taxon/dwc:ScientificName">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/ScientificName"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:Identification/dwc:Taxon/dwc:Binomial">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Binomial"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:Identification/dwc:Taxon/dwc:HigherTaxonID">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/HigherTaxonID"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:Identification/dwc:Taxon/dwc:HigherTaxon">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/HigherTaxon"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:Identification/dwc:Taxon/dwc:Kingdom">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Kingdom"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:Identification/dwc:Taxon/dwc:Phylum">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Phylum"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:Identification/dwc:Taxon/dwc:Class">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Class"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:Identification/dwc:Taxon/dwc:Order">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Order"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:Identification/dwc:Taxon/dwc:Family">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Family"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:Identification/dwc:Taxon/dwc:Genus">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Genus"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:Identification/dwc:Taxon/dwc:Subgenus">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Subgenus"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:Identification/dwc:Taxon/dwc:SpecificEpithet">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/SpecificEpithet"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:Identification/dwc:Taxon/dwc:TaxonRank">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/TaxonRank"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:Identification/dwc:Taxon/dwc:InfraspecificEpithet">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/InfraspecificEpithet"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:Identification/dwc:Taxon/dwc:ScientificNameAuthorship">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/ScientificNameAuthorship"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:Identification/dwc:Taxon/dwc:NomenclaturalCode">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/NomenclaturalCode"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:Identification/dwc:Taxon/dwc:TaxonAccordingTo">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/TaxonAccordingTo"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:Identification/dwc:Taxon/dwc:NamePublishedIn">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/NamePublishedIn"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:Identification/dwc:Taxon/dwc:TaxonomicStatus">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/TaxonomicStatus"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:Identification/dwc:Taxon/dwc:NomenclaturalStatus">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/NomenclaturalStatus"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:Identification/dwc:Taxon/dwc:AcceptedTaxonID">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/AcceptedTaxonID"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:Identification/dwc:Taxon/dwc:AcceptedTaxon">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/AcceptedTaxon"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:Identification/dwc:Taxon/dwc:BasionymID">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/BasionymID"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/dwc:Sample/dwc:Identification/dwc:Taxon/dwc:Basionym">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Basionym"/>
|
||||
</node>
|
||||
</mapping>
|
||||
</outputModel>
|
|
@ -0,0 +1,388 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<outputModel xmlns:dwc="http://rs.tdwg.org/dwc/terms/"
|
||||
xmlns:dc="http://purl.org/dc/terms/"
|
||||
xmlns="http://rs.tdwg.org/tapir/1.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://rs.tdwg.org/tapir/1.0 http://rs.tdwg.org/tapir/1.0/schema/tapir.xsd" >
|
||||
<label>
|
||||
Output Model for Simple Darwin Record Schema
|
||||
</label>
|
||||
<documentation>
|
||||
Output Model for Simple Darwin Record Schema
|
||||
</documentation>
|
||||
<structure>
|
||||
<schema location="http://darwincore.googlecode.com/svn/trunk/xsd/tdwg_dwc_simple.xsd"/>
|
||||
</structure>
|
||||
<indexingElement path="/DarwinRecordSet/DarwinRecord"/>
|
||||
<mapping>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dc:modified">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/modified" required="true"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dc:rights">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/rights"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dc:rightsHolder">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/rightsHolder"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dc:language">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/language"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:InstitutionCode">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/InstitutionCode" required="true"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:CollectionCode">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/CollectionCode" required="true"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:CollectionID">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/CollectionID"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:SampleID">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/SampleID" required="true"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:AccessConstraints">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/AccessConstraints"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:BasisOfRecord">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/BasisOfRecord" required="true"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:InformationWithheld">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/InformationWithheld"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:Generalizations">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Generalizations"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:SampleDetails">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/SampleDetails"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:SampleRemarks">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/SampleRemarks"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:CatalogNumber">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/CatalogNumber"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:CatalogNumberNumeric">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/CatalogNumberNumeric"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:IndividualID">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/IndividualID"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:IndividualCount">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/IndividualCount"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:FieldNotes">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/FieldNotes"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:Citation">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Citation"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:Sex">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Sex"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:LifeStage">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/LifeStage"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:ReproductiveCondition">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/ReproductiveCondition"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:EstablishmentMeans">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/EstablishmentMeans"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:SampleAttributes">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/SampleAttributes"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:Preparations">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Preparations"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:Disposition">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Disposition"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:OtherCatalogNumbers">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/OtherCatalogNumbers"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:AssociatedMedia">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/AssociatedMedia"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:AssociatedReferences">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/AssociatedReferences"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:AssociatedSamples">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/AssociatedSamples"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:AssociatedSequences">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/AssociatedSequences"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:AssociatedTaxa">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/AssociatedTaxa"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:SamplingEventID">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/SamplingEventID"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:SamplingProtocol">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/SamplingProtocol"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:VerbatimCollectingDate">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/VerbatimCollectingDate"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:EarliestDateCollected">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/EarliestDateCollected"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:LatestDateCollected">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/LatestDateCollected"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:StartDayOfYear">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/StartDayOfYear"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:EndDayOfYear">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/EndDayOfYear"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:StartTimeOfDay">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/StartTimeOfDay"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:EndTimeOfDay">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/EndTimeOfDay"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:YearSampled">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/YearSampled"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:MonthOfYear">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/MonthOfYear"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:DayOfMonth">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/DayOfMonth"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:Habitat">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Habitat"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:Behavior">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Behavior"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:Collector">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Collector"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:CollectorNumber">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/CollectorNumber"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:FieldNumber">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/FieldNumber"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:SamplingEventAttributes">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/SamplingEventAttributes"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:SamplingEventRemarks">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/SamplingEventRemarks"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:SamplingLocationID">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/SamplingLocationID"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:HigherGeographyID">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/HigherGeographyID"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:HigherGeography">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/HigherGeography"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:Continent">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Continent"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:Waterbody">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/WaterBody"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:IslandGroup">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/IslandGroup"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:Island">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Island"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:Country">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Country"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:CountryCode">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/CountryCode"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:StateProvince">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/StateProvince"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:County">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/County"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:Locality">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Locality"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:VerbatimLocality">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/VerbatimLocality"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:VerbatimElevation">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/VerbatimElevation"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:MinimumElevationInMeters">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/MinimumElevationInMeters"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:MaximumElevationInMeters">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/MaximumElevationInMeters"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:VerbatimDepth">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/VerbatimDepth"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:MinimumDepthInMeters">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/MinimumDepthInMeters"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:MaximumDepthInMeters">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/MaximumDepthInMeters"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:DistanceAboveSurfaceInMetersMinimum">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/DistanceAboveSurfaceInMetersMinimum"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:DistanceAboveSurfaceInMetersMaximum">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/DistanceAboveSurfaceInMetersMaximum"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:DecimalLatitude">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/DecimalLatitude"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:DecimalLongitude">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/DecimalLongitude"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:GeodeticDatum">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/GeodeticDatum"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:CoordinateUncertaintyInMeters">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/CoordinateUncertaintyInMeters"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:CoordinatePrecision">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/CoordinatePrecision"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:PointRadiusSpatialFit">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/PointRadiusSpatialFit"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:VerbatimCoordinates">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/VerbatimCoordinates"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:VerbatimLatitude">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/VerbatimLatitude"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:VerbatimLongitude">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/VerbatimLongitude"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:GeoreferencedBy">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/GeoreferencedBy"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:GeoreferenceProtocol">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/GeoreferenceProtocol"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:VerbatimCoordinateSystem">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/VerbatimCoordinateSystem"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:GeoreferenceSources">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/GeoreferenceSources"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:GeoreferenceVerificationStatus">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/GeoreferenceVerificationStatus"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:GeoreferenceRemarks">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/GeoreferenceRemarks"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:FootprintWKT">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/FootprintWKT"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:FootprintSpatialFit">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/FootprintSpatialFit"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:IdentificationID">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/IdentificationID"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:IdentifiedBy">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/IdentifiedBy"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:DateIdentified">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/DateIdentified"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:IdentificationReferences">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/IdentificationReferences"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:IdentificationRemarks">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/IdentificationRemarks"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:PreviousIdentifications">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/PreviousIdentifications"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:IdentificationQualifier">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/IdentificationQualifier"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:TypeStatus">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/TypeStatus"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:TaxonID">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/TaxonID"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:ScientificName">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/ScientificName"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:Binomial">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Binomial"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:HigherTaxonID">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/HigherTaxonID"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:HigherTaxon">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/HigherTaxon"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:Kingdom">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Kingdom"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:Phylum">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Phylum"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:Class">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Class"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:Order">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Order"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:Family">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Family"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:Genus">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Genus"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:Subgenus">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Subgenus"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:SpecificEpithet">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/SpecificEpithet"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:TaxonRank">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/TaxonRank"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:InfraspecificEpithet">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/InfraspecificEpithet"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:ScientificNameAuthorship">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/ScientificNameAuthorship"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:NomenclaturalCode">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/NomenclaturalCode"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:TaxonAccordingTo">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/TaxonAccordingTo"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:NamePublishedIn">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/NamePublishedIn"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:TaxonomicStatus">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/TaxonomicStatus"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:NomenclaturalStatus">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/NomenclaturalStatus"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:AcceptedTaxonID">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/AcceptedTaxonID"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:AcceptedTaxon">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/AcceptedTaxon"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:BasionymID">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/BasionymID"/>
|
||||
</node>
|
||||
<node path="/DarwinRecordSet/DarwinRecord/dwc:Basionym">
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Basionym"/>
|
||||
</node>
|
||||
</mapping>
|
||||
</outputModel>
|
|
@ -0,0 +1,710 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<cns>
|
||||
<schema namespace="http://rs.tdwg.org/dwc/terms/">
|
||||
<label>DarwinCore Terms</label>
|
||||
<alias>Latest Greatest Darwin</alias>
|
||||
<location>http://rs.tdwg.org/dwc/tems/tdwg_dwcterms.xsd</location>
|
||||
<concepts>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/modified">
|
||||
<alias>DateLastModified</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#dateTime</datatype>
|
||||
<doc>http://dublincore.org/documents/dcmi-terms/#terms-modified</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/language">
|
||||
<alias>Language</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://dublincore.org/documents/dcmi-terms/#terms-language</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/rights">
|
||||
<alias>Rights</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://dublincore.org/documents/dcmi-terms/#terms-rights</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/rightsHolder">
|
||||
<alias>RightsHolder</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://dublincore.org/documents/dcmi-terms/#terms-rightsHolder</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/DatasetID">
|
||||
<alias>DatasetID</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/DatasetID</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/InstitutionCode">
|
||||
<alias>InstitutionCode</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/InstitutionCode</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/CollectionCode">
|
||||
<alias>CollectionCode</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/CollectionCode</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/CollectionID">
|
||||
<alias>CollectionID</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/CollectionID</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/SampleID">
|
||||
<alias>SampleID</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/SampleID</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/BasisOfRecord">
|
||||
<alias>BasisOfRecord</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/BasisOfRecord</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/AccessConstraints">
|
||||
<alias>AccessConstraints</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/AccessConstraints</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/InformationWithheld">
|
||||
<alias>InformationWithheld</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/InformationWithheld</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Generalizations">
|
||||
<alias>Generalizations</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/Generalizations</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/SampleDetails">
|
||||
<alias>SampleDetails</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/SampleDetails</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/SampleRemarks">
|
||||
<alias>SampleRemarks</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/SampleRemarks</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/CatalogNumber">
|
||||
<alias>CatalogNumber</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/CatalogNumber</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/CatalogNumberNumeric">
|
||||
<alias>CatalogNumberNumeric</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#decimal</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/CatalogNumberNumeric</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/IndividualID">
|
||||
<alias>IndividualID</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/IndividualID</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/IndividualCount">
|
||||
<alias>IndividualCount</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#decimal</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/IndividualCount</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Citation">
|
||||
<alias>Citation</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/Citation</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Sex">
|
||||
<alias>Sex</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/Sex</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/LifeStage">
|
||||
<alias>LifeStage</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/LifeStage</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/ReproductiveCondition">
|
||||
<alias>ReproductiveCondition</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/ReproductiveCondition</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/EstablishmentMeans">
|
||||
<alias>EstablishmentMeans</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/EstablishmentMeans</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/SampleAttributes">
|
||||
<alias>SampleAttributes</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/SampleAttributes</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Preparations">
|
||||
<alias>Preparations</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/Preparations</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Disposition">
|
||||
<alias>Disposition</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/Disposition</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/OtherCatalogNumbers">
|
||||
<alias>OtherCatalogNumbers</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/OtherCatalogNumbers</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/AssociatedMedia">
|
||||
<alias>AssociatedMedia</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#anyURI</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/AssociatedMedia</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/AssociatedReferences">
|
||||
<alias>AssociatedReferences</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/AssociatedReferences</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/AssociatedSamples">
|
||||
<alias>AssociatedSamples</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/AssociatedSamples</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/AssociatedSequences">
|
||||
<alias>AssociatedSequences</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/AssociatedSequences</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/AssociatedTaxa">
|
||||
<alias>AssociatedTaxa</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/AssociatedTaxa</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/SamplingEventID">
|
||||
<alias>SamplingEventID</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/SamplingEventID</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/SamplingProtocol">
|
||||
<alias>SamplingProtocol</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/SamplingProtocol</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/VerbatimCollectingDate">
|
||||
<alias>VerbatimCollectingDate</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/VerbatimCollectingDate</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/EarliestDateCollected">
|
||||
<alias>EarliestDateCollected</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/EarliestDateCollected</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/LatestDateCollected">
|
||||
<alias>LatestDateCollected</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/LatestDateCollected</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/StartDayOfYear">
|
||||
<alias>StartDayOfYear</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#decimal</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/StartDayOfYear</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/EndDayOfYear">
|
||||
<alias>EndDayOfYear</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#decimal</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/EndDayOfYear</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/StartTimeOfDay">
|
||||
<alias>StartTimeOfDay</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#decimal</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/StartTimeOfDay</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/EndTimeOfDay">
|
||||
<alias>EndTimeOfDay</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#decimal</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/EndTimeOfDay</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/YearSampled">
|
||||
<alias>YearSampled</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#decimal</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/YearSampled</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/MonthOfYear">
|
||||
<alias>MonthOfYear</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#decimal</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/MonthOfYear</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/DayOfMonth">
|
||||
<alias>DayOfMonth</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#decimal</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/DayOfMonth</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Habitat">
|
||||
<alias>Habitat</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#boolean</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/Habitat</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Behavior">
|
||||
<alias>Behavior</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#boolean</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/Behavior</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Collector">
|
||||
<alias>Collector</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/Collector</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/CollectorNumber">
|
||||
<alias>CollectorNumber</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/CollectorNumber</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/FieldNumber">
|
||||
<alias>FieldNumber</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/FieldNumber</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/FieldNotes">
|
||||
<alias>FieldNotes</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/FieldNotes</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/SamplingEventAttributes">
|
||||
<alias>SamplingEventAttributes</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/SamplingEventAttributes</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/SamplingEventRemarks">
|
||||
<alias>SamplingEventRemarks</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/SamplingEventRemarks</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/SamplingLocationID">
|
||||
<alias>SamplingLocationID</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/SamplingLocationID</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/HigherGeographyID">
|
||||
<alias>HigherGeographyID</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/HigherGeographyID</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/HigherGeography">
|
||||
<alias>HigherGeography</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/HigherGeography</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Continent">
|
||||
<alias>Continent</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/Continent</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/WaterBody">
|
||||
<alias>WaterBody</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/WaterBody</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/IslandGroup">
|
||||
<alias>IslandGroup</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/IslandGroup</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Island">
|
||||
<alias>Island</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/Island</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Country">
|
||||
<alias>Country</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/Country</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/CountryCode">
|
||||
<alias>CountryCode</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/CountryCode</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/StateProvince">
|
||||
<alias>StateProvince</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/StateProvince</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/County">
|
||||
<alias>County</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/County</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Locality">
|
||||
<alias>Locality</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/Locality</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/VerbatimLocality">
|
||||
<alias>VerbatimLocality</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/VerbatimLocality</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/VerbatimElevation">
|
||||
<alias>VerbatimElevation</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/VerbatimElevation</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/MinimumElevationInMeters">
|
||||
<alias>MinimumElevationInMeters</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#double</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/MinimumElevationInMeters</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/MaximumElevationInMeters">
|
||||
<alias>MaximumElevationInMeters</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#double</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/MaximumElevationInMeters</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/VerbatimDepth">
|
||||
<alias>VerbatimDepth</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/VerbatimDepth</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/MinimumDepthInMeters">
|
||||
<alias>MinimumDepthInMeters</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#double</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/MinimumDepthInMeters</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/MaximumDepthInMeters">
|
||||
<alias>MaximumDepthInMeters</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#double</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/MaximumDepthInMeters</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/DistanceAboveSurfaceInMetersMinimum">
|
||||
<alias>DistanceAboveSurfaceInMetersMinimum</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#double</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/DistanceAboveSurfaceInMetersMinimum</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/DistanceAboveSurfaceInMetersMaximum">
|
||||
<alias>DistanceAboveSurfaceInMetersMaximum</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#double</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/DistanceAboveSurfaceInMetersMaximum</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/DecimalLatitude">
|
||||
<alias>DecimalLatitude</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#double</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/DecimalLatitude</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/DecimalLongitude">
|
||||
<alias>DecimalLongitude</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#double</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/DecimalLongitude</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/GeodeticDatum">
|
||||
<alias>GeodeticDatum</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/GeodeticDatum</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/CoordinateUncertaintyInMeters">
|
||||
<alias>CoordinateUncertaintyInMeters</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#double</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/CoordinateUncertaintyInMeters</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/CoordinatePrecision">
|
||||
<alias>CoordinatePrecision</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#double</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/CoordinatePrecision</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/PointRadiusSpatialFit">
|
||||
<alias>PointRadiusSpatialFit</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#double</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/PointRadiusSpatialFit</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/VerbatimCoordinates">
|
||||
<alias>VerbatimCoordinates</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/VerbatimCoordinates</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/VerbatimLatitude">
|
||||
<alias>VerbatimLatitude</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/VerbatimLatitude</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/VerbatimLongitude">
|
||||
<alias>VerbatimLongitude</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/VerbatimLongitude</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/GeoreferencedBy">
|
||||
<alias>GeoreferencedBy</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/GeoreferencedBy</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/GeoreferenceProtocol">
|
||||
<alias>GeoreferenceProtocol</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/GeoreferenceProtocol</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/VerbatimCoordinateSystem">
|
||||
<alias>VerbatimCoordinateSystem</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/VerbatimCoordinateSystem</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/GeoreferenceSources">
|
||||
<alias>GeoreferenceSources</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/GeoreferenceSources</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/GeoreferenceVerificationStatus">
|
||||
<alias>GeoreferenceVerificationStatus</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/GeoreferenceVerificationStatus</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/GeoreferenceRemarks">
|
||||
<alias>GeoreferenceRemarks</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/GeoreferenceRemarks</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/FootprintWKT">
|
||||
<alias>FootprintWKT</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/FootprintWKT</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/FootprintSpatialFit">
|
||||
<alias>FootprintSpatialFit</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/FootprintSpatialFit</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/SamplingLocationRemarks">
|
||||
<alias>SamplingLocationRemarks</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/SamplingLocationRemarks</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/TaxonID">
|
||||
<alias>TaxonID</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/TaxonID</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/ScientificName">
|
||||
<alias>ScientificName</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/ScientificName</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Binomial">
|
||||
<alias>Binomial</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/Binomial</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/HigherTaxonID">
|
||||
<alias>HigherTaxonID</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/HigherTaxonID</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/HigherTaxon">
|
||||
<alias>HigherTaxon</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/HigherTaxon</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Kingdom">
|
||||
<alias>Kingdom</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/Kingdom</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Phylum">
|
||||
<alias>Phylum</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/Phylum</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Class">
|
||||
<alias>Class</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/Class</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Order">
|
||||
<alias>Order</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/Order</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Family">
|
||||
<alias>Family</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/Family</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Genus">
|
||||
<alias>Genus</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/Genus</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Subgenus">
|
||||
<alias>Subgenus</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/Subgenus</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/SpecificEpithet">
|
||||
<alias>SpecificEpithet</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/SpecificEpithet</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/TaxonRank">
|
||||
<alias>TaxonRank</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/TaxonRank</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/InfraspecificEpithet">
|
||||
<alias>InfraspecificEpithet</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/InfraspecificEpithet</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/ScientificNameAuthorship">
|
||||
<alias>ScientificNameAuthorship</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/ScientificNameAuthorship</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/NomenclaturalCode">
|
||||
<alias>NomenclaturalCode</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/NomenclaturalCode</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/TaxonAccordingTo">
|
||||
<alias>TaxonAccordingTo</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/TaxonAccordingTo</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/NamePublishedIn">
|
||||
<alias>NamePublishedIn</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/NamePublishedIn</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/TaxonomicStatus">
|
||||
<alias>TaxonomicStatus</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/TaxonomicStatus</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/NomenclaturalStatus">
|
||||
<alias>NomenclaturalStatus</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/NomenclaturalStatus</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/AcceptedTaxonID">
|
||||
<alias>AcceptedTaxonID</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/AcceptedTaxonID</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/AcceptedTaxon">
|
||||
<alias>AcceptedTaxon</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/AcceptedTaxon</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/BasionymID">
|
||||
<alias>BasionymID</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/BasionymID</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/Basionym">
|
||||
<alias>Basionym</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/Basionym</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/IdentificationID">
|
||||
<alias>IdentificationID</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/IdentificationID</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/IdentifiedBy">
|
||||
<alias>IdentifiedBy</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/IdentifiedBy</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/DateIdentified">
|
||||
<alias>DateIdentified</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#dateTime</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/DateIdentified</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/IdentificationReferences">
|
||||
<alias>IdentificationReferences</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/IdentificationReferences</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/IdentificationRemarks">
|
||||
<alias>IdentificationRemarks</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/IdentificationRemarks</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/PreviousIdentifications">
|
||||
<alias>PreviousIdentifications</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/PreviousIdentifications</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/IdentificationQualifier">
|
||||
<alias>IdentificationQualifier</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/IdentificationQualifier</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/TypeStatus">
|
||||
<alias>TypeStatus</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/TypeStatus</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/RelatedResourceID">
|
||||
<alias>RelatedResourceID</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/RelatedResourceID</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/RelatedBasisOfRecord">
|
||||
<alias>RelatedBasisOfRecord</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/RelatedBasisOfRecord</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/RelationshipOfResource">
|
||||
<alias>RelationshipOfResource</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/RelationshipOfResource</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/RelationshipRemarks">
|
||||
<alias>RelationshipRemarks</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/RelationshipRemarks</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/SampleAttributeType ">
|
||||
<alias>SampleAttributeType </alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/SampleAttributeType </doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/SampleAttributeValue">
|
||||
<alias>SampleAttributeValue</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#double</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/SampleAttributeValue</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/SampleAttributeError">
|
||||
<alias>SampleAttributeError</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#double</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/SampleAttributeError</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/SampleAttributeUnit">
|
||||
<alias>SampleAttributeUnit</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/SampleAttributeUnit</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/SampleAttibuteRemarks">
|
||||
<alias>SampleAttibuteRemarks</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/SampleAttibuteRemarks</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/EventAttributeID">
|
||||
<alias>EventAttributeID</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/EventAttributeID</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/EventAttributeType">
|
||||
<alias>EventAttributeType</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/EventAttributeType</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/EventAttributeValue">
|
||||
<alias>EventAttributeValue</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#double</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/EventAttributeValue</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/EventAttributeError">
|
||||
<alias>EventAttributeError</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#double</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/EventAttributeError</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/EventAttributeUnit">
|
||||
<alias>EventAttributeUnit</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/EventAttributeUnit</doc>
|
||||
</concept>
|
||||
<concept id="http://rs.tdwg.org/dwc/terms/EventAttributeRemarks">
|
||||
<alias>EventAttributeRemarks</alias>
|
||||
<datatype>http://www.w3.org/2001/XMLSchema#string</datatype>
|
||||
<doc>http://wiki.tdwg.org/twiki/bin/view/DarwinCore/terms/EventAttributeRemarks</doc>
|
||||
</concept>
|
||||
</concepts>
|
||||
</schema>
|
||||
</cns>
|
|
@ -0,0 +1,410 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<mappingReferences for="http://rs.tdwg.org/dwc/terms/">
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/SampleID">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/dwcore/GlobalUniqueIdentifier"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/InformationWithheld">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/dwcore/InformationWithheld"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/SampleDetails">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/dwcore/RelatedInformation"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/SampleRemarks">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/dwcore/Remarks"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/modified">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/dwcore/DateLastModified"/>
|
||||
<concept id="http://digir.net/schema/conceptual/darwin/2003/1.0/DateLastModified"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/InstitutionCode">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/dwcore/InstitutionCode"/>
|
||||
<concept id="http://digir.net/schema/conceptual/darwin/2003/1.0/InstitutionCode"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/CollectionCode">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/dwcore/CollectionCode"/>
|
||||
<concept id="http://digir.net/schema/conceptual/darwin/2003/1.0/CollectionCode"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/CatalogNumber">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/dwcore/CatalogNumber"/>
|
||||
<concept id="http://digir.net/schema/conceptual/darwin/2003/1.0/CatalogNumber"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/CatalogNumberNumeric">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/curatorial/CatalogNumberNumeric"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/ScientificName">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/dwcore/ScientificName"/>
|
||||
<concept id="http://digir.net/schema/conceptual/darwin/2003/1.0/ScientificName"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/BasisOfRecord">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/dwcore/BasisOfRecord"/>
|
||||
<concept id="http://digir.net/schema/conceptual/darwin/2003/1.0/BasisOfRecord"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/HigherTaxon">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/dwcore/HigherTaxon"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/Kingdom">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/dwcore/Kingdom"/>
|
||||
<concept id="http://digir.net/schema/conceptual/darwin/2003/1.0/Kingdom"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/Phylum">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/dwcore/Phylum"/>
|
||||
<concept id="http://digir.net/schema/conceptual/darwin/2003/1.0/Phylum"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/Class">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/dwcore/Class"/>
|
||||
<concept id="http://digir.net/schema/conceptual/darwin/2003/1.0/Class"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/Order">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/dwcore/Order"/>
|
||||
<concept id="http://digir.net/schema/conceptual/darwin/2003/1.0/Order"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/Family">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/dwcore/Family"/>
|
||||
<concept id="http://digir.net/schema/conceptual/darwin/2003/1.0/Family"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/Genus">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/dwcore/Genus"/>
|
||||
<concept id="http://digir.net/schema/conceptual/darwin/2003/1.0/Genus"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/SpecificEpithet">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/dwcore/SpecificEpithet"/>
|
||||
<concept id="http://digir.net/schema/conceptual/darwin/2003/1.0/Species"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/TaxonRank">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/dwcore/InfraspecificRank"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/InfraspecificEpithet">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/dwcore/InfraspecificEpithet"/>
|
||||
<concept id="http://digir.net/schema/conceptual/darwin/2003/1.0/Subspecies"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/ScientificNameAuthorship">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/dwcore/AuthorYearOfScientificName"/>
|
||||
<concept id="http://digir.net/schema/conceptual/darwin/2003/1.0/ScientificNameAuthor"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/NomenclaturalCode">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/dwcore/NomenclaturalCode"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/IdentificationQualifier">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/dwcore/IdentificationQualifier"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/Collector">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/dwcore/Collector"/>
|
||||
<concept id="http://digir.net/schema/conceptual/darwin/2003/1.0/Collector"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/SamplingProtocol">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/dwcore/CollectingMethod"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/EarliestDateCollected">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/dwcore/EarliestDateCollected"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/LatestDateCollected">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/dwcore/LatestDateCollected"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/StartDayOfYear">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/dwcore/DayOfYear"/>
|
||||
<concept id="http://digir.net/schema/conceptual/darwin/2003/1.0/JulianDay"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/HigherGeography">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/dwcore/HigherGeography"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/Continent">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/dwcore/Continent"/>
|
||||
<concept id="http://digir.net/schema/conceptual/darwin/2003/1.0/ContinentOcean"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/WaterBody">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/dwcore/WaterBody"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/IslandGroup">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/dwcore/IslandGroup"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/Island">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/dwcore/Island"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/Country">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/dwcore/Country"/>
|
||||
<concept id="http://digir.net/schema/conceptual/darwin/2003/1.0/Country"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/StateProvince">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/dwcore/StateProvince"/>
|
||||
<concept id="http://digir.net/schema/conceptual/darwin/2003/1.0/StateProvince"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/County">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/dwcore/County"/>
|
||||
<concept id="http://digir.net/schema/conceptual/darwin/2003/1.0/County"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/Locality">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/dwcore/Locality"/>
|
||||
<concept id="http://digir.net/schema/conceptual/darwin/2003/1.0/Locality"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/MinimumElevationInMeters">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/dwcore/MinimumElevationInMeters"/>
|
||||
<concept id="http://digir.net/schema/conceptual/darwin/2003/1.0/MinimumElevation"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/MaximumElevationInMeters">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/dwcore/MaximumElevationInMeters"/>
|
||||
<concept id="http://digir.net/schema/conceptual/darwin/2003/1.0/MaximumElevation"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/MinimumDepthInMeters">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/dwcore/MinimumDepthInMeters"/>
|
||||
<concept id="http://digir.net/schema/conceptual/darwin/2003/1.0/MinimumDepth"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/MaximumDepthInMeters">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/dwcore/MaximumDepthInMeters"/>
|
||||
<concept id="http://digir.net/schema/conceptual/darwin/2003/1.0/MaximumDepth"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/Sex">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/dwcore/Sex"/>
|
||||
<concept id="http://digir.net/schema/conceptual/darwin/2003/1.0/Sex"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/LifeStage">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/dwcore/LifeStage"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/SampleAttributes">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/dwcore/Attributes"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/IdentifiedBy">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/curatorial/IdentifiedBy"/>
|
||||
<concept id="http://digir.net/schema/conceptual/darwin/2003/1.0/IdentifiedBy"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/DateIdentified">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/curatorial/DateIdentified"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/TypeStatus">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/curatorial/TypeStatus"/>
|
||||
<concept id="http://digir.net/schema/conceptual/darwin/2003/1.0/TypeStatus"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/CollectorNumber">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/curatorial/CollectorNumber"/>
|
||||
<concept id="http://digir.net/schema/conceptual/darwin/2003/1.0/CollectorNumber"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/FieldNumber">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/curatorial/FieldNumber"/>
|
||||
<concept id="http://digir.net/schema/conceptual/darwin/2003/1.0/FieldNumber"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/FieldNotes">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/curatorial/FieldNotes"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/VerbatimCollectingDate">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/curatorial/VerbatimCollectingDate"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/VerbatimElevation">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/curatorial/VerbatimElevation"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/VerbatimDepth">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/curatorial/VerbatimDepth"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/Preparations">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/curatorial/Preparations"/>
|
||||
<concept id="http://digir.net/schema/conceptual/darwin/2003/1.0/PreparationType"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/Disposition">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/curatorial/Disposition"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/IndividualCount">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/curatorial/IndividualCount"/>
|
||||
<concept id="http://digir.net/schema/conceptual/darwin/2003/1.0/IndividualCount"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/OtherCatalogNumbers">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/curatorial/OtherCatalogNumbers"/>
|
||||
<concept id="http://digir.net/schema/conceptual/darwin/2003/1.0/PreviousCatalogNumber"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/AssociatedSequences">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/curatorial/GenBankNumber"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/AssociatedSamples">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/curatorial/RelatedCatalogedItems"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/DecimalLongitude">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/geospatial/DecimalLongitude"/>
|
||||
<concept id="http://digir.net/schema/conceptual/darwin/2003/1.0/Longitude"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/DecimalLatitude">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/geospatial/DecimalLatitude"/>
|
||||
<concept id="http://digir.net/schema/conceptual/darwin/2003/1.0/Latitude"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/GeodeticDatum">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/geospatial/GeodeticDatum"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/CoordinateUncertaintyInMeters">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/geospatial/CoordinateUncertaintyInMeters"/>
|
||||
<concept id="http://digir.net/schema/conceptual/darwin/2003/1.0/CoordinatePrecision"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/PointRadiusSpatialFit">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/geospatial/PointRadiusSpatialFit"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/FootprintWKT">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/geospatial/FootprintSpatialFit"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/VerbatimCoordinates">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/geospatial/VerbatimCoordinates"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/VerbatimLatitude">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/geospatial/VerbatimLatitude"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/VerbatimLongitude">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/geospatial/VerbatimLongitude"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/VerbatimCoordinateSystem">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/geospatial/VerbatimCoordinateSystem"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/GeoreferenceProtocol">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/geospatial/GeoreferenceProtocol"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/GeoreferenceSources">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/geospatial/GeoreferenceSources"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/GeoreferenceVerificationStatus">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/geospatial/GeoreferenceVerificationStatus"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
<baseConcept id="http://rs.tdwg.org/dwc/terms/GeoreferenceRemarks">
|
||||
<ref>
|
||||
<concept id="http://rs.tdwg.org/dwc/geospatial/GeoreferenceRemarks"/>
|
||||
</ref>
|
||||
</baseConcept>
|
||||
</mappingReferences>
|
|
@ -0,0 +1,47 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--<?xml-stylesheet type="text/xsl" href="human.xsl"?>-->
|
||||
<!DOCTYPE rdf:RDF [
|
||||
<!ENTITY rdfns 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'>
|
||||
<!ENTITY rdfsns 'http://www.w3.org/2000/01/rdf-schema#'>
|
||||
<!ENTITY dctermsns 'http://purl.org/dc/terms/'>
|
||||
]>
|
||||
<rdf:RDF
|
||||
xmlns:dcterms="http://purl.org/dc/terms/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
|
||||
<
|
||||
rdf:Description rdf:about="http://rs.tdwg.org/dwc/terms/attributes">
|
||||
<dcterms:title xml:lang="en-US">Darwin Core attributes to describe terms in the http://rs.tdwg.org/dwc/terms/ (dwcterms) namespace</dcterms:title>
|
||||
<rdfs:comment>The attributes here are those not found in tdwg/Common, dcterms, rdf, or rdfs, but that are required to fully describe the terms in the dwcterms namespace.</rdfs:comment>
|
||||
<dcterms:publisher xml:lang="en-US">BiodiversityInformation Standards (TDWG)</dcterms:publisher>
|
||||
<dcterms:modified>2009-01-25</dcterms:modified>
|
||||
</rdf:Description>
|
||||
|
||||
<!-- attribute RDF goes here -->
|
||||
|
||||
<!-- status -->
|
||||
<rdf:Description rdf:ID="status" rdf:about="http://rs.tdwg.org/dwc/terms/attributes/status">
|
||||
<rdfs:label xml:lang="en-US">Status</rdfs:label>
|
||||
<dcterms:description xml:lang="en-US">Used to indicate if the term is recommended for use or if it is only of historical significance.</dcterms:description>
|
||||
<rdfs:comment>Values for this term should be either "recommended" or "historical".</rdfs:comment>
|
||||
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/attribute"/>
|
||||
<dcterms:issued>2009-01-25</dcterms:issued>
|
||||
<dcterms:modified>2009-01-25</dcterms:modified>
|
||||
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
||||
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/attribute#status"/>
|
||||
</rdf:Description>
|
||||
|
||||
<!-- decision -->
|
||||
<rdf:Description rdf:ID="decision" rdf:about="http://rs.tdwg.org/dwc/terms/attributes/decision">
|
||||
<rdfs:label xml:lang="en-US">Decision</rdfs:label>
|
||||
<dcterms:description xml:lang="en-US">Used to reference the formal decision that resulted in this version of the term.</dcterms:description>
|
||||
<rdfs:comment>Example: "http://rs.tdwg.org/dwc/terms/history/decisions/#Decision-2009-01-20_1"</rdfs:comment>
|
||||
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/attribute"/>
|
||||
<dcterms:issued>2009-01-25</dcterms:issued>
|
||||
<dcterms:modified>2009-01-25</dcterms:modified>
|
||||
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
||||
<dcterms:hasVersion rdf:resource="http://rs.tdwg.org/dwc/terms/attribute#decision"/>
|
||||
</rdf:Description>
|
||||
|
||||
<!-- end attribute RDF -->
|
||||
</rdf:RDF>
|
After Width: | Height: | Size: 18 KiB |
After Width: | Height: | Size: 8.6 KiB |
After Width: | Height: | Size: 16 KiB |
After Width: | Height: | Size: 21 KiB |
|
@ -0,0 +1,626 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
|
||||
<title>Darwin Core Text Guidelines</title>
|
||||
<link rel="schema.DwC" href="http://rs.tdwg.org/dwc/"/>
|
||||
<meta name="DC.title" content="Darwin Core Text Guidelines"/>
|
||||
<meta name="DC.description" content="Guidelines for implementing Darwin Core in XML."/>
|
||||
<meta name="DC.subject" content="biodiversity, standards"/>
|
||||
<meta name="DC.creator" content="Darwin Core Task Group"/>
|
||||
<meta name="DC.contributor" content="John Wieczorek (MVZ) <tuco@berkeley.edu>"/>
|
||||
<meta name="DC.contributor" content="Markus Döring (GBIF) <mdoering@gbif.org>"/>
|
||||
<meta name="DC.contributor" content="Renato De Giovanni (CRIA) <renato@cria.org.br>"/>
|
||||
<meta name="DC.contributor" content="Tim Robertson (GBIF) <trobertson@gbif.org>"/>
|
||||
<meta name="DC.contributor" content="Dave Vieglais (KUNHM) <vieglais@ku.edu>"/>
|
||||
<meta name="DC.contributor" content="Stan Blum (CAS) <sblum@calacademy.org>"/>
|
||||
<meta name="DC.modified" content="2009-02-12"/>
|
||||
<meta name="DC.dateAccepted" content="2009-02-12"/>
|
||||
<meta name="DC.format" content="text/html"/>
|
||||
<meta name="DC.identifier" content="http://rs.tdwg.org/dwc/terms/xsd/guide/2009-02-12"/>
|
||||
<meta name="DC.publisher" content="Biodiversity Information Standards TDWG"/>
|
||||
<meta name="DC.rights" content=""/>
|
||||
<meta name="DC.accessRights" content="public"/>
|
||||
<meta name="DC.bibliographicCitation" content="Darwin Core Text Guidelines. 2009"/>
|
||||
<meta name="DC.hasPart" content="http://rs.tdwg.org/dwc/xsd/tdwg_simpledarwincore.xsd"/>
|
||||
<meta name="DC.isReplacedBy" content=""/>
|
||||
<meta name="DC.replaces" content=""/>
|
||||
<meta name="DC.language" content="en"/>
|
||||
<link rel="meta" href="http://www.tdwg.org/"/>
|
||||
<link rel="stylesheet" href="../../../DarwinCore_files/default.css" type="text/css"/>
|
||||
<script src="../../../DarwinCore_files/default.js" type="text/javascript"></script>
|
||||
</HEAD>
|
||||
<BODY>
|
||||
<DIV class="header">
|
||||
|
||||
<TABLE width="100%" cellspacing="0" cellpadding="0" bgcolor="#617394">
|
||||
<TBODY><TR>
|
||||
<TD width="70"><A href="http://www.tdwg.org"><IMG src="../../../DarwinCore_files/TDWGlogo_Twiki.gif" width="150" height="70" alt="Biodiversity Information Standards (TDWG) logo"></A></TD>
|
||||
<TD width="100%" height="70" align="right" valign="top">
|
||||
</TABLE>
|
||||
|
||||
<H1>Darwin Core Text Guidelines</H1>
|
||||
<P>
|
||||
<TABLE cellspacing="0" class="docinfo">
|
||||
<TBODY>
|
||||
<TR>
|
||||
<TH>Title:</TH>
|
||||
<TD>Darwin Core Text Guidelines</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Date Issued:</TH>
|
||||
<TD>2009-02-12</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Abstract:</TH>
|
||||
<TD>Guidelines for the implementation of Darwin Core in XML.</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Contributors:</TH>
|
||||
<TD>John Wieczorek (MVZ)<tuco@berkeley.edu>, Markus Döring (GBIF)<mdoering@gbif.org>, Renato De Giovanni (CRIA)<renato@cria.org.br>, Tim Robertson (GBIF)<trobertson@gbif.org>, Dave Vieglais (KUNHM)<vieglais@ku.edu>, Stan Blum (CAS)<sblum@calacademy.org></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Legal:</TH>
|
||||
<TD>This document is governed by the standard legal, copyright, licensing provisions and disclaimers issued by the Taxonomic Databases Working Group.</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Part of TDWG Standard:</TH>
|
||||
<TD>***URL to DwC Standard*** goes here</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Creator:</TH>
|
||||
<TD>Darwin Core Task Group</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Identifier:</TH>
|
||||
<TD><A href="http://rs.tdwg.org/dwc/terms/xsd/guide/2009-02-12/">http://rs.tdwg.org/dwc/terms/xsd/guide/2009-02-12/</A></TD>
|
||||
</TR>
|
||||
<TR><TH>Latest Version:</TH>
|
||||
<TD><A href="http://rs.tdwg.org/dwc/terms/xsd/guide/">http://rs.tdwg.org/dwc/terms/xsd/guide/</A></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Replaces:</TH>
|
||||
<TD>Not applicable</A></TD>
|
||||
</TR>
|
||||
<TR><TH>Replaced By:</TH>
|
||||
<TD>Not applicable</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Translations:</TH>
|
||||
<TD><A href="http://rs.tdwg.org/dwc/translations/">http://rs.tdwg.org/dwc/translations/</A></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Document Status:</TH>
|
||||
<TD>This is a TDWG Request for Comment.</TD>
|
||||
</TR>
|
||||
</TBODY></TABLE>
|
||||
|
||||
<H2>Table of Contents</H2>
|
||||
<P>
|
||||
<TABLE width="95%" border="0" align="center"><TBODY>
|
||||
<TR><TD width="100%">1. <a href="#introduction">Introduction</a></TD></TR>
|
||||
<TR><TD width="100%">2. <a href="#references">References</a></TD></TR>
|
||||
<TR><TD width="100%">3. <a href="#terminology">Terminology</a></TD></TR>
|
||||
<TR><TD width="100%">4. <a href="#general">General implementation recommendations</a></TD></TR>
|
||||
</TBODY></TABLE
|
||||
|
||||
<A name="introduction" id="introduction"></A>
|
||||
<H2>1. Introduction</H2>
|
||||
<P>
|
||||
This document provides guidelines for the description of Darwin Core data residing in <em>fielded text</em> files (e.g. comma separated values,
|
||||
tab delimited files etc.) by means of providing an XML metafile.<br/>
|
||||
<img src="images/usage.png"></img><br/>
|
||||
</P>
|
||||
|
||||
<h3>1.1 XML versus <EM>Fielded Text</EM></h3>
|
||||
<p>
|
||||
Many resources exist on the web describing the advantages of XML (<a href="http://en.wikipedia.org/wiki/XML">http://en.wikipedia.org/wiki/XML</a>) over less structured content such as <em>fielded text</em>.
|
||||
These guidelines <b>do not</b> promote the use of <EM>Fielded Text</EM> over XML for data files, but rather provide recommendations for how to handle such data files when necessary.
|
||||
<br/>
|
||||
2 such scenarios might be
|
||||
<ul>
|
||||
<li>The transfer of large numbers of Darwin Core <i>simple</i> records from one database to another.
|
||||
Typically databases are very efficient at producing and consuming (e.g.) <em>Tab file</em> output.</li>
|
||||
<li>The description of legacy data existing in a <em>fielded text</em> format, such that it might be automatically understood and loaded into another system.
|
||||
It could be that this system would then re-serve the data in another format such as XML.</li>
|
||||
</ul>
|
||||
</p>
|
||||
|
||||
<h3>1.2 Existing Solution</h3>
|
||||
<p>
|
||||
Proposed standards exist for similar XML metafiles to describe <EM>fielded text</EM> files, such as the <a href="http://www.fieldedtext.org/">FieldedText</a> standard. The FieldedText standard aims to offer description of any
|
||||
<EM>fielded text</EM> file including all possible permutations of content. While beneficial to the publisher, this flexibility provides significant challenges to the consumer due to the diverse options that may exist.
|
||||
</p>
|
||||
|
||||
<h3>1.3 Example Metafile Content</h3>
|
||||
A simple comma seperated values data file of the following form:
|
||||
<PRE class="example">
|
||||
ID,ScientificName,IndividualCount
|
||||
123,"Cryptantha gypsophila Reveal & C.R. Broome",12
|
||||
124,"Buxbaumia piperi",2
|
||||
</PRE>
|
||||
can be described with the following illustrative Darwin Core metafile (Namespaces omitted for example):
|
||||
<PRE class="example">
|
||||
<archive fileRoot="http://data.gbif.org/download/">
|
||||
<file
|
||||
rowType="http://rs.tdwg.org/dwc/text/DarwinRecord"
|
||||
location="specimens.csv"
|
||||
ignoreHeaderLines="1">
|
||||
<field index="0" term="http://rs.tdwg.org/dwc/terms/CatalogNumber" type="xs:integer"/>
|
||||
<field index="1" term="http://rs.tdwg.org/dwc/terms/ScientificName" type="xs:string"/>
|
||||
<field index="2" term="http://rs.tdwg.org/dwc/terms/IndividualCount" type="xs:integer"/>
|
||||
<!-- A constant value has no index, but applies to all rows -->
|
||||
<field term="http://rs.tdwg.org/dwc/terms/DatasetID" type="xs:string" default="urn:lsid:tim.lsid.tdwg.org:collections:1"/>
|
||||
</file>
|
||||
</archive>
|
||||
</pre>
|
||||
</p>
|
||||
|
||||
|
||||
<A name="references" id="references"></A>
|
||||
<H2>2. References</H2>
|
||||
<TABLE width="95%" border="0" align="center">
|
||||
<TBODY>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="DCTERMS">[DCTERMS]</A></TD>
|
||||
<TD width="40%"><A href="http://dublincore.org/documents/dcmi-terms/">http://dublincore.org/documents/dcmi-terms/</A></TD>
|
||||
<TD width="50%">Dublin Core Metadata terms.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="FIELDEDTEXT"></A>[FIELDEDTEXT]</TD>
|
||||
<TD width="40%"><A href="http://www.fieldedtext.org/">http://www.fieldedtext.org/</A></TD>
|
||||
<TD width="50%">Fielded Text proposed standard.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="HISTORY">[HISTORY]</A></TD>
|
||||
<TD width="40%"><A href="../../history/index.htm">http://rs.tdwg.org/dwc/terms/history/</A></TD>
|
||||
<TD width="50%">Complete historical reference to Darwin Core terms.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="NAMESPACEPOLICY">[NAMESPACEPOLICY]</A></TD>
|
||||
<TD width="40%"><A href="../../namespace/index.htm">http://rs.tdwg.org/dwc/terms/namespace/</A></TD>
|
||||
<TD width="50%">Policy governing Darwin Core terms.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="TERMS">[TERMS]</A></TD>
|
||||
<TD width="40%"><A href="../../index.htm">http://rs.tdwg.org/dwc/terms/</A></TD>
|
||||
<TD width="50%">Quick reference to recommended Darwin Core terms.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="TEXTSCHEMA">[TEXTSCHEMA]</A></TD>
|
||||
<TD width="40%"><A href="../../../text/tdwg_dwc_text.xsd">http://rs.tdwg.org/dwc/terms/xsd/tdwg_dwc_text.xsd</A></TD>
|
||||
<TD width="50%">Simple Darwin Core Text schema.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="VERSIONS"></A>[VERSIONS]</TD>
|
||||
<TD width="40%"><A href="../../history/versions/index.htm">http://rs.tdwg.org/dwc/terms/history/versions/</A></TD>
|
||||
<TD width="50%">Reference for mapping historical Darwin Core terms to the current recommended terms.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="XML"></A>[XML]</TD>
|
||||
<TD width="40%"><A href="http://www.w3.org/XML/">http://www.w3.org/XML/</A></TD>
|
||||
<TD width="50%">Reference site for the Extensible Markup Language (XML).</TD>
|
||||
</TR>
|
||||
|
||||
</TBODY></TABLE>
|
||||
|
||||
<A name="terminology" id="terminology"></A>
|
||||
<H2>3. Terminology</H2>
|
||||
<DL>
|
||||
<DT><EM>Fielded Text</EM></DT>
|
||||
<DD><EM>Fielded Text</EM> refers to a format of structuring a flat text file into rows and columns; examples include comma separated values(<EM>CSV</EM>) and Tab delimited files (<EM>Tab file</EM>) </DD>
|
||||
<P>
|
||||
|
||||
<H2>4. Metafile content description</H2>
|
||||
<p>
|
||||
The metafile schema is available at <a href="../../../text/tdwg_dwc_text.xsd">tdwg_dwc_text.xsd</a>.
|
||||
</p>
|
||||
<h3>4.1 The <archive> element</h3>
|
||||
<p>
|
||||
<table class="border">
|
||||
<thead>
|
||||
<caption>Attributes</caption>
|
||||
<th>Attribute</th>
|
||||
<th>Description</th>
|
||||
<th>Required</th>
|
||||
<th>Default</th>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class=""><em>fileRoot</em></td>
|
||||
<td>Contains a qualified Uniform Resource Locator (URL) defining the root location of the data files being described, and must be publically accessible.
|
||||
Valid examples of the format include <i>http://data.gbif.org/collections/</i>, <i>ftp://ftp.gbif.org/public/</i> and <i>http://data.gbif.org/webservices/export?id=</i>. This value will be concatinated
|
||||
with the location of the <a href="#fileTag-location"><file></a> and therefore should contain any necessary trailing characters such as / ? etc.</td>
|
||||
<td>✓</td>
|
||||
<td/>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<table class="border">
|
||||
<thead>
|
||||
<caption>Elements</caption>
|
||||
<th>Element</th>
|
||||
<th>Description</th>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class=""><a href="#fileTag"><file></a></td>
|
||||
<td>An <archive> will contain one or more <a href="#fileTag"><file></a> elements, each representing an individual file being described.</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</p>
|
||||
<h3><a name="fileTag">4.2 The <file> element</a></h3>
|
||||
<p>
|
||||
<table class="border">
|
||||
<thead>
|
||||
<caption>Attributes</caption>
|
||||
<th>Attribute</th>
|
||||
<th>Description</th>
|
||||
<th>Required</th>
|
||||
<th>Default</th>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class=""><a name="fileTag-location"><em>location</em></a></td>
|
||||
<td>Specifies the location of the file relative to the fileRoot - e.g. dwc-data.txt</td>
|
||||
<td>✓</td>
|
||||
<td/>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class=""><em>fieldsTerminatedBy</em></td>
|
||||
<td>Specifies the delimiter between fields. Typical values might be "," or "\t" for CSV or Tab files respectively.</td>
|
||||
<td/>
|
||||
<td>\t</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class=""><em>linesTerminatedBy</em></td>
|
||||
<td>Specifies the row separator character.</td>
|
||||
<td/>
|
||||
<td>\n</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class=""><em>compression</em></td>
|
||||
<td>Specifies the compression used for the file. May be omitted or specified as one of:
|
||||
<dl>
|
||||
<dt>GZIP</dt>
|
||||
<dd>Data file is compressed as GZIP</dd>
|
||||
<dt>ZIP</dt>
|
||||
<dd>Data file is compressed as ZIP (E.g. using PKZIP, WinZip, StuffIt etc)</dd>
|
||||
</dl>
|
||||
<td/>
|
||||
<td/>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class=""><em>encoding</em></td>
|
||||
<td>Specifies the encoding for the data file. One of:
|
||||
<dl>
|
||||
<dt>UTF-8</dt>
|
||||
<dd>8-bit Unicode Transformation Format</dd>
|
||||
<dt>UTF-16</dt>
|
||||
<dd>16-bit Unicode Transformation Format</dd>
|
||||
<dt>ISO-8859-1</dt>
|
||||
<dd>Commonly known as Latin-1 and a common default of Microsoft Windows based operating systems</dd>
|
||||
<dt>windows-1252</dt>
|
||||
<dd>Commonly known as WinLatin and a common default of legacy versions of Microsoft Windows based operating systems</dd>
|
||||
</dl>
|
||||
</td>
|
||||
<td/>
|
||||
<td>ISO-8859-1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class=""><em>ignoreHeaderLines</em></td>
|
||||
<td>Specifies the number lines to ignore from the beginning of the file. This can be used to ignore files with column headings or preamble comments for example.</td>
|
||||
<td/>
|
||||
<td>0</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class=""><em>rowType</em></td>
|
||||
<td>
|
||||
A Unified Resource Identifier (URI) for the term identifying the class of data represented by each row.
|
||||
See <a href="../../index.htm">Darwin Core Terms</a> definitions. Additional classes may be referenced by URI and defined outside the Darwin Core specification.
|
||||
For convienience the classes defined by Darwin Core are listed below:
|
||||
<dl>
|
||||
<dt>Simple Darwin Core</dt>
|
||||
<dd>http://rs.tdwg.org/dwc/terms/text/DarwinRecord</dd>
|
||||
<dt>Dataset</dt>
|
||||
<dd>http://rs.tdwg.org/dwc/terms/Dataset</dd>
|
||||
<dt>Sample</dt>
|
||||
<dd>http://rs.tdwg.org/dwc/terms/Sample</dd>
|
||||
<dt>SamplingEvent</dt>
|
||||
<dd>http://rs.tdwg.org/dwc/terms/SamplingEvent</dd>
|
||||
<dt>SamplingLocation</dt>
|
||||
<dd>http://rs.tdwg.org/dwc/terms/SamplingLocation</dd>
|
||||
<dt>Identification</dt>
|
||||
<dd>http://rs.tdwg.org/dwc/terms/Identification</dd>
|
||||
<dt>Taxon</dt>
|
||||
<dd>http://rs.tdwg.org/dwc/terms/Taxon</dd>
|
||||
<dt>RelatedResource</dt>
|
||||
<dd>http://rs.tdwg.org/dwc/terms/RelatedResource</dd>
|
||||
<dt>SampleAttribute</dt>
|
||||
<dd>http://rs.tdwg.org/dwc/terms/SampleAttribute</dd>
|
||||
<dt>EventAttribute</dt>
|
||||
<dd>http://rs.tdwg.org/dwc/terms/EventAttribute</dd>
|
||||
</dl>
|
||||
|
||||
</td>
|
||||
<td>✓</td>
|
||||
<td/>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class=""><em>dateFormat</em></td>
|
||||
<td>When verbatum dates are used, this field can be used to indicate the format represented. It is recommended to use the date, dateTime and time for field formats wherever possible, but where verbatum dates are required, a format may be specified here.
|
||||
This should be considered a 'hint' for consumers. It is recommended that consumers support the minimum combinations of DD MM and YYYY with the separators / and -. Examples are given:
|
||||
<dl>
|
||||
<dt>DDMMYYYY</dt>
|
||||
<dd>E.g. for dates in format 21121978</dd>
|
||||
<dt>DD-MM-YYYY</dt>
|
||||
<dd>E.g. for dates in format 21-12-1978</dd>
|
||||
<dt>MMDDYYYY</dt>
|
||||
<dd>E.g. for dates in format 12211978</dd>
|
||||
<dt>MM-DD-YYYY</dt>
|
||||
<dd>E.g. for dates in format 12-21-1978</dd>
|
||||
<dt>YYYYMMDD</dt>
|
||||
<dd>E.g. for dates in format 19781221</dd>
|
||||
</dl>
|
||||
</td>
|
||||
<td/>
|
||||
<td></td>
|
||||
</tr>
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
<table class="border">
|
||||
<thead>
|
||||
<caption>Elements</caption>
|
||||
<th>Attribute</th>
|
||||
<th>Description</th>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class=""><a href="#field"><field></a></td>
|
||||
<td>A <file> will contain one or more <a href="#fieldTag"><field></a> elements, each representing a 'column' in the row</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</p>
|
||||
<h3><a name="fieldTag">4.2 The <field> element</a></h3>
|
||||
<p>
|
||||
<table class="border">
|
||||
<thead>
|
||||
<caption>Attributes</caption>
|
||||
<th>Attribute</th>
|
||||
<th>Description</th>
|
||||
<th>Required</th>
|
||||
<th>Default</th>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class=""><em>index</em></td>
|
||||
<td>Specifies the column index from the row. The first column is column 0, the second column 1 etc.
|
||||
If no column index is specified, then the term and the default may be used to define a constant value for all rows</td>
|
||||
<td/>
|
||||
<td/>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class=""><em>term</em></td>
|
||||
<td>A Unified Resource Identifier (URI) for the term identifying the property of data represented by this field.
|
||||
For example, a scientific name would be http://rs.tdwg.org/dwc/terms/ScientificName.
|
||||
Terms outside of the Darwin Core specification may be used, such as those from the Dublin Core Metadata Initative.
|
||||
</td>
|
||||
<td>✓</td>
|
||||
<td/>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class=""><em>type</em></td>
|
||||
<td>Specifies the type of the content represented in the column. The following values are supported.
|
||||
<dl>
|
||||
<dt>string</dt>
|
||||
<dd>Represents a sequence of characters, and should be used where no other type is appropriate</dd>
|
||||
<dt>integer</dt>
|
||||
<dd>Represents a whole numeric value (e.g. 123)</dd>
|
||||
<dt>decimal</dt>
|
||||
<dd>Represents a decimal value (e.g. 10.34). Decimal point must be represented by the character . otherwise the field must be declared as a string type</dd>
|
||||
<dt>dateTime</dt>
|
||||
<dd>Represents the combination of a date and time, in the format [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]. Valid values include 2001-10-26T21:32:52, 2001-10-26T21:32:52+02:00, 2001-10-26T19:32:52Z, 2001-10-26T19:32:52+00:00, -2001-10-26T21:32:52, and 2001-10-26T21:32:52.12679. Where this format cannot be used, the string type must be declared</dd>
|
||||
<dt>date</dt>
|
||||
<dd>Represents a date in the format [-]CCYY-MM-DD[Z|(+|-)hh:mm]. Valid values include 2001-10-26, 2001-10-26+02:00, 2001-10-26Z, 2001-10-26+00:00, -2001-10-26, and -20000-04-01. Where this format cannot be used, the string type must be declared</dd>
|
||||
<dt>time</dt>
|
||||
<dd>Represents a time in the format hh:mm:ss[Z|(+|-)hh:mm]. Valid values include 21:32:52, 21:32:52+02:00, 19:32:52Z, 19:32:52+00:00, and 21:32:52.12679. Where this format cannot be used, the string type must be declared</dd>
|
||||
</dl>
|
||||
TODO: See guidelines for type specification</td>
|
||||
<td/>
|
||||
<td>string</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class=""><em>format</em></td>
|
||||
<td>TODO - finish decision on format</td>
|
||||
<td/>
|
||||
<td/>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class=""><em>default</em></td>
|
||||
<td>Used to optionally specify a default value should there not be one supplied in any given row. If no index is supplied, this can be used to define a constant applicable to all rows.</td>
|
||||
<td/>
|
||||
<td/>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</p>
|
||||
<H2>5. General implementation guidelines</H2>
|
||||
<H3>5.1 Single and multiple data files</H3>
|
||||
<h4>5.1.1 Single data file</h4>
|
||||
In its simplest usage, a single data file can be described.
|
||||
Specifically the file location, the row type and the field mapping are provided.
|
||||
<br/>
|
||||
<img src="images/singleDataFile.png">
|
||||
<br/>
|
||||
<pre class="example">
|
||||
<!-- Namespaces omitted for example -->
|
||||
<archive fileRoot="http://mydata.org/">
|
||||
<file rowType="http://rs.tdwg.org/dwc/terms/text/DarwinRecord"
|
||||
location="specimens.txt">
|
||||
<field index="0"
|
||||
term="http://rs.tdwg.org/dwc/terms/CatalogNumber"
|
||||
type="xs:integer"/>
|
||||
<field index="1"
|
||||
term="http://rs.tdwg.org/dwc/terms/ScientificName"
|
||||
type="xs:string"/>
|
||||
</file>
|
||||
</archive>
|
||||
</pre>
|
||||
|
||||
<h4>5.1.2 Multiple unrelated data files</h4>
|
||||
Multiple files containing no inter-file relationships may be described with a single metafile.
|
||||
The files must reside at the same 'root' location. A typical example for this usage might be multiple dataset files each with a common format.
|
||||
<br/>
|
||||
<img src="images/unrelatedDataFiles.png">
|
||||
<br/>
|
||||
<pre class="example">
|
||||
<!-- Namespaces omitted for example -->
|
||||
<archive fileRoot="http://mydata.org/">
|
||||
<file rowType="http://rs.tdwg.org/dwc/text/DarwinRecord"
|
||||
location="aves.txt">
|
||||
<!-- field definitions omitted for example -->
|
||||
</file>
|
||||
<file rowType="http://rs.tdwg.org/dwc/text/DarwinRecord"
|
||||
location="lepidoptera.txt">
|
||||
<!-- field definitions omitted for example -->
|
||||
</file>
|
||||
</archive>
|
||||
</pre>
|
||||
|
||||
<h4>5.1.3 Multiple related data files</h4>
|
||||
When the content of one data file relates to another data file, a relationship can be expressed in the metafile using the <relationships> element.
|
||||
In database terminology, this is equivalent to defining a foreign key constraint from one table to another.
|
||||
However, where a database has the ability to enforce this relationship, <em>fielded text</em> files do not have this capability. The following guidelines are recommended:<br/>
|
||||
<ul>
|
||||
<li>The fields on either end of a relationship must be of the same type (e.g. xs:integer)</li>
|
||||
<li>To indicate a single row is not related, no value must be provided. The use of 0, -1, \N, NULL are not to be used to indicate this</li>
|
||||
<li>The data provider must ensure that data has integrity - that the target of a relationship does indeed exist</li>
|
||||
</ul>
|
||||
Therefore care must be taken by the data provider that the relationship expressed is indeed valid, and that the data integrity is not broken.
|
||||
<br/>
|
||||
<img src="images/relatedDataFiles.png">
|
||||
<br/>
|
||||
<pre class="example">
|
||||
<!-- Namespaces omitted for example -->
|
||||
<archive fileRoot="http://mydata.org/">
|
||||
<file rowType="http://rs.tdwg.org/dwc/terms/Sample"
|
||||
location="specimens.txt">
|
||||
<field index="0" term="http://rs.tdwg.org/dwc/terms/CatalogNumber"/>
|
||||
<field index="1" term="http://rs.tdwg.org/dwc/terms/IndividualCount"/>
|
||||
</file>
|
||||
|
||||
<file rowType="http://rs.tdwg.org/dwc/terms/Identification"
|
||||
location="identifications.txt">
|
||||
<field index="0" term="http://rs.tdwg.org/dwc/terms/IdentificationID"/>
|
||||
<field index="1" term="http://rs.tdwg.org/dwc/terms/IdentifiedBy"/>
|
||||
<field index="2" term="http://rs.tdwg.org/dwc/terms/CatalogNumber"/>
|
||||
<field index="3" term="http://rs.tdwg.org/dwc/terms/ScientificName"/>
|
||||
</file>
|
||||
|
||||
<relationships>
|
||||
<relationship>
|
||||
<file location="specimens.txt" fieldIndex="0"/>
|
||||
<file location="identifications.txt" fieldIndex="2"/>
|
||||
</relationship>
|
||||
</relationships>
|
||||
</archive>
|
||||
</pre>
|
||||
<br/>
|
||||
<p>
|
||||
<b>Note:</b><br/>
|
||||
Although feasible, it is <b>not</b> recommended to express a relationship from one file to itself.
|
||||
This recommendation is made since no description of the relationship type may be expressed.
|
||||
</p>
|
||||
|
||||
<H3>5.2 Field Type Guidelines</H3>
|
||||
<p>
|
||||
Most terms should be typed as "string" with the exception of the following terms, which are listed with proposed types:
|
||||
</p>
|
||||
<table class="border">
|
||||
<thead>
|
||||
<caption>Non string term mappings</caption>
|
||||
<th>Term</th>
|
||||
<th>Recommended Types</th>
|
||||
<th>Comments</th>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr><td>http://rs.tdwg.org/dwc/terms/DateIdentified</td><td>dateTime, date, string</td><td></td></tr>
|
||||
<tr><td>http://rs.tdwg.org/dwc/terms/EarliestDateCollected</td><td>dateTime, date, string</td><td></td></tr>
|
||||
<tr><td>http://rs.tdwg.org/dwc/terms/EventAttributeDeterminedDate</td><td>dateTime, date, string</td><td></td></tr>
|
||||
<tr><td>http://rs.tdwg.org/dwc/terms/LatestDateCollected</td><td>dateTime, date, string</td><td></td></tr>
|
||||
<tr><td>http://rs.tdwg.org/dwc/terms/SampleAttributeDeterminedDate</td><td>dateTime, date, string</td><td></td></tr>
|
||||
<tr><td>http://rs.tdwg.org/dwc/terms/VerbatimCollectingDate</td><td>dateTime, date, string</td><td></td></tr>
|
||||
<tr><td>http://rs.tdwg.org/dwc/terms/CoordinatePrecision</td><td>decimal, int, string</td><td></td></tr>
|
||||
<tr><td>http://rs.tdwg.org/dwc/terms/CoordinateUncertaintyInMeters</td><td>decimal, int, string</td><td></td></tr>
|
||||
<tr><td>http://rs.tdwg.org/dwc/terms/DistanceAboveSurfaceInMetersMaximum</td><td>decimal, int, string</td><td></td></tr>
|
||||
<tr><td>http://rs.tdwg.org/dwc/terms/DistanceAboveSurfaceInMetersMinimum</td><td>decimal, int, string</td><td></td></tr>
|
||||
<tr><td>http://rs.tdwg.org/dwc/terms/EventAttributeAccuracy</td><td>decimal, int, string</td><td></td></tr>
|
||||
<tr><td>http://rs.tdwg.org/dwc/terms/EventAttributeValue</td><td>decimal, int, string</td><td></td></tr>
|
||||
<tr><td>http://rs.tdwg.org/dwc/terms/MaximumDepthInMeters</td><td>decimal, int, string</td><td></td></tr>
|
||||
<tr><td>http://rs.tdwg.org/dwc/terms/MaximumElevationInMeters</td><td>decimal, int, string</td><td></td></tr>
|
||||
<tr><td>http://rs.tdwg.org/dwc/terms/MinimumDepthInMeters</td><td>decimal, int, string</td><td></td></tr>
|
||||
<tr><td>http://rs.tdwg.org/dwc/terms/MinimumElevationInMeters</td><td>decimal, int, string</td><td></td></tr>
|
||||
<tr><td>http://rs.tdwg.org/dwc/terms/SampleAttributeAccuracy</td><td>decimal, int, string</td><td></td></tr>
|
||||
<tr><td>http://rs.tdwg.org/dwc/terms/SampleAttributeValue</td><td>decimal, int, string</td><td></td></tr>
|
||||
<tr><td>http://rs.tdwg.org/dwc/terms/VerbatimDepth</td><td>decimal, int, string</td><td></td></tr>
|
||||
<tr><td>http://rs.tdwg.org/dwc/terms/DecimalLatitude</td><td>decimal, string</td><td></td></tr>
|
||||
<tr><td>http://rs.tdwg.org/dwc/terms/DecimalLongitude</td><td>decimal, string</td><td></td></tr>
|
||||
<tr><td>http://rs.tdwg.org/dwc/terms/CatalogNumberNumeric</td><td>int</td><td></td></tr>
|
||||
<tr><td>http://rs.tdwg.org/dwc/terms/DayOfMonth</td><td>int, string</td><td>using 1 as 1st of the month</td></tr>
|
||||
<tr><td>http://rs.tdwg.org/dwc/terms/EndDayOfYear</td><td>int, string</td><td></td></tr>
|
||||
<tr><td>http://rs.tdwg.org/dwc/terms/IndividualCount</td><td>int, string</td><td></td></tr>
|
||||
<tr><td>http://rs.tdwg.org/dwc/terms/MonthOfYear</td><td>int, string</td><td>using 1 as January</td></tr>
|
||||
<tr><td>http://rs.tdwg.org/dwc/terms/PointRadiusSpatialFit</td><td>int, string</td><td></td></tr>
|
||||
<tr><td>http://rs.tdwg.org/dwc/terms/StartDayOfYear</td><td>int, string</td><td>using 1 as January 1st</td></tr>
|
||||
<tr><td>http://rs.tdwg.org/dwc/terms/YearSampled</td><td>int, string</td><td>in the format CCYY e.g. 2001</td></tr>
|
||||
<tr><td>http://rs.tdwg.org/dwc/terms/EndTimeOfDay</td><td>time, string</td><td></td></tr>
|
||||
<tr><td>http://rs.tdwg.org/dwc/terms/StartTimeOfDay</td><td>time, string</td><td></td></tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<H2>6. Database exporting examples</H2>
|
||||
<H3>6.1 Mysql</H3>
|
||||
Using the <code>select into outfile</code> command it is very easy to produce <em>fielded text</em> from mysql.<br/>
|
||||
The encoding of the resulting file will depend on the server variables and collations used, and might need modified before the operation.
|
||||
It is worth noting that mysql will represent NULL values as \N by default and therefore the isNull() function must be used.
|
||||
<pre class="example">
|
||||
SELECT
|
||||
IFNULL(id, ''), IFNULL(scientific_name, ''), IFNULL(count,'')
|
||||
INTO outfile '/tmp/dwc.txt'
|
||||
FIELDS TERMINATED BY ','
|
||||
OPTIONALLY ENCLOSED BY '"'
|
||||
LINES TERMINATED BY '\n'
|
||||
FROM
|
||||
dwc;
|
||||
</pre>
|
||||
|
||||
<h2>7. Guidelines for consumers</h2>
|
||||
It goes beyond the scope of these guidelines to specify how a consumer must deal with related data. However, the following procedure is recommended for a database import:
|
||||
<ul>
|
||||
<li>Create tables for each described file with no constraints</li>
|
||||
<li>Import file content into temporary tables</li>
|
||||
<li>Check data integrity by testing the expressed join</li>
|
||||
<li>Copy data into tables enforcing the relationship, or add constraint to newly created tables</li>
|
||||
</ul>
|
||||
|
||||
<!-- Footer -->
|
||||
<hr>
|
||||
<p><a rel="license" href="http://creativecommons.org/licenses/by/3.0/us/">
|
||||
<img alt="Creative Commons License" id="creative_commons_icon" src="http://i.creativecommons.org/l/by/3.0/88x31.png" /></a>
|
||||
Copyright 2009 - Biodiversity Information Standards - TDWG - <a href="http://www.tdwg.org/about-tdwg/contact-us/">Contact Us</a><br/>
|
||||
<p>Except where otherwise noted, content on this site is licensed under a
|
||||
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/us/"> Creative Commons
|
||||
Attribution 3.0 United States License</a>.</p>
|
||||
|
||||
</BODY></HTML>
|
|
@ -0,0 +1,411 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<HTML xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<HEAD>
|
||||
<META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
|
||||
<TITLE>Darwin Core XML Guide</TITLE>
|
||||
<LINK rel="schema.DwC" href="http://rs.tdwg.org/dwc/"/>
|
||||
<META name="DC.title" content="Darwin Core XML Guide"/>
|
||||
<META name="DC.description" content="Guide for implementing Darwin Core in XML."/>
|
||||
<META name="DC.subject" content="biodiversity, standards"/>
|
||||
<META name="DC.creator" content="Darwin Core Task Group"/>
|
||||
<META name="DC.contributor" content="John Wieczorek (MVZ) <tuco@berkeley.edu>"/>
|
||||
<META name="DC.contributor" content="Markus Döring (GBIF) <mdoering@gbif.org>"/>
|
||||
<META name="DC.contributor" content="Renato De Giovanni (CRIA) <renato@cria.org.br>"/>
|
||||
<META name="DC.contributor" content="Tim Robertson (GBIF) <trobertson@gbif.org>"/>
|
||||
<META name="DC.contributor" content="Dave Vieglais (KUNHM) <vieglais@ku.edu>"/>
|
||||
<META name="DC.contributor" content="Stan Blum (CAS) <sblum@calacademy.org>"/>
|
||||
<META name="DC.modified" content="2009-02-12"/>
|
||||
<META name="DC.dateAccepted" content="2009-02-12"/>
|
||||
<META name="DC.format" content="text/html"/>
|
||||
<META name="DC.identifier" content="http://rs.tdwg.org/dwc/terms/xsd/guide/2009-02-12"/>
|
||||
<META name="DC.publisher" content="Biodiversity Information Standards TDWG"/>
|
||||
<META name="DC.rights" content=""/>
|
||||
<META name="DC.accessRights" content="public"/>
|
||||
<META name="DC.bibliographicCitation" content="Darwin Core XML Guidelines. 2009"/>
|
||||
<META name="DC.isReplacedBy" content=""/>
|
||||
<META name="DC.replaces" content=""/>
|
||||
<META name="DC.language" content="en"/>
|
||||
<LINK rel="meta" href="http://www.tdwg.org/"/>
|
||||
<LINK rel="stylesheet" href="../../../DarwinCore_files/default.css" type="text/css"/>
|
||||
<SCRIPT src="../../../DarwinCore_files/default.js" type="text/javascript"></SCRIPT>
|
||||
</HEAD>
|
||||
<BODY>
|
||||
<DIV class="header">
|
||||
|
||||
<TABLE width="100%" cellspacing="0" cellpadding="0" bgcolor="#617394">
|
||||
<TBODY><TR>
|
||||
<TD width="70"><A href="http://www.tdwg.org"><IMG src="../../../DarwinCore_files/TDWGlogo_Twiki.gif" width="150" height="70" alt="Biodiversity Information Standards (TDWG) logo"></A></TD>
|
||||
<TD width="100%" height="70" align="right" valign="top">
|
||||
</TABLE>
|
||||
|
||||
<H1>Darwin Core XML Guide</H1>
|
||||
<P>
|
||||
<TABLE cellspacing="0" class="docinfo">
|
||||
<TBODY>
|
||||
<TR>
|
||||
<TH>Title:</TH>
|
||||
<TD>Darwin Core XML Guidelines</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Date Issued:</TH>
|
||||
<TD>2009-02-12</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Abstract:</TH>
|
||||
<TD>Guidelines for the implementation of Darwin Core in XML.</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Contributors:</TH>
|
||||
<TD>John Wieczorek (MVZ)<tuco@berkeley.edu>, Markus Döring (GBIF)<mdoering@gbif.org>, Renato De Giovanni (CRIA)<renato@cria.org.br>, Tim Robertson (GBIF)<trobertson@gbif.org>, Dave Vieglais (KUNHM)<vieglais@ku.edu>, Stan Blum (CAS)<sblum@calacademy.org></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Legal:</TH>
|
||||
<TD>This document is governed by the standard legal, copyright, licensing provisions and disclaimers issued by the Taxonomic Databases Working Group.</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Part of TDWG Standard:</TH>
|
||||
<TD>***URL to DwC Standard*** goes here</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Creator:</TH>
|
||||
<TD>Darwin Core Task Group</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Identifier:</TH>
|
||||
<TD><A href="http://rs.tdwg.org/dwc/terms/xsd/guide/2009-02-12/">http://rs.tdwg.org/dwc/terms/xsd/guide/2009-02-12/</A></TD>
|
||||
</TR>
|
||||
<TR><TH>Latest Version:</TH>
|
||||
<TD><A href="http://rs.tdwg.org/dwc/terms/xsd/guide/">http://rs.tdwg.org/dwc/terms/xsd/guide/</A></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Replaces:</TH>
|
||||
<TD>Not applicable</A></TD>
|
||||
</TR>
|
||||
<TR><TH>Replaced By:</TH>
|
||||
<TD>Not applicable</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Translations:</TH>
|
||||
<TD><A href="http://rs.tdwg.org/dwc/translations/">http://rs.tdwg.org/dwc/translations/</A></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Document Status:</TH>
|
||||
<TD>This is a TDWG Request for Comment.</TD>
|
||||
</TR>
|
||||
</TBODY></TABLE>
|
||||
|
||||
<H2>Table of Contents</H2>
|
||||
<P>
|
||||
<TABLE width="95%" border="0" align="center"><TBODY>
|
||||
<TR><TD width="100%">1. <a href="#introduction">Introduction</a></TD></TR>
|
||||
<TR><TD width="100%">2. <a href="#references">References</a></TD></TR>
|
||||
<TR><TD width="100%">3. <a href="#terminology">Terminology</a></TD></TR>
|
||||
<TR><TD width="100%">4. <a href="#general">General implementation recommendations</a></TD></TR>
|
||||
</TBODY></TABLE
|
||||
|
||||
<A name="introduction" id="introduction"></A>
|
||||
<H2>1. Introduction</H2>
|
||||
<P>
|
||||
This document provides guidelines for implementing applications schemas based on Darwin Core terms
|
||||
[<a href="../../index.htm">TERMS</a>] using [<a href="http://www.w3.org/XML/">XML</a>]. The underlying metadata
|
||||
model is described (in a syntax neutral way), followed by some specific guidelines for XML implementations. Some guidance
|
||||
on the use of non-Darwin Core terms is also provided.
|
||||
<P>
|
||||
This document does not provide guidelines for encoding Darwin Core in RDF/XML. Nor does it take a position on the
|
||||
relative merits of encoding metadata in 'plain' XML rather than RDF/XML. This document provides guidelines in those
|
||||
cases where RDF/XML is not considered appropriate.
|
||||
|
||||
<A name="references" id="references"></A>
|
||||
<H2>2. References</H2>
|
||||
<TABLE width="95%" border="0" align="center">
|
||||
<TBODY>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="ABSTRACTMODEL">[ABSTRACTMODEL]</A></TD>
|
||||
<TD width="40%"><A href="http://dublincore.org/documents/abstract-model/">http://dublincore.org/documents/abstract-model/</A></TD>
|
||||
<TD width="50%">Dublin Core Metadata Initiative Abstract model.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="BASISOFRECORD">[BASISOFRECORD]</A></TD>
|
||||
<TD width="40%"><a href="../../index.htm#BasisOfRecord">http://rs.tdwg.org/dwc/terms/index.htm#BasisOfRecord</A></TD>
|
||||
<TD width="50%">Term describing the type of content in a resource.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="COMPSAMPLEXMLSCHEMA">[COMPSAMPLEXMLSCHEMA]</A></TD>
|
||||
<TD width="40%"><A href="../../../xsd/tdwg_dwc_compound_sample.xsd">http://rs.tdwg.org/dwc/xsd/tdwg_dwc_compound_sample.xsd</A></TD>
|
||||
<TD width="50%">Structured Darwin Core XML schema having Sample as the root.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="COMPLOCATIONXMLSCHEMA">[COMPLOCATIONXMLSCHEMA]</A></TD>
|
||||
<TD width="40%"><A href="../../../xsd/tdwg_dwc_compound_samplinglocation.xsd">http://rs.tdwg.org/dwc/xsd/tdwg_dwc_compound_samplinglocation.xsd</A></TD>
|
||||
<TD width="50%">Structured Darwin Core XML schema having SamplingLocation as the root.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="DCMI">[DCMI]</A></TD>
|
||||
<TD width="40%"><A href="http://dublincore.org/">http://dublincore.org/</A></TD>
|
||||
<TD width="50%">Dublin Core Metadata Initiative Web site.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="DCMIXMLGUIDE">[DCMIXMLGUIDE]</A></TD>
|
||||
<TD width="40%"><a href="http://dublincore.org/documents/dc-xml/">http://dublincore.org/documents/dc-xml/</A></TD>
|
||||
<TD width="50%">Expressing Dublin Core metadata using XML.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="DCTERMS">[DCTERMS]</A></TD>
|
||||
<TD width="40%"><A href="http://dublincore.org/documents/dcmi-terms/">http://dublincore.org/documents/dcmi-terms/</A></TD>
|
||||
<TD width="50%">Dublin Core Metadata terms.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="DWC">[DWC]</A></TD>
|
||||
<TD width="40%"><A href="../../../index.htm">http://rs.tdwg.org/dwc/</A></TD>
|
||||
<TD width="50%">An introduction to the Darwin Core Standard.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="DWC-TYPE">[DWC-TYPE]</A></TD>
|
||||
<TD width="40%"><A href="../../type-vocabulary/index.htm">http://rs.tdwg.org/dwc/terms/type-vocabulary/</A></TD>
|
||||
<TD width="50%">A reference to the Darwin Core Type Vocabulary terms for use with BasisOfRecord.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="GENERICXMLSCHEMA">[GENERICXMLSCHEMA]</A></TD>
|
||||
<TD width="40%"><A href="../../../xsd/tdwg_dwcterms.xsd">http://rs.tdwg.org/dwc/xsd/tdwg_dwcterms.xsd</A></TD>
|
||||
<TD width="50%">Generic Darwin Core XML schema.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="HISTORY">[HISTORY]</A></TD>
|
||||
<TD width="40%"><A href="../../history/index.htm">http://rs.tdwg.org/dwc/terms/history/</A></TD>
|
||||
<TD width="50%">Complete historical reference to Darwin Core terms.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="NAMESPACEPOLICY">[NAMESPACEPOLICY]</A></TD>
|
||||
<TD width="40%"><A href="../../namespace/index.htm">http://rs.tdwg.org/dwc/terms/namespace/</A></TD>
|
||||
<TD width="50%">Policy governing Darwin Core terms.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="RDF"></A>[RDF]</TD>
|
||||
<TD width="40%"><A href="http://www.w3.org/RDF/">http://www.w3.org/RDF/</A></TD>
|
||||
<TD width="50%">Reference site for the Resource Description Framework (RDF).</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="SIMPLEXMLSCHEMA">[SIMPLEXMLSCHEMA]</A></TD>
|
||||
<TD width="40%"><A href="../../../xsd/tdwg_dwc_simple.xsd">http://rs.tdwg.org/dwc/xsd/tdwg_dwc_simple.xsd</A></TD>
|
||||
<TD width="50%">Simple Darwin Core XML schema.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="TERMS">[TERMS]</A></TD>
|
||||
<TD width="40%"><A href="../../index.htm">http://rs.tdwg.org/dwc/terms/</A></TD>
|
||||
<TD width="50%">Quick reference to recommended Darwin Core terms.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="VERSIONS"></A>[VERSIONS]</TD>
|
||||
<TD width="40%"><A href="../../history/versions/index.htm">http://rs.tdwg.org/dwc/terms/history/versions/</A></TD>
|
||||
<TD width="50%">Reference for mapping historical Darwin Core terms to the current recommended terms.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="XML"></A>[XML]</TD>
|
||||
<TD width="40%"><A href="http://www.w3.org/XML/">http://www.w3.org/XML/</A></TD>
|
||||
<TD width="50%">Reference site for the Extensible Markup Language (XML).</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="XMLNS"></A>[XMLNS]</TD>
|
||||
<TD width="40%"><A href="http://www.w3.org/TR/1999/REC-xml-names-19990114/">http://www.w3.org/TR/1999/REC-xml-names-19990114/</A></TD>
|
||||
<TD width="50%">Reference site for XML namespaces.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="XMLSCHEMA"></A>[XMLSCHEMA]</TD>
|
||||
<TD width="40%"><A href="http://www.w3.org/XML/Schema">http://www.w3.org/XML/Schema</A></TD>
|
||||
<TD width="50%">Reference site for XML Schema.</TD>
|
||||
</TR>
|
||||
|
||||
</TBODY></TABLE>
|
||||
|
||||
<A name="terminology" id="terminology"></A>
|
||||
<H2>3. Terminology</H2>
|
||||
<DL>
|
||||
<DT><EM>Resource</EM></DT>
|
||||
<DD>a <EM>resource</EM> is anything that has identity. In Darwin Core a resource might refer to any of the <EM>classes</EM>
|
||||
of which it is composed, such a record of a biotic occurrence (specimen, observation), or any of the types of records that
|
||||
provide supporting or auxiliary evidence (SamplingEvent, SamplingLocation, Taxon).</DD>
|
||||
<DT><EM>Property</EM></DT>
|
||||
<DD>a <EM>property</EM> is a specific aspect, characteristic, concept, attribute, or relation used to describe a <EM>resource</EM>. SampleID, for example, is a <EM>property</EM> that identifies a resource, distinguishing it from other resources.</DD>
|
||||
<DT><EM>Class</EM></DT>
|
||||
<DD>a <EM>class</EM> is a general category or concept that can be described by one or more <EM>properties</EM>. A Sample, for example, is a <EM>class</EM> described by the <EM>properties</EM>, such as SampleID, that have Sample as their <EM>class</EM> (domain).</DD>
|
||||
<DT><EM>Record</EM></DT>
|
||||
<DD>a <EM>record</EM> is an instance of structured data about a <EM>resource</EM> comprising one or more <EM>classes</EM> and/or <EM>properties</EM> and their associated <EM>values</EM>.</DD></DL>
|
||||
<DT><EM>Record Set</EM></DT>
|
||||
<DD>a <EM>record set</EM> is a structured grouping of one or more <EM>records</EM>.</DD></DL>
|
||||
<P>
|
||||
Darwin Core terms [<a href="../../index.htm">TERMS</a>] include <EM>classes</EM> and <EM>properties</EM> as defined above.
|
||||
|
||||
<A name="general" id="general"></A>
|
||||
<H2>4. General implementation guidelines</H2>
|
||||
<P>
|
||||
<H3>4.1 XML Schema</H3>
|
||||
Implementors should base their XML applications on XML Schemas
|
||||
[<A href="http://dublincore.org/documents/dc-xml-guidelines/#XMLSCHEMA">XMLSCHEMA</A>] rather than XML DTDs. Approaches
|
||||
based on XML Schemas are more flexible and are more easily re-used within other XML applications.
|
||||
<P>
|
||||
<H3>4.2 XML Namespaces</H3>
|
||||
Implementors should use XML Namespaces
|
||||
[<A href="http://dublincore.org/documents/dc-xml-guidelines/#XMLNS">XMLNS</A>] to uniquely identify elements, element refinements, and encoding schemes. Darwin Core namespaces are defined in the Darwin Core Namespace Policy recommendation
|
||||
[<A href="../../namespace/index.htm">NAMESPACEPOLICY</a>], while Dublin Core namespaces are defined in the
|
||||
DCMI Namespace Recommendation [<A href="http://dublincore.org/documents/dc-xml-guidelines/#DCMINS">DCMINS</A>].
|
||||
<P>
|
||||
<H3>4.3 Abstract model</H3>
|
||||
<P>
|
||||
The Darwin Core follows the Dublin Core Metadata Initiative Abstract Model [<A href="http://dublincore.org/documents/abstract-model/">ABSTRACTMODEL</A>]
|
||||
except that the Darwin Core <EM>record</EM> is roughly equivalent to the Dublin Core <EM>resource</EM>.
|
||||
<UL>
|
||||
<LI>A <EM>Darwin Core record</EM> is made up of one or more <EM>classes</EM> and/or <EM>properties</EM> and their associated <EM>values</EM>.</LI>
|
||||
<LI>A <EM>Darwin Core record</EM> must include all required <EM>properties</EM> (e.g., BasisOfRecord) and their associated <EM>values</EM>.</LI>
|
||||
<LI>Each <EM>property</EM> has at most one <EM>class</EM> as its domain.</LI>
|
||||
<LI>Each <EM>property</EM> is an attribute of the <EM>resource</EM> being described.</LI>
|
||||
<LI>Each <EM>value</EM> is a literal string.</LI>
|
||||
<LI>Each literal string <EM>value</EM> may have an associated language (e.g., en-GB).</LI>
|
||||
<LI>Each <EM>value</EM> may have an associated <EM>encoding scheme</EM>.</LI>
|
||||
<LI>Each <EM>encoding scheme</EM> has a <EM>name</EM>.</LI></UL>
|
||||
<P>
|
||||
<H3>4.4 Properties and Values</H3>
|
||||
<P>The Darwin Core follows the guidelines for expressing Dublin Core metadata using XML
|
||||
[<a href="http://dublincore.org/documents/dc-xml/">DCMIXMLGUIDE</A>] except in that
|
||||
Darwin Core implementors should encode <EM>properties</EM> as XML elements and <EM>values</EM>
|
||||
as the content of those elements instead of having each property contain a value representation and its associated value.
|
||||
The name of the XML element should be an XML qualified name (QName), which associates the value given in the <EM>Term name</EM>
|
||||
attribute (not the value in the <EM>Label</EM> attribute) in the Darwin Core Terms recommendation
|
||||
[<A href="../../index.htm">TERMS</A>] with the appropriate namespace name. For example, use
|
||||
<PRE class="example"><xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
||||
targetNamespace="http://rs.tdwg.org/dwc/terms/"
|
||||
xmlns:dwc="http://rs.tdwg.org/dwc/terms/">
|
||||
...
|
||||
<dwc:BasisOfRecord>HumanObservation</dwc:BasisOfRecord>
|
||||
</PRE>
|
||||
<P>rather than</P>
|
||||
<PRE class="example"><dwc:BasisOfRecord value="HumanObservation" />
|
||||
</PRE>
|
||||
<P>
|
||||
<H3>4.5 Encoding Schemes</H3>
|
||||
If an encoding scheme is recommended in the <EM>Description</EM> attribute of the term, use that encoding scheme or
|
||||
a refinement of it to constrain the values of the term.
|
||||
<P>
|
||||
Implementors should encode <EM>encoding schemes</EM> using the 'xsi:type' attribute of the XML element for the property.
|
||||
The name of the encoding scheme should be given as the attribute value, and should be in the form of an XML qualified name
|
||||
(QName), which associates the scheme name with the appropriate namespace name. For example:
|
||||
<PRE class="example">
|
||||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
||||
targetNamespace="http://rs.tdwg.org/dwc/terms/"
|
||||
xmlns:dc="http://purl.org/dc/terms/"
|
||||
xmlns:dwc="http://rs.tdwg.org/dwc/terms/">
|
||||
<dwc:CountryCode xsi:type="dc:ISO3166">COL</dwc:CountryCode>
|
||||
</PRE>
|
||||
or
|
||||
<PRE class="example">
|
||||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
||||
targetNamespace="http://rs.tdwg.org/dwc/terms/"
|
||||
xmlns:dwc="http://rs.tdwg.org/dwc/terms/">
|
||||
<dwc:BasisOfRecord xsi:type="dwc:DwCType">PreservedSpecimen</dwc:BasisOfRecord>
|
||||
</PRE>
|
||||
|
||||
This allows implementors to take some advantage of the data typing functionality provided by the W3C XML Schema specifications
|
||||
[<A href="http://www.w3.org/XML/Schema">XMLSCHEMA</A>].
|
||||
|
||||
<H3>4.6 Null values</H3>
|
||||
<P>
|
||||
Elements that are unsupported should not be provided in documents. Supported elements for which the value is null should be explicitly
|
||||
coded to show this using the attribute xsi:nil="true". Following is an example of the latter case:
|
||||
<PRE class="example"><dwc:Locality xsi:nil="true"></dwc:Locality>
|
||||
</PRE>
|
||||
|
||||
<H3>4.7 Language</H3>
|
||||
<P>
|
||||
It is permissible to indicate the language of the <EM>value</EM> using the 'xml:lang' attribute. For example:
|
||||
<PRE class="example"><dwc:Country xml:lang="es">España</dwc:Country>
|
||||
<dwc:Sex xml:lang="en">female</dwc:Sex>
|
||||
</PRE>
|
||||
|
||||
<H3>4.8 Simple Darwin Core</H3>
|
||||
<P>
|
||||
The Simple Darwin Core [<A href="../../../xsd/tdwg_dwc_simple.xsd">SIMPLEXMLSCHEMA</a>] most closely models the "flat" nature of many data sets. It
|
||||
is a ready-made schema for sharing information with no structure beyond properties of a <EM>record</EM> (equivalent to fields in a table, or columns
|
||||
in a spreadsheet). It is meant to accomodate all properties except those that require further structure to be meaningful (for example, terms in the
|
||||
classes ResourceRelationship, SampleAttribute, and EventAttribute). The schema has few required terms and no term is repeated within a given
|
||||
<EM>record</EM>.
|
||||
<P>
|
||||
Records for specimens, observations, taxa, media, locations, and nomenclatural checklists can be constructed using an appropriate BasisOfRecord
|
||||
and appropriate subsets of the Simple Darwin Core elements. The type of content of a record must be designated by the value of the required
|
||||
BasisOfRecord [<a href="../../index.htm#BasisOfRecord">BASISOFRECORD</a>] element, which is controlled by the Darwin Core Type vocabulary
|
||||
[<A href="../../type-vocabulary/index.htm">DWC-TYPE</a>].
|
||||
<P>
|
||||
Following is an example of an XML document for a single specimen complying with the Simple Darwin Core Schema
|
||||
[<A href="../../../xsd/tdwg_dwc_simple.xsd">SIMPLEXMLSCHEMA</a>]].
|
||||
|
||||
<PRE class="example"><?xml version="1.0"?>
|
||||
<records>
|
||||
xmlns="http://rs.tdwg.ord/dwc/terms/xsd/myapp/"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://rs.tdwg.ord/dwc/terms/xsd/myapp/ http://rs.tdwg.org/dwc/xsd/tdwg_dwc_simple.xsd"
|
||||
xmlns:dcterms="http://purl.org/dc/terms/"
|
||||
xmlns:dwc="http://rs.tdwg.org/dwc/xsd/simpledarwincore">
|
||||
<dwc:SimpleDarwinRecord>
|
||||
<dcterms:modified>2009-02-12</dcterms:modified>
|
||||
<dcterms:rightsHolder>Museum of Vertebrate Zoology</dcterms:rightsHolder>
|
||||
<dcterms:rights>Creative Commons License</dcterms:rights>
|
||||
<dwc:InstitutionCode>MVZ</dwc:InstitutionCode>
|
||||
<dwc:CollectionCode>Mammals</dwc:CollectionCode>
|
||||
<dwc:SampleID>urn:catalog:MVZ:Mammals:14523</dwc:SampleID>
|
||||
<dwc:BasisOfRecord>PreservedSpecimen</dwc:BasisOfRecord>
|
||||
<dwc:Country xml:lang="es">Argentina</dwc:Country>
|
||||
<dwc:CountryCode xsi:type="dcterms:ISO3166">ARG</dwc:CountryCode>
|
||||
<dwc:StateProvince xml:lang="es">Neuquén</dwc:StateProvince>
|
||||
<dwc:Locality xml:lang="es">25 km al NNE de Bariloche por Ruta 40 (=237)</dwc:Locality>
|
||||
</dwc:SimpleDarwinRecord>
|
||||
</records>
|
||||
</PRE>
|
||||
|
||||
<P>
|
||||
<H3>4.9 Classes and Containment</H3>
|
||||
<P>
|
||||
Many Darwin Core terms (<EM>properties</EM>) are defined as having other terms (<EM>classes</EM>) as their domain. For example, AcceptedTaxon and
|
||||
Taxon are both Darwin Core terms, and AcceptedTaxon is a property of the Taxon class (it has Taxon as its domain). When constructing schemas that
|
||||
take advantage of classes in structures, implementors are encouraged to maintain the property/class
|
||||
relationships defined by the terms whenever possible (refer to the <EM>Has Domain</EM> attribute of the term as given in the Complete
|
||||
Historical Reference [<A href="../../history/index.htm">HISTORY</a>]), using the mechanisms described in the Generic Darwin Core schema
|
||||
[<A href="../../../xsd/tdwg_dwcterms.xsd">GENERICXMLSCHEMA</a>].
|
||||
<P>
|
||||
Structure using classes can be used flexibly. For example, one could construct a specimen-based schema
|
||||
[<A href="../../../xsd/tdwg_dwc_compound_sample.xsd">COMPSAMPLEXMLSCHEMA</a>] having the sample as the root class
|
||||
in a hierarchy with SamplingEvent and Identification as children, with SamplingLocation as a child of SamplingEvent, and with Taxon as a child of
|
||||
Identification.
|
||||
<P>
|
||||
Alternatively, one could construct a observation-based schema
|
||||
[<A href="../../../xsd/tdwg_dwc_compound_samplinglocation.xsd">COMPLOCATIONXMLSCHEMA</a>] having the SamplingLocation as the root class in a
|
||||
hierarchy with SamplingEvent as a child, with Sample as a child of SamplingEvent, with Identification as a child of Sample, and with Taxon as
|
||||
a child of Identification.
|
||||
|
||||
|
||||
<!-- Footer -->
|
||||
<hr>
|
||||
<p><a rel="license" href="http://creativecommons.org/licenses/by/3.0/us/">
|
||||
<img alt="Creative Commons License" id="creative_commons_icon" src="http://i.creativecommons.org/l/by/3.0/88x31.png" /></a>
|
||||
Copyright 2009 - Biodiversity Information Standards - TDWG - <a href="http://www.tdwg.org/about-tdwg/contact-us/">Contact Us</a><br/>
|
||||
<p>Except where otherwise noted, content on this site is licensed under a
|
||||
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/us/"> Creative Commons
|
||||
Attribution 3.0 United States License</a>.</p>
|
||||
|
||||
</BODY></HTML>
|
|
@ -0,0 +1,172 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<HTML xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<HEAD>
|
||||
<META http-equiv="Content-Type" content="text/html; charset=US-ASCII"/>
|
||||
<TITLE>Darwin Core Decisions</TITLE>
|
||||
<LINK rel="schema.DwC" href="http://rs.tdwg.org/dwc/terms/history/decisions"/>
|
||||
<META name="DC.title" content="Darwin Core Decisions"/>
|
||||
<META name="DC.description" content="A history of decisions about Darwin Core terms."/>
|
||||
<META name="DC.subject" content="biodiversity, standards"/>
|
||||
<META name="DC.creator" content="Darwin Core Task Group"/>
|
||||
<META name="DC.contributor" content="John Wieczorek (MVZ) <tuco@berkeley.edu>"/>
|
||||
<META name="DC.contributor" content="Markus Döring (GBIF) <mdoering@gbif.org>"/>
|
||||
<META name="DC.contributor" content="Renato De Giovanni (CRIA) <renato@cria.org.br>"/>
|
||||
<META name="DC.contributor" content="Tim Robertson (GBIF) <trobertson@gbif.org>"/>
|
||||
<META name="DC.contributor" content="Dave Vieglais (KUNHM) <vieglais@ku.edu>"/>
|
||||
<META name="DC.contributor" content="Stan Blum (CAS) <sblum@calacademy.org>"/>
|
||||
<META name="DC.modified" content="2009-02-12"/>
|
||||
<META name="DC.dateAccepted" content="2009-02-12"/>
|
||||
<META name="DC.format" content="text/html"/>
|
||||
<META name="DC.identifier" content="http://rs.tdwg.org/dwc/terms/history/decisions/2009-02-12"/>
|
||||
<META name="DC.publisher" content="Biodiversity Information Standards TDWG"/>
|
||||
<META name="DC.rights" content=""/>
|
||||
<META name="DC.accessRights" content="public"/>
|
||||
<META name="DC.bibliographicCitation" content="Darwin Core Decisions. 2009"/>
|
||||
<META name="DC.isReplacedBy" content=""/>
|
||||
<META name="DC.replaces" content="http://wiki.tdwg.org/twiki/bin/view/DarwinCore/DarwinCoreDraftStandard"/>
|
||||
<META name="DC.language" content="en"/>
|
||||
<LINK rel="meta" href="http://www.tdwg.org/"/>
|
||||
<LINK rel="stylesheet" href="../../../DarwinCore_files/default.css" type="text/css"/>
|
||||
<SCRIPT src="../../../DarwinCore_files/default.js" type="text/javascript"></SCRIPT>
|
||||
</HEAD>
|
||||
<BODY>
|
||||
<DIV class="header">
|
||||
|
||||
<TABLE width="100%" cellspacing="0" cellpadding="0" bgcolor="#617394">
|
||||
<TBODY><TR>
|
||||
<TD width="70"><A href="http://www.tdwg.org"><IMG src="../../../DarwinCore_files/TDWGlogo_Twiki.gif" width="150" height="70" alt="Biodiversity Information Standards (TDWG) logo"></A></TD>
|
||||
<TD width="100%" height="70" align="right" valign="top">
|
||||
</TABLE>
|
||||
|
||||
|
||||
<H1>Darwin Core Decisions</H1>
|
||||
<TABLE cellspacing="0" class="docinfo">
|
||||
<TBODY>
|
||||
<TR>
|
||||
<TH>Title:</TH>
|
||||
<TD>Darwin Core Decisions</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Date Issued:</TH>
|
||||
<TD>2009-02-12</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Abstract:</TH>
|
||||
<TD>This document is a complete history of all decisions rendered for Darwin Core terms.</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Contributors:</TH>
|
||||
<TD>John Wieczorek (MVZ)<tuco@berkeley.edu>, Markus Döring (GBIF)<mdoering@gbif.org>, Renato De Giovanni (CRIA)<renato@cria.org.br>, Tim Robertson (GBIF)<trobertson@gbif.org>, Dave Vieglais (KUNHM)<vieglais@ku.edu>, Stan Blum (CAS)<sblum@calacademy.org></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Legal:</TH>
|
||||
<TD>This document is governed by the standard legal, copyright, licensing provisions and disclaimers issued by the Taxonomic Databases Working Group.</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Part of TDWG Standard:</TH>
|
||||
<TD>***URL to DwC Standard*** goes here</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Creator:</TH>
|
||||
<TD>Darwin Core Task Group</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Identifier:</TH>
|
||||
<TD><A href="http://rs.tdwg.org/dwc/terms/history/decisions/2009-02-12/">http://rs.tdwg.org/dwc/terms/history/decisions/2009-02-12/</A></TD>
|
||||
</TR>
|
||||
<TR><TH>Latest Version:</TH>
|
||||
<TD><A href="http://rs.tdwg.org/dwc/terms/history/decisions/">http://rs.tdwg.org/dwc/terms/history/decisions/</A></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Replaces:</TH>
|
||||
<TD><A href="http://wiki.tdwg.org/twiki/bin/view/DarwinCore/DarwinCoreDraftStandard">http://wiki.tdwg.org/twiki/bin/view/DarwinCore/DarwinCoreDraftStandard</A></TD>
|
||||
</TR>
|
||||
<TR><TH>Replaced By:</TH>
|
||||
<TD>Not applicable</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Translations:</TH>
|
||||
<TD><A href="http://rs.tdwg.org/dwc/translations/">http://rs.tdwg.org/dwc/translations/</A></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Document Status:</TH>
|
||||
<TD>This is a TDWG Request for Comment.</TD>
|
||||
</TR>
|
||||
</TBODY></TABLE>
|
||||
|
||||
<H2>Table of Contents</H2>
|
||||
<TABLE width="95%" border="0" align="center"><TBODY>
|
||||
<TR><TD width="100%">1. <a href="#introduction">Introduction</a>
|
||||
</TD></TR>
|
||||
<TR><TD width="100%">2. <a href="#references">References</a>
|
||||
</TD></TR>
|
||||
<TR><TD width="100%">3. <a href="#Decisions">Decisions</a>
|
||||
</TD></TR>
|
||||
</TBODY></TABLE
|
||||
|
||||
<A name="introduction" id="introduction"></A>
|
||||
<H2>1. Introduction</H2>
|
||||
|
||||
<P>From time to time changes are proposed to Darwin Core terms. This document shows the outcome of
|
||||
decisions based on officially proposed changes.
|
||||
|
||||
<A name="references" id="references"></A>
|
||||
<H2>2. References</H2>
|
||||
<TABLE width="95%" border="0" align="center">
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="DWC">[DWC]</A></TD>
|
||||
<TD width="40%"><A href="../../../index.htm">http://rs.tdwg.org/dwc/</A></TD>
|
||||
<TD width="50%">An introduction to the Darwin Core Standard.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="HISTORY">[HISTORY]</A></TD>
|
||||
<TD width="40%"><A href="../index.htm">http://rs.tdwg.org/dwc/terms/history/</A></TD>
|
||||
<TD width="50%">Complete historical reference to Darwin Core terms.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="NAMESPACEPOLICY">[NAMESPACEPOLICY]</A></TD>
|
||||
<TD width="40%"><A href="../../namespace/index.htm">http://rs.tdwg.org/dwc/terms/namespace/</A></TD>
|
||||
<TD width="50%">Policy governing Darwin Core terms.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="SIMPLEXMLSCHEMA">[SIMPLEXMLSCHEMA]</A></TD>
|
||||
<TD width="40%"><A href="../../../xsd/tdwg_dwc_simple.xsd">http://rs.tdwg.org/dwc/xsd/tdwg_dwc_simple.xsd</A></TD
|
||||
<TD width="50%">Simple Darwin Core XML schema.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="VERSIONS"></A>[VERSIONS]</TD>
|
||||
<TD width="40%"><A href="../versions/index.htm">http://rs.tdwg.org/dwc/terms/history/versions/</A></TD>
|
||||
<TD width="50%">Reference for mapping historical Darwin Core terms to the current recommended terms.</TD>
|
||||
</TR>
|
||||
|
||||
</TBODY></TABLE>
|
||||
|
||||
<A name="decisions" id="decisions"></A>
|
||||
<H2>3. Decisions</H2>
|
||||
<TABLE class="border" cellspacing="0">
|
||||
<TBODY>
|
||||
|
||||
<!-- Begin Decisions Table -->
|
||||
|
||||
<TR><TH colspan="2"><A name="Decision-2009-01-20_0">Decision-2009-01-20_0</A></TH></TR> <TR><TD>Identifier:</TD><TD>http://rs.tdwg.org/dwc/terms/history/decisions/Decision-2009-01-20_0</TD></TR> <TR><TD>Description:</TD><TD>Example of what a decision would look like.</TD></TR> <TR><TD>Date:</TD><TD>2009-01-20</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Decision-2009-01-20_1">Decision-2009-01-20_1</A></TH></TR> <TR><TD>Identifier:</TD><TD>http://rs.tdwg.org/dwc/terms/history/decisions/Decision-2009-01-20_1</TD></TR> <TR><TD>Description:</TD><TD>Another example of what a decision would look like.</TD></TR> <TR><TD>Date:</TD><TD>2009-01-21</TD></TR>
|
||||
|
||||
<!-- End Decisions Table -->
|
||||
|
||||
</TBODY></TABLE>
|
||||
|
||||
<!-- Footer -->
|
||||
<hr>
|
||||
<p><a rel="license" href="http://creativecommons.org/licenses/by/3.0/us/">
|
||||
<img alt="Creative Commons License" id="creative_commons_icon" src="http://i.creativecommons.org/l/by/3.0/88x31.png" /></a>
|
||||
Copyright 2009 - Biodiversity Information Standards - TDWG - <a href="http://www.tdwg.org/about-tdwg/contact-us/">Contact Us</a><br/>
|
||||
<p>Except where otherwise noted, content on this site is licensed under a
|
||||
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/us/"> Creative Commons
|
||||
Attribution 3.0 United States License</a>.</p>
|
||||
|
||||
</BODY></HTML>
|
|
@ -0,0 +1,638 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<HTML xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<HEAD>
|
||||
<META http-equiv="Content-Type" content="text/html; charset=US-ASCII"/>
|
||||
<TITLE>Mapping Darwin Core to ABCD</TITLE>
|
||||
<LINK rel="schema.DwC" href="http://rs.tdwg.org/dwc/terms/history/dwctoabcd.htm"/>
|
||||
<META name="DC.title" content="Mapping Darwin Core Terms to ABCD"/>
|
||||
<META name="DC.description" content="The quick reference guide to mappings from pre-standard Darwin Core versions to the the Access to Biological Collections Databases (ABCD) schema."/>
|
||||
<META name="DC.subject" content="biodiversity, standards"/>
|
||||
<META name="DC.creator" content="Darwin Core Task Group"/>
|
||||
<META name="DC.contributor" content="John Wieczorek (MVZ) <tuco@berkeley.edu>"/>
|
||||
<META name="DC.contributor" content="Markus Döring (GBIF) <mdoering@gbif.org>"/>
|
||||
<META name="DC.contributor" content="Renato De Giovanni (CRIA) <renato@cria.org.br>"/>
|
||||
<META name="DC.contributor" content="Tim Robertson (GBIF) <trobertson@gbif.org>"/>
|
||||
<META name="DC.contributor" content="Dave Vieglais (KUNHM) <vieglais@ku.edu>"/>
|
||||
<META name="DC.contributor" content="Stan Blum (CAS) <sblum@calacademy.org>"/>
|
||||
<META name="DC.modified" content="2009-02-12"/>
|
||||
<META name="DC.dateAccepted" content="2009-02-12"/>
|
||||
<META name="DC.format" content="text/html"/>
|
||||
<META name="DC.identifier" content="http://rs.tdwg.org/dwc/terms/history/dwctoabcd/2009-02-12"/>
|
||||
<META name="DC.publisher" content="Biodiversity Information Standards TDWG"/>
|
||||
<META name="DC.rights" content=""/>
|
||||
<META name="DC.accessRights" content="public"/>
|
||||
<META name="DC.bibliographicCitation" content="Darwin Core Standard. 2009"/>
|
||||
<META name="DC.isReplacedBy" content=""/>
|
||||
<META name="DC.replaces" content="http://www.bgbm.org/TDWG/CODATA/Schema/Mappings/DwCAndExtensions.htm"/>
|
||||
<META name="DC.language" content="en"/>
|
||||
<LINK rel="meta" href="http://www.tdwg.org/"/>
|
||||
<LINK rel="stylesheet" href="../../../DarwinCore_files/default.css" type="text/css"/>
|
||||
<SCRIPT src="../../../DarwinCore_files/default.js" type="text/javascript"></SCRIPT>
|
||||
</HEAD>
|
||||
<BODY>
|
||||
<DIV class="header">
|
||||
|
||||
<TABLE width="100%" cellspacing="0" cellpadding="0" bgcolor="#617394">
|
||||
<TBODY><TR>
|
||||
<TD width="70"><A href="http://www.tdwg.org"><IMG src="../../../DarwinCore_files/TDWGlogo_Twiki.gif" width="150" height="70" alt="Biodiversity Information Standards (TDWG) logo"></A></TD>
|
||||
<TD width="100%" height="70" align="right" valign="top">
|
||||
</TABLE>
|
||||
|
||||
<H1>Mapping Darwin Core to ABCD</H1>
|
||||
<TABLE cellspacing="0" class="docinfo">
|
||||
<TBODY>
|
||||
<TR>
|
||||
<TH>Title:</TH>
|
||||
<TD>Mapping Darwin Core to ABCD</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Date Issued:</TH>
|
||||
<TD>2009-02-12</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Abstract:</TH>
|
||||
<TD>This document is a quick reference for mappings between elements in pre-standard Darwin Core
|
||||
versions and the Access to Biological Collections Data [<a href="http://www.tdwg.org/schemas/abcd/2.06">ABCD</a>] schema. For complete historical Darwin Core
|
||||
term information, including version changes and details on pre-standard terms, see [<A href="../index.htm">HISTORY</A>].
|
||||
For a quick reference guide to the current recommended Darwin Core terms, see [<a href="../../index.htm">TERMS</A>].</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Contributors:</TH>
|
||||
<TD>John Wieczorek (MVZ)<tuco@berkeley.edu>, Markus Döring (GBIF)<mdoering@gbif.org>, Renato De Giovanni (CRIA)<renato@cria.org.br>, Tim Robertson (GBIF)<trobertson@gbif.org>, Dave Vieglais (KUNHM)<vieglais@ku.edu>, Stan Blum (CAS)<sblum@calacademy.org></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Legal:</TH>
|
||||
<TD>This document is governed by the standard legal, copyright, licensing provisions and disclaimers issued by the Taxonomic Databases Working Group.</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Part of TDWG Standard:</TH>
|
||||
<TD>***URL to DwC Standard*** goes here</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Creator:</TH>
|
||||
<TD>Darwin Core Task Group</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Identifier:</TH>
|
||||
<TD><A href="http://rs.tdwg.org/dwc/terms/history/dwctoabcd/2009-02-12/">http://rs.tdwg.org/dwc/terms/history/dwctoabcd/2009-02-12/</A></TD>
|
||||
</TR>
|
||||
<TR><TH>Latest Version:</TH>
|
||||
<TD><A href="http://rs.tdwg.org/dwc/terms/history/dwctoabcd/">http://rs.tdwg.org/dwc/terms/history/dwctoabcd/</A></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Replaces:</TH>
|
||||
<TD><A href="http://www.bgbm.org/TDWG/CODATA/Schema/Mappings/DwCAndExtensions.htm">http://www.bgbm.org/TDWG/CODATA/Schema/Mappings/DwCAndExtensions.htm</A></TD>
|
||||
</TR>
|
||||
<TR><TH>Replaced By:</TH>
|
||||
<TD>Not applicable</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Translations:</TH>
|
||||
<TD><A href="http://rs.tdwg.org/dwc/translations/">http://rs.tdwg.org/dwc/translations/</A></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Document Status:</TH>
|
||||
<TD>This is a TDWG Request for Comment.</TD>
|
||||
</TR>
|
||||
</TBODY></TABLE>
|
||||
|
||||
<H2>Table of Contents</H2>
|
||||
</P><TABLE width="95%" border="0" align="center"><TBODY>
|
||||
<TR><TD width="100%">1. <a href="#introduction">Introduction</a>
|
||||
</TD></TR>
|
||||
<TR><TD width="100%">2. <a href="#references">References</a>
|
||||
</TD></TR>
|
||||
<TR><TD width="100%">3. <a href="#mappings">Mappings</a>
|
||||
</TD></TR>
|
||||
</TBODY> </TABLE
|
||||
|
||||
<A name="introduction" id="introduction"></A>
|
||||
<H2>1. Introduction</H2>
|
||||
<P>Before becoming a TDWG standard, the Darwin Core was instantiated and deployed in many different
|
||||
application profiles, all of them based on XML schema. In this document the openly developed and
|
||||
widely used versions of the Darwin Core ([<A href="http://digir.net/schema/conceptual/darwin/2003/1.0/darwin2.xsd">CLASSIC</A>],
|
||||
[<A href="http://digir.net/schema/conceptual/darwin/2003/1.21/darwin2.xsd">MANIS</A>],
|
||||
[<A href="http://iobis.org/obis/obis.xsd">OBIS</A>],
|
||||
[<A href="http://rs.tdwg.org/dwc/tdwg_dw_core.xsd">DRAFT14</A>],
|
||||
[<A href="http://rs.tdwg.org/dwc/tdwg_dw_curatorial.xsd">CURATORIAL</A>],
|
||||
[<A href="http://rs.tdwg.org/dwc/tdwg_dw_geospatial.xsd">GEOSPATIAL</A>]) are each compared (mapped conceptually) to the
|
||||
Access to Biological Collections Data [<A href="http://www.tdwg.org/schemas/abcd/2.06">ABCD</A>] schema. Each historical
|
||||
version is mapped in a separate table and can be referenced quickly from the index in <a href="#mappings">Mappings</a> section.
|
||||
Each element in each Darwin Core versions is mapped to the one or more xpath designations of the equivalent element(s) in
|
||||
the most current version of ABCD.
|
||||
|
||||
<A name="references" id="references"></A>
|
||||
<H2>2. References</H2>
|
||||
<TABLE width="95%" border="0" align="center">
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="ABCD">[ABCD]</A></TD>
|
||||
<TD width="40%"><A href="http://www.tdwg.org/schemas/abcd/2.06">http://www.tdwg.org/schemas/abcd/2.06</A></TD>
|
||||
<TD width="50%">Access to Biological Collections Data Standard.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="CLASSIC">[CLASSIC]</A></TD>
|
||||
<TD width="40%"><A href="http://digir.net/schema/conceptual/darwin/2003/1.0/darwin2.xsd">http://digir.net/schema/conceptual/darwin/2003/1.0/darwin2.xsd</A></TD>
|
||||
<TD width="50%">Darwin Core 1.2 (Classic) schema.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="CURATORIAL">[CURATORIAL]</A></TD>
|
||||
<TD width="40%"><A href="http://rs.tdwg.org/dwc/tdwg_dw_curatorial.xsd">http://rs.tdwg.org/dwc/tdwg_dw_curatorial.xsd</A></TD>
|
||||
<TD width="50%">Darwin Core 1.4 Curatorial Extension schema.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="DRAFT14">[DRAFT14]</A></TD>
|
||||
<TD width="40%"><A href="http://rs.tdwg.org/dwc/tdwg_dw_core.xsd">http://rs.tdwg.org/dwc/tdwg_dw_core.xsd</A></TD>
|
||||
<TD width="50%">Darwin Core 1.4 schema.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="DWC">[DWC]</A></TD>
|
||||
<TD width="40%"><A href="../../../index.htm">http://rs.tdwg.org/dwc/</A></TD>
|
||||
<TD width="50%">An introduction to the Darwin Core Standard.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="GEOSPATIAL">[GEOSPATIAL]</A></TD>
|
||||
<TD width="40%"><A href="http://rs.tdwg.org/dwc/tdwg_dw_geospatial.xsd">http://rs.tdwg.org/dwc/tdwg_dw_geospatial.xsd</A></TD>
|
||||
<TD width="50%">Darwin Core 1.4 Geospatial Extension schema.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="MANIS">[MANIS]</A></TD>
|
||||
<TD width="40%"><A href="http://digir.net/schema/conceptual/darwin/2003/1.21/darwin2.xsd">http://digir.net/schema/conceptual/darwin/2003/1.21/darwin2.xsd</A></TD>
|
||||
<TD width="50%">Darwin Core 1.21 (MaNIS/HerpNet/ORNIS/FishNet2) schema.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="OBIS">[OBIS]</A></TD>
|
||||
<TD width="40%"><A href="http://iobis.org/obis/obis.xsd">http://iobis.org/obis/obis.xsd</A></TD>
|
||||
<TD width="50%">OBIS additions to Darwin Core 1.2 (Classic).</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="SIMPLEXMLSCHEMA">[SIMPLEXMLSCHEMA]</A></TD>
|
||||
<TD width="40%"><A href="../../../xsd/tdwg_dwc_simple.xsd">http://rs.tdwg.org/dwc/xsd/tdwg_dwc_simple.xsd</A></TD>
|
||||
<TD width="50%">Simple Darwin Core XML Schema.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="TERMS">[TERMS]</A></TD>
|
||||
<TD width="40%"><A href="../../index.htm">http://rs.tdwg.org/dwc/terms/</A></TD>
|
||||
<TD width="50%">Quick reference to recommended Darwin Core terms.</TD>
|
||||
</TR>
|
||||
|
||||
</TBODY></TABLE>
|
||||
|
||||
<A name=mappings" id="mappings"></A>
|
||||
<H2>3. Mappings</H2>
|
||||
<P>
|
||||
3.1 <a href="#dwcclassic">Darwin Core 1.2 (Classic)</a><br>
|
||||
3.2 <a href="#dwcmanis">Darwin Core 1.21 (MaNIS/HerpNet/ORNIS/FishNet2)</a><br>
|
||||
3.3 <a href="#dwcobis">OBIS extension</a><br>
|
||||
3.4 <a href="#dwcdraft14">Darwin Core 1.4 (Draft Standard)</a><br>
|
||||
3.5 <a href="#dwccuratorial">Darwin Core 1.4 Curatorial extension</a><br>
|
||||
3.6 <a href="#dwcgeospatial">Darwin Core 1.4 Geospatial extension</a><br>
|
||||
3.7 <a href="#dwccurrent">Darwin Core (Recommended)</a><br>
|
||||
<P>
|
||||
|
||||
<A name=dwcclassic" id="dwcclassic"></A>
|
||||
<H3>3.1 Darwin Core 1.2 (Classic)</H3>
|
||||
<TABLE class="border" cellspacing="0"><TBODY>
|
||||
<TR><TH colspan="1">Darwin Core 1.2 Element</TH><TH colspan="1">ABCD xpath</TH></TR>
|
||||
|
||||
<TR><TD><a href="../index.htm#DateLastModified-2003-06-13">DateLastModified</a></TD> <TD>Datasets/Dataset/Units/Unit/DateLastEdited</TD>
|
||||
<TR><TD><a href="../index.htm#InstitutionCode-2003-06-13">InstitutionCode</a></TD> <TD>Datasets/Dataset/Units/Unit/SourceInstitutionID</TD>
|
||||
<TR><TD><a href="../index.htm#CollectionCode-2003-06-13">CollectionCode</a></TD> <TD>Datasets/Dataset/Units/Unit/SourceID</TD>
|
||||
<TR><TD><a href="../index.htm#CatalogNumber-2003-06-13">CatalogNumber</a></TD> <TD>Datasets/Dataset/Units/Unit/UnitID</TD>
|
||||
<TR><TD><a href="../index.htm#ScientificName-2003-06-13">ScientificName</a></TD> <TD>Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/FullScientificNameString</TD>
|
||||
<TR><TD><a href="../index.htm#BasisOfRecord-2003-06-13">BasisOfRecord</a></TD> <TD>Datasets/Dataset/Units/Unit/RecordBasis</TD>
|
||||
<TR><TD><a href="../index.htm#Kingdom-2003-06-13">Kingdom</a></TD> <TD>Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = regnum</TD>
|
||||
<TR><TD><a href="../index.htm#Phylum-2003-06-13">Phylum</a></TD> <TD>Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = phylum</TD>
|
||||
<TR><TD><a href="../index.htm#Class-2003-06-13">Class</a></TD> <TD>Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = classis</TD>
|
||||
<TR><TD><a href="../index.htm#Order-2003-06-13">Order</a></TD> <TD>Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = ordo</TD>
|
||||
<TR><TD><a href="../index.htm#Family-2003-06-13">Family</a></TD> <TD>Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = familia</TD>
|
||||
<TR><TD><a href="../index.htm#Genus-2003-06-13">Genus</a></TD> <TD>{Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/GenusOrMonomial or Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/Genus
|
||||
<TR><TD><a href="../index.htm#Species-2003-06-13">Species</a></TD> <TD>{Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/SpeciesEpithet or Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/FirstE
|
||||
<TR><TD><a href="../index.htm#Subspecies-2003-06-13">Subspecies</a></TD> <TD>{Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/SubspeciesEpithet or Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/Sec
|
||||
<TR><TD><a href="../index.htm#ScientificNameAuthor-2003-06-13">ScientificNameAuthor</a></TD> <TD>{Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/ParentheticalAuthorTeamAndYear + Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/B
|
||||
<TR><TD><a href="../index.htm#IdentifiedBy-2003-06-13">IdentifiedBy</a></TD> <TD>Datasets/Dataset/Units/Unit/Identifications/Identification/Identifiers/IdentifiersText</TD>
|
||||
<TR><TD><a href="../index.htm#YearIdentified-2003-06-13">YearIdentified</a></TD> <TD>accessible from Datasets/Dataset/Units/Unit/Identifications/Identification/Date/DateText</TD>
|
||||
<TR><TD><a href="../index.htm#MonthIdentified-2003-06-13">MonthIdentified</a></TD> <TD>accessible from Datasets/Dataset/Units/Unit/Identifications/Identification/Date/DateText</TD>
|
||||
<TR><TD><a href="../index.htm#DayIdentified-2003-06-13">DayIdentified</a></TD> <TD>accessible from Datasets/Dataset/Units/Unit/Identifications/Identification/Date/DateText</TD>
|
||||
<TR><TD><a href="../index.htm#TypeStatus-2003-06-13">TypeStatus</a></TD> <TD>Datasets/Dataset/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeText</TD>
|
||||
<TR><TD><a href="../index.htm#CollectorNumber-2003-06-13">CollectorNumber</a></TD> <TD>Datasets/Dataset/Units/Unit/CollectorsFieldNumber</TD>
|
||||
<TR><TD><a href="../index.htm#FieldNumber-2003-06-13">FieldNumber</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/Code</TD>
|
||||
<TR><TD><a href="../index.htm#Collector-2003-06-13">Collector</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/GatheringAgents/GatheringAgentsText</TD>
|
||||
<TR><TD><a href="../index.htm#YearCollected-2003-06-13">YearCollected</a></TD> <TD>accessible from Datasets/Dataset/Units/Unit/Gathering/ISODateTimeBegin</TD>
|
||||
<TR><TD><a href="../index.htm#MonthCollected-2003-06-13">MonthCollected</a></TD> <TD>accessible from Datasets/Dataset/Units/Unit/Gathering/ISODateTimeBegin</TD>
|
||||
<TR><TD><a href="../index.htm#DayCollected-2003-06-13">DayCollected</a></TD> <TD>accessible from Datasets/Dataset/Units/Unit/Gathering/ISODateTimeBegin</TD>
|
||||
<TR><TD><a href="../index.htm#JulianDay-2003-06-13">JulianDay</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/DateTime/DayNumberBegin</TD>
|
||||
<TR><TD><a href="../index.htm#TimeOfDay-2003-06-13">TimeOfDay</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/DateTime/TimeOfDayBegin</TD>
|
||||
<TR><TD><a href="../index.htm#ContinentOcean-2003-06-13">ContinentOcean</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Continent</TD>
|
||||
<TR><TD><a href="../index.htm#Country-2003-06-13">Country</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/Country/CountryName</TD>
|
||||
<TR><TD><a href="../index.htm#StateProvince-2003-06-13">StateProvince</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= State or = Province (etc.)</TD>
|
||||
<TR><TD><a href="../index.htm#County-2003-06-13">County</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= County</TD>
|
||||
<TR><TD><a href="../index.htm#Locality-2003-06-13">Locality</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/AreaDetail</TD>
|
||||
<TR><TD><a href="../index.htm#Longitude-2003-06-13">Longitude</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/LongitudeDecimal</TD>
|
||||
<TR><TD><a href="../index.htm#Latitude-2003-06-13">Latitude</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/LatitudeDecimal</TD>
|
||||
<TR><TD><a href="../index.htm#CoordinatePrecision-2003-06-13">CoordinatePrecision</a></TD> <TD>not in ABCD?</TD>
|
||||
<TR><TD><a href="../index.htm#BoundingBox-2003-06-13">BoundingBox</a></TD> <TD>not covered by ABCD</TD>
|
||||
<TR><TD><a href="../index.htm#MinimumElevation-2003-06-13">MinimumElevation</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/LowerValue</TD>
|
||||
<TR><TD><a href="../index.htm#MaximumElevation-2003-06-13">MaximumElevation</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/UpperValue</TD>
|
||||
<TR><TD><a href="../index.htm#MinimumDepth-2003-06-13">MinimumDepth</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/LowerValue</TD>
|
||||
<TR><TD><a href="../index.htm#MaximumDepth-2003-06-13">MaximumDepth</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/UpperValue</TD>
|
||||
<TR><TD><a href="../index.htm#Sex-2003-06-13">Sex</a></TD> <TD>Datasets/Dataset/Units/Unit/Sex</TD>
|
||||
<TR><TD><a href="../index.htm#PreparationType-2003-06-13">PreparationType</a></TD> <TD>Datasets/Dataset/Units/Unit/SpecimenUnit/Preparations/PreparationsText</TD>
|
||||
<TR><TD><a href="../index.htm#IndividualCount-2003-06-13">IndividualCount</a></TD> <TD>Datasets/Dataset/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/LowerValue + constant</TD>
|
||||
<TR><TD><a href="../index.htm#PreviousCatalogNumber-2003-06-13">PreviousCatalogNumber</a></TD> <TD>Datasets/Dataset/Units/Unit/SpecimenUnit/History/PreviousUnitsText</TD>
|
||||
<TR><TD><a href="../index.htm#RelationshipType-2003-06-13">RelationshipType</a></TD> <TD>Datasets/Dataset/Units/Unit/Associations/UnitAssociation/AssociationType</TD>
|
||||
<TR><TD><a href="../index.htm#RelatedCatalogItem-2003-06-13">RelatedCatalogItem</a></TD> <TD>Datasets/Dataset/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceInstitutionCode + Datasets/Dataset/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceName + Datasets/Dataset/Units/Unit/Associations/UnitAssociation/AssociatedUnitI
|
||||
<TR><TD><a href="../index.htm#Notes-2003-06-13">Notes</a></TD> <TD>Datasets/Dataset/Units/Unit/Notes</TD>
|
||||
|
||||
</TBODY></TABLE>
|
||||
|
||||
<A name=dwcmanis" id="dwcmanis"></A>
|
||||
<H3>3.2 Darwin Core 1.21 (MaNIS/HerpNet/ORNIS/FishNet2)</H3>
|
||||
<TABLE class="border" cellspacing="0"><TBODY>
|
||||
<TR><TH colspan="1">Darwin Core 1.21 Element</TH><TH colspan="1">ABCD xpath</TH></TR>
|
||||
|
||||
<TR><TD><a href="../index.htm#DateLastModified-2003-06-17">DateLastModified</a></TD> <TD>Datasets/Dataset/Units/Unit/DateLastEdited</TD>
|
||||
<TR><TD><a href="../index.htm#BasisOfRecord-2003-06-17">BasisOfRecord</a></TD> <TD>Datasets/Dataset/Units/Unit/RecordBasis</TD>
|
||||
<TR><TD><a href="../index.htm#InstitutionCode-2003-06-17">InstitutionCode</a></TD> <TD>Datasets/Dataset/Units/Unit/SourceInstitutionID</TD>
|
||||
<TR><TD><a href="../index.htm#CollectionCode-2003-06-17">CollectionCode</a></TD> <TD>Datasets/Dataset/Units/Unit/SourceID</TD>
|
||||
<TR><TD><a href="../index.htm#CatalogNumberText-2003-06-17">CatalogNumberText</a></TD> <TD>Datasets/Dataset/Units/Unit/UnitID</TD>
|
||||
<TR><TD><a href="../index.htm#CatalogNumberNumeric-2003-06-17">CatalogNumberNumeric</a></TD> <TD>Datasets/Dataset/Units/Unit/UnitIDNumeric</TD>
|
||||
<TR><TD><a href="../index.htm#Collector-2003-06-17">Collector</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/GatheringAgents/GatheringAgentsText</TD>
|
||||
<TR><TD><a href="../index.htm#CollectorNumber-2003-06-17">CollectorNumber</a></TD> <TD>Datasets/Dataset/Units/Unit/CollectorsFieldNumber</TD>
|
||||
<TR><TD><a href="../index.htm#FieldNumber-2003-06-17">FieldNumber</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/Code</TD>
|
||||
<TR><TD><a href="../index.htm#YearCollected-2003-06-17">YearCollected</a></TD> <TD>accessible from Datasets/Dataset/Units/Unit/Gathering/ISODateTimeBegin</TD>
|
||||
<TR><TD><a href="../index.htm#MonthCollected-2003-06-17">MonthCollected</a></TD> <TD>accessible from Datasets/Dataset/Units/Unit/Gathering/ISODateTimeBegin</TD>
|
||||
<TR><TD><a href="../index.htm#DayCollected-2003-06-17">DayCollected</a></TD> <TD>accessible from Datasets/Dataset/Units/Unit/Gathering/ISODateTimeBegin</TD>
|
||||
<TR><TD><a href="../index.htm#TimeCollected-2003-06-17">TimeCollected</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/DateTime/TimeOfDayBegin</TD>
|
||||
<TR><TD><a href="../index.htm#VerbatimCollectingDate-2003-06-17">VerbatimCollectingDate</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/DateTime/DateText</TD>
|
||||
<TR><TD><a href="../index.htm#FieldNotes-2003-06-17">FieldNotes</a></TD> <TD>Datasets/Dataset/Units/Unit/FieldNotes</TD>
|
||||
<TR><TD><a href="../index.htm#JulianDay-2003-06-17">JulianDay</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/DateTime/DayNumberBegin</TD>
|
||||
<TR><TD><a href="../index.htm#HigherGeography-2003-06-17">HigherGeography</a></TD> <TD>{Datasets/Dataset/Units/Unit/Gathering/LocalityText or Datasets/Dataset/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName}</TD>
|
||||
<TR><TD><a href="../index.htm#ContinentOcean-2003-06-17">ContinentOcean</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Continent</TD>
|
||||
<TR><TD><a href="../index.htm#IslandGroup-2003-06-17">IslandGroup</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Island group</TD>
|
||||
<TR><TD><a href="../index.htm#Island-2003-06-17">Island</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Island</TD>
|
||||
<TR><TD><a href="../index.htm#Country-2003-06-17">Country</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/Country/CountryName</TD>
|
||||
<TR><TD><a href="../index.htm#StateProvince-2003-06-17">StateProvince</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= State or = Province (etc.)</TD>
|
||||
<TR><TD><a href="../index.htm#County-2003-06-17">County</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= County</TD>
|
||||
<TR><TD><a href="../index.htm#Locality-2003-06-17">Locality</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/AreaDetail</TD>
|
||||
<TR><TD><a href="../index.htm#DecimalLatitude-2003-06-17">DecimalLatitude</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/LatitudeDecimal</TD>
|
||||
<TR><TD><a href="../index.htm#DecimalLongitude-2003-06-17">DecimalLongitude</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/LongitudeDecimal</TD>
|
||||
<TR><TD><a href="../index.htm#HorizontalDatum-2003-06-17">HorizontalDatum</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/SpatialDatum</TD>
|
||||
<TR><TD><a href="../index.htm#OriginalCoordinateSystem-2003-06-17">OriginalCoordinateSystem</a></TD> <TD>(partly) Datasets/Dataset/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesGrid/GridCellSystem</TD>
|
||||
<TR><TD><a href="../index.htm#VerbatimLatitude-2003-06-17">VerbatimLatitude</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/VerbatimLatitude</TD>
|
||||
<TR><TD><a href="../index.htm#VerbatimLongitude-2003-06-17">VerbatimLongitude</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/VerbatimLongitude</TD>
|
||||
<TR><TD><a href="../index.htm#GeorefMethod-2003-06-17">GeorefMethod</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinateMethod</TD>
|
||||
<TR><TD><a href="../index.htm#CoordinateUncertaintyInMeters-2003-06-17">CoordinateUncertaintyInMeters</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/CoordinateErrorDistanceInMeters</TD>
|
||||
<TR><TD><a href="../index.htm#LatLongComments-2003-06-17">LatLongComments</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceRemarks</TD>
|
||||
<TR><TD><a href="../index.htm#BoundingBox-2003-06-17">BoundingBox</a></TD> <TD>not covered by ABCD</TD>
|
||||
<TR><TD><a href="../index.htm#MinimumElevationInMeters-2003-06-17">MinimumElevationInMeters</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/LowerValue</TD>
|
||||
<TR><TD><a href="../index.htm#MaximumElevationInMeters-2003-06-17">MaximumElevationInMeters</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/UpperValue</TD>
|
||||
<TR><TD><a href="../index.htm#VerbatimElevation-2003-06-17">VerbatimElevation</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/Altitude/MeasurementOrFactText</TD>
|
||||
<TR><TD><a href="../index.htm#MinimumDepthInMeters-2003-06-17">MinimumDepthInMeters</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/LowerValue</TD>
|
||||
<TR><TD><a href="../index.htm#MaximumDepthInMeters-2003-06-17">MaximumDepthInMeters</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/UpperValue</TD>
|
||||
<TR><TD><a href="../index.htm#VerbatimDepth-2003-06-17">VerbatimDepth</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/Depth/MeasurementOrFactText</TD>
|
||||
<TR><TD><a href="../index.htm#ScientificName-2003-06-17">ScientificName</a></TD> <TD>Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/FullScientificNameString</TD>
|
||||
<TR><TD><a href="../index.htm#HigherTaxon-2003-06-17">HigherTaxon</a></TD> <TD>Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName</TD>
|
||||
<TR><TD><a href="../index.htm#Kingdom-2003-06-17">Kingdom</a></TD> <TD>Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = regnum</TD>
|
||||
<TR><TD><a href="../index.htm#Phylum-2003-06-17">Phylum</a></TD> <TD>Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = phylum</TD>
|
||||
<TR><TD><a href="../index.htm#Class-2003-06-17">Class</a></TD> <TD>Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = classis</TD>
|
||||
<TR><TD><a href="../index.htm#Order-2003-06-17">Order</a></TD> <TD>Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = ordo</TD>
|
||||
<TR><TD><a href="../index.htm#Family-2003-06-17">Family</a></TD> <TD>Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = familia</TD>
|
||||
<TR><TD><a href="../index.htm#Genus-2003-06-17">Genus</a></TD> <TD>{Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/GenusOrMonomial or Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/Genus
|
||||
<TR><TD><a href="../index.htm#Species-2003-06-17">Species</a></TD> <TD>{Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/SpeciesEpithet or Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/FirstE
|
||||
<TR><TD><a href="../index.htm#Subspecies-2003-06-17">Subspecies</a></TD> <TD>{Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/SubspeciesEpithet or Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/Sec
|
||||
<TR><TD><a href="../index.htm#ScientificNameAuthor-2003-06-17">ScientificNameAuthor</a></TD> <TD>{Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/ParentheticalAuthorTeamAndYear + Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/B
|
||||
<TR><TD><a href="../index.htm#IdentifiedBy-2003-06-17">IdentifiedBy</a></TD> <TD>Datasets/Dataset/Units/Unit/Identifications/Identification/Identifiers/IdentifiersText</TD>
|
||||
<TR><TD><a href="../index.htm#IdentificationModifier-2003-06-17">IdentificationModifier</a></TD> <TD>Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/IdentificationQualifier</TD>
|
||||
<TR><TD><a href="../index.htm#YearIdentified-2003-06-17">YearIdentified</a></TD> <TD>accessible from Datasets/Dataset/Units/Unit/Identifications/Identification/Date/DateText</TD>
|
||||
<TR><TD><a href="../index.htm#MonthIdentified-2003-06-17">MonthIdentified</a></TD> <TD>accessible from Datasets/Dataset/Units/Unit/Identifications/Identification/Date/DateText</TD>
|
||||
<TR><TD><a href="../index.htm#DayIdentified-2003-06-17">DayIdentified</a></TD> <TD>accessible from Datasets/Dataset/Units/Unit/Identifications/Identification/Date/DateText</TD>
|
||||
<TR><TD><a href="../index.htm#TypeStatus-2003-06-17">TypeStatus</a></TD> <TD>Datasets/Dataset/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeText</TD>
|
||||
<TR><TD><a href="../index.htm#Sex-2003-06-17">Sex</a></TD> <TD>Datasets/Dataset/Units/Unit/Sex</TD>
|
||||
<TR><TD><a href="../index.htm#Preparations-2003-06-17">Preparations</a></TD> <TD>Datasets/Dataset/Units/Unit/SpecimenUnit/Preparations/PreparationsText</TD>
|
||||
<TR><TD><a href="../index.htm#Tissues-2003-06-17">Tissues</a></TD> <TD>Datasets/Dataset/Units/Unit/SpecimenUnit/Preparations/PreparationsText</TD>
|
||||
<TR><TD><a href="../index.htm#IndividualCount-2003-06-17">IndividualCount</a></TD> <TD>Datasets/Dataset/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/LowerValue + constant</TD>
|
||||
<TR><TD><a href="../index.htm#AgeClass-2003-06-17">AgeClass</a></TD> <TD>{Datasets/Dataset/Units/Unit/ZoologicalUnit/PhasesOrStages/PhaseOrStage or Datasets/Dataset/Units/Unit/MycologicalUnit/MycologicalLifeStages/MycologicalLifeStage or Datasets/Dataset/Units/Unit/MycologicalUnit/MycologicalSexualStage}</TD>
|
||||
<TR><TD><a href="../index.htm#GenBankNum-2003-06-17">GenBankNum</a></TD> <TD>Datasets/Dataset/Units/Unit/Sequences/Sequence/ID-in-Database + constant</TD>
|
||||
<TR><TD><a href="../index.htm#OtherCatalogNumbers-2003-06-17">OtherCatalogNumbers</a></TD> <TD>Datasets/Dataset/Units/Unit/SpecimenUnit/History/PreviousUnitsText</TD>
|
||||
<TR><TD><a href="../index.htm#RelatedCatalogedItems-2003-06-17">RelatedCatalogedItems</a></TD> <TD>Datasets/Dataset/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceInstitutionCode + Datasets/Dataset/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceName + Datasets/Dataset/Units/Unit/Associations/UnitAssociation/AssociatedUnitI
|
||||
<TR><TD><a href="../index.htm#Remarks-2003-06-17">Remarks</a></TD> <TD>Datasets/Dataset/Units/Unit/Notes</TD>
|
||||
|
||||
</TBODY></TABLE>
|
||||
|
||||
<A name=dwcobis" id="dwcobis"></A>
|
||||
<H3>3.3 OBIS extension</H3>
|
||||
<TABLE class="border" cellspacing="0"><TBODY>
|
||||
<TR><TH colspan="1">OBIS Element</TH><TH colspan="1">ABCD xpath</TH></TR>
|
||||
|
||||
<TR><TD><a href="../index.htm#RecordURL-2005-07-10">RecordURL</a></TD> <TD>Datasets/Dataset/Units/Unit/RecordURI</TD>
|
||||
<TR><TD><a href="../index.htm#Source-2005-07-10">Source</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/GatheringAgents/GatheringAgentsText</TD>
|
||||
<TR><TD><a href="../index.htm#Citation-2005-07-10">Citation</a></TD> <TD>Datasets/Dataset/Units/Unit/IPRStatements/Citations/Citation/Text</TD>
|
||||
<TR><TD><a href="../index.htm#Subgenus-2005-07-10">Subgenus</a></TD> <TD>Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/Subgenus</TD>
|
||||
<TR><TD><a href="../index.htm#StartYearCollected-2005-07-10">StartYearCollected</a></TD> <TD>accessible from Datasets/Dataset/Units/Unit/Gathering/ISODateTimeBegin</TD>
|
||||
<TR><TD><a href="../index.htm#EndYearCollected-2005-07-10">EndYearCollected</a></TD> <TD>accessible from Datasets/Dataset/Units/Unit/Gathering/ISODateTimeEnd</TD>
|
||||
<TR><TD><a href="../index.htm#StartMonthCollected-2005-07-10">StartMonthCollected</a></TD> <TD>accessible from Datasets/Dataset/Units/Unit/Gathering/ISODateTimeBegin</TD>
|
||||
<TR><TD><a href="../index.htm#EndMonthCollected-2005-07-10">EndMonthCollected</a></TD> <TD>accessible from Datasets/Dataset/Units/Unit/Gathering/ISODateTimeEnd</TD>
|
||||
<TR><TD><a href="../index.htm#StartDayCollected-2005-07-10">StartDayCollected</a></TD> <TD>accessible from Datasets/Dataset/Units/Unit/Gathering/ISODateTimeBegin</TD>
|
||||
<TR><TD><a href="../index.htm#EndDayCollected-2005-07-10">EndDayCollected</a></TD> <TD>accessible from Datasets/Dataset/Units/Unit/Gathering/ISODateTimeEnd</TD>
|
||||
<TR><TD><a href="../index.htm#StartJulianDay-2005-07-10">StartJulianDay</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/DateTime/DayNumberBegin</TD>
|
||||
<TR><TD><a href="../index.htm#EndJulianDay-2005-07-10">EndJulianDay</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/DateTime/DayNumberEnd</TD>
|
||||
<TR><TD><a href="../index.htm#StartTimeOfDay-2005-07-10">StartTimeOfDay</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/DateTime/TimeOfDayBegin</TD>
|
||||
<TR><TD><a href="../index.htm#EndTimeOfDay-2005-07-10">EndTimeOfDay</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/DateTime/TimeOfDayEnd</TD>
|
||||
<TR><TD><a href="../index.htm#TimeZone-2005-07-10">TimeZone</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/DateTime/TimeZone</TD>
|
||||
<TR><TD><a href="../index.htm#StartLongitude-2005-07-10">StartLongitude</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/CoordinateSets/SiteCoordinates/CoordinatesLatLon/LongitudeDecimal with attribute "begin" set to true</TD>
|
||||
<TR><TD><a href="../index.htm#EndLongitude-2005-07-10">EndLongitude</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/CoordinateSets/SiteCoordinates/CoordinatesLatLon/LongitudeDecimal with attribute "begin" set to true</TD>
|
||||
<TR><TD><a href="../index.htm#StartLatitude-2005-07-10">StartLatitude</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/CoordinateSets/SiteCoordinates/CoordinatesLatLon/LatitudeDecimal with attribute "begin" set to true</TD>
|
||||
<TR><TD><a href="../index.htm#EndLatitude-2005-07-10">EndLatitude</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/CoordinateSets/SiteCoordinates/CoordinatesLatLon/LatitudeDecimal with attribute "begin" set to true</TD>
|
||||
<TR><TD><a href="../index.htm#Start_EndCoordinatePrecision-2005-07-10">Start_EndCoordinatePrecision</a></TD> <TD>not in ABCD?</TD>
|
||||
<TR><TD><a href="../index.htm#DepthRange-2005-07-10">DepthRange</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/Depth/MeasurementOrFactText</TD>
|
||||
<TR><TD><a href="../index.htm#Temperature-2005-07-10">Temperature</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/LowerValue + constant</TD>
|
||||
<TR><TD><a href="../index.htm#Lifestage-2005-07-10">Lifestage</a></TD> <TD>{Datasets/Dataset/Units/Unit/ZoologicalUnit/PhasesOrStages/PhaseOrStage or Datasets/Dataset/Units/Unit/MycologicalUnit/MycologicalLifeStages/MycologicalLifeStage or Datasets/Dataset/Units/Unit/MycologicalUnit/MycologicalSexualStage}</TD>
|
||||
<TR><TD><a href="../index.htm#ObservedIndividualCount-2005-07-10">ObservedIndividualCount</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/LowerValue + constant</TD>
|
||||
<TR><TD><a href="../index.htm#SampleSize-2005-07-10">SampleSize</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/LowerValue + constant</TD>
|
||||
<TR><TD><a href="../index.htm#ObservedWeight-2005-07-10">ObservedWeight</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/LowerValue + constant</TD>
|
||||
<TR><TD><a href="../index.htm#GMLFeature-2005-07-10">GMLFeature</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/GML</TD>
|
||||
|
||||
</TBODY></TABLE>
|
||||
|
||||
<A name=dwcdraft14" id="dwcdraft14"></A>
|
||||
<H3>3.4 Darwin Core 1.4 (Draft Standard)</H3>
|
||||
<TABLE class="border" cellspacing="0"><TBODY>
|
||||
<TR><TH colspan="1">Darwin Core 1.4 Element</TH><TH colspan="1">ABCD xpath</TH></TR>
|
||||
|
||||
<TR><TD><a href="../index.htm#GlobalUniqueIdentifier-2007-04-17">GlobalUniqueIdentifier</a></TD> <TD>Datasets/Dataset/Units/Unit/UnitGUID</TD>
|
||||
<TR><TD><a href="../index.htm#DateLastModified-2007-04-17">DateLastModified</a></TD> <TD>Datasets/Dataset/Units/Unit/DateLastEdited</TD>
|
||||
<TR><TD><a href="../index.htm#BasisOfRecord-2007-04-17">BasisOfRecord</a></TD> <TD>Datasets/Dataset/Units/Unit/RecordBasis</TD>
|
||||
<TR><TD><a href="../index.htm#InstitutionCode-2007-04-17">InstitutionCode</a></TD> <TD>Datasets/Dataset/Units/Unit/SourceInstitutionID</TD>
|
||||
<TR><TD><a href="../index.htm#CollectionCode-2007-04-17">CollectionCode</a></TD> <TD>Datasets/Dataset/Units/Unit/SourceID</TD>
|
||||
<TR><TD><a href="../index.htm#CatalogNumber-2007-04-17">CatalogNumber</a></TD> <TD>Datasets/Dataset/Units/Unit/UnitID</TD>
|
||||
<TR><TD><a href="../index.htm#InformationWithheld-2007-04-17">InformationWithheld</a></TD> <TD>Datasets/Dataset/Units/Unit/InformationWithheld</TD>
|
||||
<TR><TD><a href="../index.htm#Remarks-2007-04-17">Remarks</a></TD> <TD>Datasets/Dataset/Units/Unit/Notes</TD>
|
||||
<TR><TD><a href="../index.htm#ScientificName-2007-04-17">ScientificName</a></TD> <TD>Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/FullScientificNameString</TD>
|
||||
<TR><TD><a href="../index.htm#HigherTaxon-2007-04-17">HigherTaxon</a></TD> <TD>Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName</TD>
|
||||
<TR><TD><a href="../index.htm#Kingdom-2007-04-17">Kingdom</a></TD> <TD>Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = regnum</TD>
|
||||
<TR><TD><a href="../index.htm#Phylum-2007-04-17">Phylum</a></TD> <TD>Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = phylum</TD>
|
||||
<TR><TD><a href="../index.htm#Class-2007-04-17">Class</a></TD> <TD>Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = classis</TD>
|
||||
<TR><TD><a href="../index.htm#Order-2007-04-17">Order</a></TD> <TD>Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = ordo</TD>
|
||||
<TR><TD><a href="../index.htm#Family-2007-04-17">Family</a></TD> <TD>Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = familia</TD>
|
||||
<TR><TD><a href="../index.htm#Genus-2007-04-17">Genus</a></TD> <TD>{Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/GenusOrMonomial or Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/Genus
|
||||
<TR><TD><a href="../index.htm#SpecificEpithet-2007-04-17">SpecificEpithet</a></TD> <TD>{Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/SpeciesEpithet or Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/FirstE
|
||||
<TR><TD><a href="../index.htm#InfraspecificRank-2007-04-17">InfraspecificRank</a></TD> <TD>Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/Rank</TD>
|
||||
<TR><TD><a href="../index.htm#InfraspecificEpithet-2007-04-17">InfraspecificEpithet</a></TD> <TD>{Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/SubspeciesEpithet or Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/Sec
|
||||
<TR><TD><a href="../index.htm#AuthorYearOfScientificName-2007-04-17">AuthorYearOfScientificName</a></TD> <TD>{Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/ParentheticalAuthorTeamAndYear + Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/B
|
||||
<TR><TD><a href="../index.htm#NomenclaturalCode-2007-04-17">NomenclaturalCode</a></TD> <TD>Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/Code</TD>
|
||||
<TR><TD><a href="../index.htm#IdentificationQualifier-2007-04-17">IdentificationQualifier</a></TD> <TD>Datasets/Dataset/Units/Unit/Identifications/Identification/TaxonIdentified/IdentificationQualifier</TD>
|
||||
<TR><TD><a href="../index.htm#HigherGeography-2007-04-17">HigherGeography</a></TD> <TD>{Datasets/Dataset/Units/Unit/Gathering/LocalityText or Datasets/Dataset/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName}</TD>
|
||||
<TR><TD><a href="../index.htm#Continent-2007-04-17">Continent</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Continent</TD>
|
||||
<TR><TD><a href="../index.htm#WaterBody-2007-04-17">WaterBody</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Water body</TD>
|
||||
<TR><TD><a href="../index.htm#IslandGroup-2007-04-17">IslandGroup</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Island group</TD>
|
||||
<TR><TD><a href="../index.htm#Island-2007-04-17">Island</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Island</TD>
|
||||
<TR><TD><a href="../index.htm#Country-2007-04-17">Country</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/Country/CountryName</TD>
|
||||
<TR><TD><a href="../index.htm#StateProvince-2007-04-17">StateProvince</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= State or = Province (etc.)</TD>
|
||||
<TR><TD><a href="../index.htm#County-2007-04-17">County</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= County</TD>
|
||||
<TR><TD><a href="../index.htm#Locality-2007-04-17">Locality</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/AreaDetail</TD>
|
||||
<TR><TD><a href="../index.htm#MinimumElevationInMeters-2007-04-17">MinimumElevationInMeters</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/LowerValue</TD>
|
||||
<TR><TD><a href="../index.htm#MaximumElevationInMeters-2007-04-17">MaximumElevationInMeters</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/UpperValue</TD>
|
||||
<TR><TD><a href="../index.htm#MinimumDepthInMeters-2007-04-17">MinimumDepthInMeters</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/LowerValue</TD>
|
||||
<TR><TD><a href="../index.htm#MaximumDepthInMeters-2007-04-17">MaximumDepthInMeters</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/UpperValue</TD>
|
||||
<TR><TD><a href="../index.htm#CollectingMethod-2007-04-17">CollectingMethod</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/Method</TD>
|
||||
<TR><TD><a href="../index.htm#ValidDistributionFlag-2007-04-17">ValidDistributionFlag</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/ValidDistributionFlag</TD>
|
||||
<TR><TD><a href="../index.htm#EarliestDateCollected-2007-04-17">EarliestDateCollected</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/ISODateTimeBegin</TD>
|
||||
<TR><TD><a href="../index.htm#LatestDateCollected-2007-04-17">LatestDateCollected</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/ISODateTimeEnd</TD>
|
||||
<TR><TD><a href="../index.htm#DayOfYear-2007-04-17">DayOfYear</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/DateTime/DayNumberBegin</TD>
|
||||
<TR><TD><a href="../index.htm#Collector-2007-04-17">Collector</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/GatheringAgents/GatheringAgentsText</TD>
|
||||
<TR><TD><a href="../index.htm#Sex-2007-04-17">Sex</a></TD> <TD>Datasets/Dataset/Units/Unit/Sex</TD>
|
||||
<TR><TD><a href="../index.htm#LifeStage-2007-04-17">LifeStage</a></TD> <TD>{Datasets/Dataset/Units/Unit/ZoologicalUnit/PhasesOrStages/PhaseOrStage or Datasets/Dataset/Units/Unit/MycologicalUnit/MycologicalLifeStages/MycologicalLifeStage or Datasets/Dataset/Units/Unit/MycologicalUnit/MycologicalSexualStage}</TD>
|
||||
<TR><TD><a href="../index.htm#Attributes-2007-04-17">Attributes</a></TD> <TD>Datasets/Dataset/Units/Unit/MeasurementsOrFacts</TD>
|
||||
<TR><TD><a href="../index.htm#ImageURL-2007-04-17">ImageURL</a></TD> <TD>Datasets/Dataset/Units/Unit/MultimediaObjects</TD>
|
||||
<TR><TD><a href="../index.htm#RelatedInformation-2007-04-17">RelatedInformation</a></TD> <TD>Datasets/Dataset/Units/Unit/RecordURI</TD>
|
||||
|
||||
</TBODY></TABLE>
|
||||
|
||||
<A name=dwccuratorial" id="dwccuratorial"></A>
|
||||
<H3>3.5 Darwin Core 1.4 Curatorial extension</H3>
|
||||
<TABLE class="border" cellspacing="0"><TBODY>
|
||||
<TR><TH colspan="1">Darwin Core 1.4 Curatorial Element</TH><TH colspan="1">ABCD xpath</TH></TR>
|
||||
|
||||
<TR><TD><a href="../index.htm#CatalogNumberNumeric-2007-04-17">CatalogNumberNumeric</a></TD> <TD>Datasets/Dataset/Units/Unit/UnitIDNumeric</TD>
|
||||
<TR><TD><a href="../index.htm#IdentifiedBy-2007-04-17">IdentifiedBy</a></TD> <TD>Datasets/Dataset/Units/Unit/Identifications/Identification/Identifiers/IdentifiersText</TD>
|
||||
<TR><TD><a href="../index.htm#DateIdentified-2007-04-17">DateIdentified</a></TD> <TD>Datasets/Dataset/Units/Unit/Identifications/Identification/Date/DateText</TD>
|
||||
<TR><TD><a href="../index.htm#CollectorNumber-2007-04-17">CollectorNumber</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/GatheringAgents/GatheringAgentsText</TD>
|
||||
<TR><TD><a href="../index.htm#FieldNumber-2007-04-17">FieldNumber</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/Code</TD>
|
||||
<TR><TD><a href="../index.htm#FieldNotes-2007-04-17">FieldNotes</a></TD> <TD>Datasets/Dataset/Units/Unit/FieldNotes</TD>
|
||||
<TR><TD><a href="../index.htm#VerbatimCollectingDate-2007-04-17">VerbatimCollectingDate</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/DateTime/DateText</TD>
|
||||
<TR><TD><a href="../index.htm#VerbatimElevation-2007-04-17">VerbatimElevation</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/Altitude/MeasurementOrFactText</TD>
|
||||
<TR><TD><a href="../index.htm#VerbatimDepth-2007-04-17">VerbatimDepth</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/Depth/MeasurementOrFactText</TD>
|
||||
<TR><TD><a href="../index.htm#Preparations-2007-04-17">Preparations</a></TD> <TD>Datasets/Dataset/Units/Unit/SpecimenUnit/Preparations/PreparationsText</TD>
|
||||
<TR><TD><a href="../index.htm#TypeStatus-2007-04-17">TypeStatus</a></TD> <TD>Datasets/Dataset/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeText</TD>
|
||||
<TR><TD><a href="../index.htm#GenBankNumber-2007-04-17">GenBankNumber</a></TD> <TD>Datasets/Dataset/Units/Unit/Sequences/Sequence/ID-in-Database + constant</TD>
|
||||
<TR><TD><a href="../index.htm#OtherCatalogNumbers-2007-04-17">OtherCatalogNumbers</a></TD> <TD>Datasets/Dataset/Units/Unit/SpecimenUnit/History/PreviousUnitsText</TD>
|
||||
<TR><TD><a href="../index.htm#RelatedCatalogedItems-2007-04-17">RelatedCatalogedItems</a></TD> <TD>Datasets/Dataset/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceInstitutionCode + Datasets/Dataset/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceName + Datasets/Dataset/Units/Unit/Associations/UnitAssociation/AssociatedUnitI
|
||||
<TR><TD><a href="../index.htm#Disposition-2007-04-17">Disposition</a></TD> <TD>Datasets/Dataset/Units/Unit/SpecimenUnit/Disposition</TD>
|
||||
<TR><TD><a href="../index.htm#IndividualCount-2007-04-17">IndividualCount</a></TD> <TD>Datasets/Dataset/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/LowerValue + constant</TD>
|
||||
|
||||
</TBODY></TABLE>
|
||||
|
||||
<A name=dwcgeospatial" id="dwcgeospatial"></A>
|
||||
<H3>3.6 Darwin Core 1.4 Geospatial extension</H3>
|
||||
<TABLE class="border" cellspacing="0"><TBODY>
|
||||
<TR><TH colspan="1">Darwin Core 1.4 Geospatial Element</TH><TH colspan="1">ABCD xpath</TH></TR>
|
||||
|
||||
<TR><TD><a href="../index.htm#DecimalLatitude-2007-04-17">DecimalLatitude</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/LatitudeDecimal</TD>
|
||||
<TR><TD><a href="../index.htm#DecimalLongitude-2007-04-17">DecimalLongitude</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/LongitudeDecimal</TD>
|
||||
<TR><TD><a href="../index.htm#GeodeticDatum-2007-04-17">GeodeticDatum</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/SpatialDatum</TD>
|
||||
<TR><TD><a href="../index.htm#CoordinateUncertaintyInMeters-2007-04-17">CoordinateUncertaintyInMeters</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/CoordinateErrorDistanceInMeters</TD>
|
||||
<TR><TD><a href="../index.htm#PointRadiusSpatialFit-2007-04-17">PointRadiusSpatialFit</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/PointRadiusSpatialFit</TD>
|
||||
<TR><TD><a href="../index.htm#VerbatimCoordinates-2007-04-17">VerbatimCoordinates</a></TD> <TD>{Datasets/Dataset/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/CoordinatesText or Datasets/Dataset/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesUTM/UTMText}</TD>
|
||||
<TR><TD><a href="../index.htm#VerbatimLatitude-2007-04-17">VerbatimLatitude</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/VerbatimLatitude</TD>
|
||||
<TR><TD><a href="../index.htm#VerbatimLongitude-2007-04-17">VerbatimLongitude</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/VerbatimLongitude</TD>
|
||||
<TR><TD><a href="../index.htm#VerbatimCoordinateSystem-2007-04-17">VerbatimCoordinateSystem</a></TD> <TD>(partly) Datasets/Dataset/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesGrid/GridCellSystem</TD>
|
||||
<TR><TD><a href="../index.htm#GeoreferenceProtocol-2007-04-17">GeoreferenceProtocol</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinateMethod</TD>
|
||||
<TR><TD><a href="../index.htm#GeoreferenceSources-2007-04-17">GeoreferenceSources</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceSources</TD>
|
||||
<TR><TD><a href="../index.htm#GeoreferenceVerificationStatus-2007-04-17">GeoreferenceVerificationStatus</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceVerificationStatus</TD>
|
||||
<TR><TD><a href="../index.htm#GeoreferenceRemarks-2007-04-17">GeoreferenceRemarks</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceRemarks</TD>
|
||||
<TR><TD><a href="../index.htm#FootprintWKT-2007-04-17">FootprintWKT</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/FootprintWKT</TD>
|
||||
<TR><TD><a href="../index.htm#FootprintSpatialFit-2007-04-17">FootprintSpatialFit</a></TD> <TD>Datasets/Dataset/Units/Unit/Gathering/FootprintSpatialFit</TD>
|
||||
|
||||
</TBODY></TABLE>
|
||||
|
||||
<A name=dwcurrent" id="dwccurrent"></A>
|
||||
<H3>3.7 Darwin Core (Recommended)</H3>
|
||||
<TABLE class="border" cellspacing="0"><TBODY>
|
||||
<TR><TH colspan="1">Darwin Core Recommended Term</TH><TH colspan="1">ABCD xpath</TH></TR>
|
||||
|
||||
<TR><TD><a href="../index.htm#Dataset-2008-11-19">Dataset</a></TD> <TD>DataSets/DataSet</TD>
|
||||
<TR><TD><a href="../index.htm#Sample-2008-11-19">Sample</a></TD> <TD>DataSets/DataSet/Units/Unit</TD>
|
||||
<TR><TD><a href="../index.htm#SamplingEvent-2008-11-19">SamplingEvent</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering</TD>
|
||||
<TR><TD><a href="../index.htm#SamplingLocation-2008-11-19">SamplingLocation</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/LocalityText</TD>
|
||||
<TR><TD><a href="../index.htm#Identification-2008-11-19">Identification</a></TD> <TD>DataSets/DataSet/Units/Unit/Identifications/Identification</TD>
|
||||
<TR><TD><a href="../index.htm#Taxon-2008-11-19">Taxon</a></TD> <TD>no simple equivalent in ABCD</TD>
|
||||
<TR><TD><a href="../index.htm#ResourceRelationship-2009-01-21">ResourceRelationship</a></TD> <TD>DataSets/DataSet/Units/Unit/Associations</TD>
|
||||
<TR><TD><a href="../index.htm#DatasetID-2008-11-19">DatasetID</a></TD> <TD>DataSets/DataSet/DataSetGUID</TD>
|
||||
<TR><TD><a href="../index.htm#SampleID-2008-11-19">SampleID</a></TD> <TD>DataSets/DataSet/Units/Unit/UnitGUID</TD>
|
||||
<TR><TD><a href="../index.htm#InstitutionCode-2008-11-19">InstitutionCode</a></TD> <TD>DataSets/DataSet/Units/Unit/SourceInstitutionID</TD>
|
||||
<TR><TD><a href="../index.htm#CollectionCode-2008-11-19">CollectionCode</a></TD> <TD>DataSets/DataSet/Units/Unit/SourceID</TD>
|
||||
<TR><TD><a href="../index.htm#CollectionID-2008-11-19">CollectionID</a></TD> <TD>DataSets/DataSet/Units/Unit/SourceID</TD>
|
||||
<TR><TD><a href="../index.htm#BasisOfRecord-2008-11-19">BasisOfRecord</a></TD> <TD>DataSets/DataSet/Units/Unit/RecordBasis</TD>
|
||||
<TR><TD><a href="../index.htm#SampleAttribute-2008-11-19">SampleAttribute</a></TD> <TD>Datasets/Dataset/Units/Unit/MeasurementsOrFacts</TD>
|
||||
<TR><TD><a href="../index.htm#AccessConstraints-2008-11-19">AccessConstraints</a></TD> <TD>not in ABCD</TD>
|
||||
<TR><TD><a href="../index.htm#InformationWithheld-2008-11-19">InformationWithheld</a></TD> <TD>DataSets/DataSet/Units/Unit/InformationWithheld</TD>
|
||||
<TR><TD><a href="../index.htm#Generalizations-2008-11-19">Generalizations</a></TD> <TD>not in ABCD</TD>
|
||||
<TR><TD><a href="../index.htm#SampleDetails-2008-11-19">SampleDetails</a></TD> <TD>DataSets/DataSet/Units/Unit/RecordURI</TD>
|
||||
<TR><TD><a href="../index.htm#SampleRemarks-2009-01-18">SampleRemarks</a></TD> <TD>DataSets/DataSet/Units/Unit/Notes</TD>
|
||||
<TR><TD><a href="../index.htm#CatalogNumber-2008-11-19">CatalogNumber</a></TD> <TD>DataSets/DataSet/Units/Unit/UnitID</TD>
|
||||
<TR><TD><a href="../index.htm#CatalogNumberNumeric-2008-11-19">CatalogNumberNumeric</a></TD> <TD>DataSets/DataSet/Units/Unit/UnitIDNumeric</TD>
|
||||
<TR><TD><a href="../index.htm#IndividualID-2008-11-19">IndividualID</a></TD> <TD>DataSets/DataSet/Units/Unit/Identifications/Identification/Result/TaxonIdentified/ScientificName/NameAtomised/Zoological/NamedIndividual or DataSets/DataSet/Units/Unit/ObservationUnit/ObservationUnitIdentifiers/ObservationUnitIdentifier or DataSets/Da
|
||||
<TR><TD><a href="../index.htm#IndividualCount-2008-11-19">IndividualCount</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/LowerValue</TD>
|
||||
<TR><TD><a href="../index.htm#Citation-2008-11-19">Citation</a></TD> <TD>DataSets/DataSet/Units/Unit/IPRStatements/Citations/Citation/Text</TD>
|
||||
<TR><TD><a href="../index.htm#Sex-2008-11-19">Sex</a></TD> <TD>DataSets/DataSet/Units/Unit/Sex</TD>
|
||||
<TR><TD><a href="../index.htm#LifeStage-2008-11-19">LifeStage</a></TD> <TD>DataSets/DataSet/Units/Unit/MycologicalUnit/MycologicalSexualStage or DataSets/DataSet/Units/Unit/MycologicalUnit/MycologicalLiveStages/MycologicalLiveStage (Note DwC spec uses ”MycologicalLifeStage” or DataSets/DataSet/Units/Unit/ZoologicalUnit/Phase
|
||||
<TR><TD><a href="../index.htm#ReproductiveCondition-2008-11-19">ReproductiveCondition</a></TD> <TD>not in ABCD</TD>
|
||||
<TR><TD><a href="../index.htm#EstablishmentMeans-2008-11-19">EstablishmentMeans</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/EstablishmentMeans</TD>
|
||||
<TR><TD><a href="../index.htm#SampleAttributes-2008-11-19">SampleAttributes</a></TD> <TD>DataSets/DataSet/Units/Unit/MeasurementsOrFacts</TD>
|
||||
<TR><TD><a href="../index.htm#Preparations-2008-11-19">Preparations</a></TD> <TD>DataSets/DataSet/Units/Unit/SpecimenUnit/Preparations/PreparationsText</TD>
|
||||
<TR><TD><a href="../index.htm#Disposition-2008-11-19">Disposition</a></TD> <TD>DataSets/DataSet/Units/Unit/SpecimenUnit/Disposition</TD>
|
||||
<TR><TD><a href="../index.htm#OtherCatalogNumbers-2008-11-19">OtherCatalogNumbers</a></TD> <TD>DataSets/DataSet/Units/Unit/SpecimenUnit/History/PreviousUnitsText</TD>
|
||||
<TR><TD><a href="../index.htm#AssociatedMedia-2008-11-19">AssociatedMedia</a></TD> <TD>DataSets/DataSet/Units/Unit/MultimediaObjects</TD>
|
||||
<TR><TD><a href="../index.htm#AssociatedReferences-2008-11-19">AssociatedReferences</a></TD> <TD>DataSets/DataSet/Units/Unit/UnitReferences</TD>
|
||||
<TR><TD><a href="../index.htm#AssociatedSamples-2008-11-19">AssociatedSamples</a></TD> <TD>DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceInstitutionCode + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceName + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitI
|
||||
<TR><TD><a href="../index.htm#AssociatedSequences-2008-11-19">AssociatedSequences</a></TD> <TD>DataSets/DataSet/Units/Unit/Sequences/Sequence/ID-in-Database + constant</TD>
|
||||
<TR><TD><a href="../index.htm#AssociatedTaxa-2008-11-19">AssociatedTaxa</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/Synecology/AssociatedTaxa</TD>
|
||||
<TR><TD><a href="../index.htm#SamplingEventID-2008-11-19">SamplingEventID</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/Code</TD>
|
||||
<TR><TD><a href="../index.htm#SamplingProtocol-2008-11-19">SamplingProtocol</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/Method</TD>
|
||||
<TR><TD><a href="../index.htm#VerbatimCollectingDate-2008-11-19">VerbatimCollectingDate</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/DateTime/DateText</TD>
|
||||
<TR><TD><a href="../index.htm#EarliestDateCollected-2008-11-19">EarliestDateCollected</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin</TD>
|
||||
<TR><TD><a href="../index.htm#LatestDateCollected-2008-11-19">LatestDateCollected</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/ISODateTimeEnd</TD>
|
||||
<TR><TD><a href="../index.htm#StartDayOfYear-2009-01-21">StartDayOfYear</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/DateTime/DayNumberBegin</TD>
|
||||
<TR><TD><a href="../index.htm#EndDayOfYear-2009-01-21">EndDayOfYear</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/DateTime/DayNumberEnd</TD>
|
||||
<TR><TD><a href="../index.htm#StartTimeOfDay-2008-11-19">StartTimeOfDay</a></TD> <TD>accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin</TD>
|
||||
<TR><TD><a href="../index.htm#EndTimeOfDay-2008-11-19">EndTimeOfDay</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/DateTime/TimeOfDayEnd</TD>
|
||||
<TR><TD><a href="../index.htm#EventAttribute-2008-11-19">EventAttribute</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts</TD>
|
||||
<TR><TD><a href="../index.htm#YearSampled-2008-11-19">YearSampled</a></TD> <TD>accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin</TD>
|
||||
<TR><TD><a href="../index.htm#MonthOfYear-2008-11-19">MonthOfYear</a></TD> <TD>accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin</TD>
|
||||
<TR><TD><a href="../index.htm#DayOfMonth-2008-11-19">DayOfMonth</a></TD> <TD>accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin</TD>
|
||||
<TR><TD><a href="../index.htm#Habitat-2008-11-19">Habitat</a></TD> <TD>not in ABCD</TD>
|
||||
<TR><TD><a href="../index.htm#Behavior-2009-01-18">Behavior</a></TD> <TD>not in ABCD</TD>
|
||||
<TR><TD><a href="../index.htm#Collector-2008-11-19">Collector</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/GatheringAgents/GatheringAgentsText</TD>
|
||||
<TR><TD><a href="../index.htm#CollectorNumber-2008-11-19">CollectorNumber</a></TD> <TD>DataSets/DataSet/Units/Unit/CollectorsFieldNumber</TD>
|
||||
<TR><TD><a href="../index.htm#FieldNumber-2008-11-19">FieldNumber</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/Code</TD>
|
||||
<TR><TD><a href="../index.htm#FieldNotes-2009-01-21">FieldNotes</a></TD> <TD>DataSets/DataSet/Units/Unit/FieldNotes</TD>
|
||||
<TR><TD><a href="../index.htm#SamplingEventAttributes-2008-11-19">SamplingEventAttributes</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts</TD>
|
||||
<TR><TD><a href="../index.htm#SamplingEventRemarks-2009-01-18">SamplingEventRemarks</a></TD> <TD>not in ABCD</TD>
|
||||
<TR><TD><a href="../index.htm#SamplingLocationID-2008-11-19">SamplingLocationID</a></TD> <TD>not in ABCD</TD>
|
||||
<TR><TD><a href="../index.htm#HigherGeographyID-2009-01-21">HigherGeographyID</a></TD> <TD>not in ABCD</TD>
|
||||
<TR><TD><a href="../index.htm#HigherGeography-2009-01-21">HigherGeography</a></TD> <TD>{DataSets/DataSet/Units/Unit/Gathering/LocalityText or DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName}</TD>
|
||||
<TR><TD><a href="../index.htm#Continent-2008-11-19">Continent</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Continent</TD>
|
||||
<TR><TD><a href="../index.htm#Waterbody-2008-11-19">Waterbody</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Water body</TD>
|
||||
<TR><TD><a href="../index.htm#IslandGroup-2008-11-19">IslandGroup</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Island group</TD>
|
||||
<TR><TD><a href="../index.htm#Island-2008-11-19">Island</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Island</TD>
|
||||
<TR><TD><a href="../index.htm#Country-2008-11-19">Country</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/Country/Name</TD>
|
||||
<TR><TD><a href="../index.htm#CountryCode-2008-11-19">CountryCode</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/Country/ISO3166Code</TD>
|
||||
<TR><TD><a href="../index.htm#StateProvince-2008-11-19">StateProvince</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= State or = Province (etc.)</TD>
|
||||
<TR><TD><a href="../index.htm#County-2008-11-19">County</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= County</TD>
|
||||
<TR><TD><a href="../index.htm#Locality-2008-11-19">Locality</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName</TD>
|
||||
<TR><TD><a href="../index.htm#VerbatimLocality-2008-11-19">VerbatimLocality</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName</TD>
|
||||
<TR><TD><a href="../index.htm#VerbatimElevation-2008-11-19">VerbatimElevation</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactText</TD>
|
||||
<TR><TD><a href="../index.htm#MinimumElevationInMeters-2008-11-19">MinimumElevationInMeters</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/LowerValue</TD>
|
||||
<TR><TD><a href="../index.htm#MaximumElevationInMeters-2008-11-19">MaximumElevationInMeters</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/UpperValue</TD>
|
||||
<TR><TD><a href="../index.htm#VerbatimDepth-2008-11-19">VerbatimDepth</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactText</TD>
|
||||
<TR><TD><a href="../index.htm#MinimumDepthInMeters-2008-11-19">MinimumDepthInMeters</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/LowerValue</TD>
|
||||
<TR><TD><a href="../index.htm#MaximumDepthInMeters-2008-11-19">MaximumDepthInMeters</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/UpperValue</TD>
|
||||
<TR><TD><a href="../index.htm#DistanceAboveSurfaceInMetersMinimum-2008-11-19">DistanceAboveSurfaceInMetersMinimum</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/LowerValue</TD>
|
||||
<TR><TD><a href="../index.htm#DistanceAboveSurfaceInMetersMaximum-2008-11-19">DistanceAboveSurfaceInMetersMaximum</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/UpperValue</TD>
|
||||
<TR><TD><a href="../index.htm#DecimalLatitude-2008-11-19">DecimalLatitude</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/LatitudeDecimal</TD>
|
||||
<TR><TD><a href="../index.htm#DecimalLongitude-2008-11-19">DecimalLongitude</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/LongitudeDecimal</TD>
|
||||
<TR><TD><a href="../index.htm#GeodeticDatum-2008-11-19">GeodeticDatum</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/SpatialDatum</TD>
|
||||
<TR><TD><a href="../index.htm#CoordinateUncertaintyInMeters-2008-11-19">CoordinateUncertaintyInMeters</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/CoordinateErrorDistanceInMeters</TD>
|
||||
<TR><TD><a href="../index.htm#CoordinatePrecision-2008-11-19">CoordinatePrecision</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLong/ISOAccuracy or DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLong/AccuracyStatement</TD>
|
||||
<TR><TD><a href="../index.htm#PointRadiusSpatialFit-2008-11-19">PointRadiusSpatialFit</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/PointRadiusSpatialFit</TD>
|
||||
<TR><TD><a href="../index.htm#VerbatimCoordinates-2008-11-19">VerbatimCoordinates</a></TD> <TD>{DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/CoordinatesText or DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesUTM/UTMText}</TD>
|
||||
<TR><TD><a href="../index.htm#VerbatimLatitude-2008-11-19">VerbatimLatitude</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/VerbatimLatitude</TD>
|
||||
<TR><TD><a href="../index.htm#VerbatimLongitude-2008-11-19">VerbatimLongitude</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/VerbatimLongitude</TD>
|
||||
<TR><TD><a href="../index.htm#GeoreferencedBy-2009-01-21">GeoreferencedBy</a></TD> <TD>not in ABCD</TD>
|
||||
<TR><TD><a href="../index.htm#GeoreferenceProtocol-2008-11-19">GeoreferenceProtocol</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinateMethod</TD>
|
||||
<TR><TD><a href="../index.htm#VerbatimCoordinateSystem-2008-11-19">VerbatimCoordinateSystem</a></TD> <TD>(partly) DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesGrid/GridCellSystem</TD>
|
||||
<TR><TD><a href="../index.htm#GeoreferenceSources-2008-11-19">GeoreferenceSources</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceSources</TD>
|
||||
<TR><TD><a href="../index.htm#GeoreferenceVerificationStatus-2008-11-19">GeoreferenceVerificationStatus</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceVerificationStatus</TD>
|
||||
<TR><TD><a href="../index.htm#GeoreferenceRemarks-2008-11-19">GeoreferenceRemarks</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceRemarks</TD>
|
||||
<TR><TD><a href="../index.htm#FootprintWKT-2008-11-19">FootprintWKT</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/FootprintWKT (ABCD v2.06b)</TD>
|
||||
<TR><TD><a href="../index.htm#FootprintSpatialFit-2008-11-19">FootprintSpatialFit</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/FootprintSpatialFit (ABCD v2.06b)</TD>
|
||||
<TR><TD><a href="../index.htm#SamplingLocationRemarks-2009-01-18">SamplingLocationRemarks</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/AreaDetail</TD>
|
||||
<TR><TD><a href="../index.htm#IdentificationID-2008-11-19">IdentificationID</a></TD> <TD>not in ABCD</TD>
|
||||
<TR><TD><a href="../index.htm#IdentifiedBy-2009-01-21">IdentifiedBy</a></TD> <TD>DataSets/DataSet/Units/Unit/Identifications/Identification/Identifiers/IdentifiersText</TD>
|
||||
<TR><TD><a href="../index.htm#DateIdentified-2008-11-19">DateIdentified</a></TD> <TD>DataSets/DataSet/Units/Unit/Identifications/Identification/Date/DateText</TD>
|
||||
<TR><TD><a href="../index.htm#IdentificationReferences-2008-11-19">IdentificationReferences</a></TD> <TD>DataSets/DataSet/Units/Unit/Identifications/Identification/References</TD>
|
||||
<TR><TD><a href="../index.htm#IdentificationRemarks-2008-11-19">IdentificationRemarks</a></TD> <TD>DataSets/DataSet/Units/Unit/Identifications/Identification/Notes</TD>
|
||||
<TR><TD><a href="../index.htm#PreviousIdentifications-2008-11-19">PreviousIdentifications</a></TD> <TD>DataSets/DataSet/Units/Unit/Identifications/Identification with PreferredFlag = false</TD>
|
||||
<TR><TD><a href="../index.htm#IdentificationQualifier-2008-11-19">IdentificationQualifier</a></TD> <TD>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/IdentificationQualifier</TD>
|
||||
<TR><TD><a href="../index.htm#TypeStatus-2008-11-19">TypeStatus</a></TD> <TD>DataSets/DataSet/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeText</TD>
|
||||
<TR><TD><a href="../index.htm#TaxonID-2008-11-19">TaxonID</a></TD> <TD>not in ABCD</TD>
|
||||
<TR><TD><a href="../index.htm#ScientificName-2009-01-21">ScientificName</a></TD> <TD>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/FullScientificNameString</TD>
|
||||
<TR><TD><a href="../index.htm#Binomial-2008-11-19">Binomial</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/Synecology/AssociatedTaxa/TaxonIdentified/ScientificName/FullScientificNameString</TD>
|
||||
<TR><TD><a href="../index.htm#HigherTaxonID-2009-01-21">HigherTaxonID</a></TD> <TD>not in ABCD</TD>
|
||||
<TR><TD><a href="../index.htm#HigherTaxon-2009-01-21">HigherTaxon</a></TD> <TD>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName</TD>
|
||||
<TR><TD><a href="../index.htm#Kingdom-2008-11-19">Kingdom</a></TD> <TD>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = regnum</TD>
|
||||
<TR><TD><a href="../index.htm#Phylum-2008-11-19">Phylum</a></TD> <TD>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = phylum</TD>
|
||||
<TR><TD><a href="../index.htm#Class-2008-11-19">Class</a></TD> <TD>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = classis</TD>
|
||||
<TR><TD><a href="../index.htm#Order-2008-11-19">Order</a></TD> <TD>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = ordo</TD>
|
||||
<TR><TD><a href="../index.htm#Family-2008-11-19">Family</a></TD> <TD>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = familia</TD>
|
||||
<TR><TD><a href="../index.htm#Genus-2008-11-19">Genus</a></TD> <TD>{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/Genus
|
||||
<TR><TD><a href="../index.htm#Subgenus-2008-11-19">Subgenus</a></TD> <TD>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/Subgenus</TD>
|
||||
<TR><TD><a href="../index.htm#SpecificEpithet-2008-11-19">SpecificEpithet</a></TD> <TD>{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/SpeciesEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/FirstE
|
||||
<TR><TD><a href="../index.htm#TaxonRank-2008-11-19">TaxonRank</a></TD> <TD>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/Rank</TD>
|
||||
<TR><TD><a href="../index.htm#InfraspecificEpithet-2008-11-19">InfraspecificEpithet</a></TD> <TD>{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/SubspeciesEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/Sec
|
||||
<TR><TD><a href="../index.htm#ScientificNameAuthorship-2008-11-19">ScientificNameAuthorship</a></TD> <TD>{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/ParentheticalAuthorTeamAndYear + DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/B
|
||||
<TR><TD><a href="../index.htm#NomenclaturalCode-2008-11-19">NomenclaturalCode</a></TD> <TD>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/Code</TD>
|
||||
<TR><TD><a href="../index.htm#TaxonAccordingTo-2009-01-21">TaxonAccordingTo</a></TD> <TD>not in ABCD</TD>
|
||||
<TR><TD><a href="../index.htm#NamePublishedIn-2008-11-19">NamePublishedIn</a></TD> <TD>DataSets/DataSet/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeDesignation/NomenclaturalReference/TitleCitation</TD>
|
||||
<TR><TD><a href="../index.htm#TaxonomicStatus-2008-11-19">TaxonomicStatus</a></TD> <TD>not in ABCD</TD>
|
||||
<TR><TD><a href="../index.htm#NomenclaturalStatus-2009-01-18">NomenclaturalStatus</a></TD> <TD>(DataSets/DataSet/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeDesignation/NomenclaturalReference/TitleCitation)
|
||||
pro parte</TD>
|
||||
<TR><TD><a href="../index.htm#AcceptedTaxonID-2009-01-21">AcceptedTaxonID</a></TD> <TD>not in ABCD</TD>
|
||||
<TR><TD><a href="../index.htm#AcceptedTaxon-2008-11-19">AcceptedTaxon</a></TD> <TD>not in ABCD</TD>
|
||||
<TR><TD><a href="../index.htm#BasionymID-2009-01-21">BasionymID</a></TD> <TD>not in ABCD</TD>
|
||||
<TR><TD><a href="../index.htm#Basionym-2008-11-19">Basionym</a></TD> <TD>not in ABCD</TD>
|
||||
<TR><TD><a href="../index.htm#ResourceRelationshipID-2008-11-19">ResourceRelationshipID</a></TD> <TD>not in ABCD</TD>
|
||||
<TR><TD><a href="../index.htm#RelatedResourceID-2008-11-19">RelatedResourceID</a></TD> <TD>DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceInstitutionCode + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceName + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitI
|
||||
<TR><TD><a href="../index.htm#RelatedResourceType-2009-01-23">RelatedResourceType</a></TD> <TD>not in ABCD</TD>
|
||||
<TR><TD><a href="../index.htm#RelatedBasisOfRecord-2008-11-19">RelatedBasisOfRecord</a></TD> <TD>not in ABCD</TD>
|
||||
<TR><TD><a href="../index.htm#RelationshipOfResource-2008-11-19">RelationshipOfResource</a></TD> <TD>DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociationType</TD>
|
||||
<TR><TD><a href="../index.htm#RelationshipRemarks-2008-11-19">RelationshipRemarks</a></TD> <TD>DataSets/DataSet/Units/Unit/Associations/UnitAssociation/Comments</TD>
|
||||
<TR><TD><a href="../index.htm#SamplingAttributeID-2008-11-19">SamplingAttributeID</a></TD> <TD>not in ABCD</TD>
|
||||
<TR><TD><a href="../index.htm#SampleAttributeType-2008-11-19">SampleAttributeType</a></TD> <TD>DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Parameter</TD>
|
||||
<TR><TD><a href="../index.htm#SampleAttributeValue-2008-11-19">SampleAttributeValue</a></TD> <TD>DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UpperValue</TD>
|
||||
<TR><TD><a href="../index.htm#SampleAttributeAccuracy-2009-01-18">SampleAttributeAccuracy</a></TD> <TD>DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Accuracy</TD>
|
||||
<TR><TD><a href="../index.htm#SampleAttributeUnit-2008-11-19">SampleAttributeUnit</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UnitOfMeasurement</TD>
|
||||
<TR><TD><a href="../index.htm#SampleAttributeDeterminedDate-2009-01-23">SampleAttributeDeterminedDate</a></TD> <TD>DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/MeasurementDateTime</TD>
|
||||
<TR><TD><a href="../index.htm#SampleAttributeDeterminedBy-2009-01-23">SampleAttributeDeterminedBy</a></TD> <TD>DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/MeasuredBy</TD>
|
||||
<TR><TD><a href="../index.htm#SampleAttibuteRemarks-2008-11-19">SampleAttibuteRemarks</a></TD> <TD>not in ABCD</TD>
|
||||
<TR><TD><a href="../index.htm#EventAttributeID-2008-11-19">EventAttributeID</a></TD> <TD>not in ABCD</TD>
|
||||
<TR><TD><a href="../index.htm#EventAttributeType-2008-11-19">EventAttributeType</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Parameter</TD>
|
||||
<TR><TD><a href="../index.htm#EventAttributeValue-2008-11-19">EventAttributeValue</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/UpperValue or Dat
|
||||
<TR><TD><a href="../index.htm#EventAttributeAccuracy-2009-01-18">EventAttributeAccuracy</a></TD> <TD>DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Aspect/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/Accuracy
|
||||
<TR><TD><a href="../index.htm#EventAttributeUnit-2008-11-19">EventAttributeUnit</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UnitOfMeasurement</TD>
|
||||
<TR><TD><a href="../index.htm#EventAttributeDeterminedDate-2009-01-23">EventAttributeDeterminedDate</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFact
|
||||
<TR><TD><a href="../index.htm#EventAttributeDeterminedBy-2009-01-23">EventAttributeDeterminedBy</a></TD> <TD>DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/MeasuredB
|
||||
<TR><TD><a href="../index.htm#EventAttributeRemarks-2008-11-19">EventAttributeRemarks</a></TD> <TD>not in ABCD</TD>
|
||||
|
||||
</TBODY></TABLE>
|
||||
|
||||
<!-- Footer -->
|
||||
<hr>
|
||||
<p><a rel="license" href="http://creativecommons.org/licenses/by/3.0/us/">
|
||||
<img alt="Creative Commons License" id="creative_commons_icon" src="http://i.creativecommons.org/l/by/3.0/88x31.png" /></a>
|
||||
Copyright 2009 - Biodiversity Information Standards - TDWG - <a href="http://www.tdwg.org/about-tdwg/contact-us/">Contact Us</a><br/>
|
||||
<p>Except where otherwise noted, content on this site is licensed under a
|
||||
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/us/"> Creative Commons
|
||||
Attribution 3.0 United States License</a>.</p>
|
||||
|
||||
</BODY></HTML>
|
|
@ -0,0 +1,660 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<META http-equiv="Content-Type" content="text/html; charset=utf8"/>
|
||||
<TITLE>Darwin Core Terms: A complete historical record</TITLE>
|
||||
<LINK rel="schema.DC" href="http://rs.tdwg.org/dwc/terms/history/"/>
|
||||
<META name="DC.title" content="Darwin Core Terms: A complete historical record"/>
|
||||
<META name="DC.description" content="This document is a consolidated, historically complete, and updated representation of all Elements, Element Refinements, Encoding Schemes, and Vocabulary Terms in Darwin Core namespaces in all of their historical versions both current and superseded. While this document may be useful for tracking changes in the status and attributes of terms over time, most users will need just the latest information, which is held in the document Darwin Core Terms: A quick reference guide at http://rs.tdwg.org/dwc/terms/"/>
|
||||
<META name="DC.subject" content="biodiversity, standards"/>
|
||||
<META name="DC.creator" content="Darwin Core Task Group"/>
|
||||
<META name="DC.contributor" content="John Wieczorek (MVZ) <tuco@berkeley.edu>"/>
|
||||
<META name="DC.contributor" content="Markus Döring (GBIF) <mdoering@gbif.org>"/>
|
||||
<META name="DC.contributor" content="Renato De Giovanni (CRIA) <renato@cria.org.br>"/>
|
||||
<META name="DC.contributor" content="Tim Robertson (GBIF) <trobertson@gbif.org>"/>
|
||||
<META name="DC.contributor" content="Dave Vieglais (KUNHM) <vieglais@ku.edu>"/>
|
||||
<META name="DC.contributor" content="Stan Blum (CAS) <sblum@calacademy.org>"/>
|
||||
<META name="DC.modified" content="2009-02-12"/>
|
||||
<META name="DC.dateAccepted" content="2009-02-12"/>
|
||||
<META name="DC.format" content="text/html"/>
|
||||
<META name="DC.identifier" content="http://rs.tdwg.org/dwc/terms/history/2009-02-12"/>
|
||||
<META name="DC.publisher" content="Biodiversity Information Standards TDWG"/>
|
||||
<META name="DC.rights" content=""/>
|
||||
<META name="DC.accessRights" content="public"/>
|
||||
<META name="DC.bibliographicCitation" content="Darwin Core Terms: A complete historical record. 2009"/>
|
||||
<META name="DC.isReplacedBy" content=""/>
|
||||
<META name="DC.replaces" content="http://wiki.tdwg.org/twiki/bin/view/DarwinCore/DarwinCoreVersions"/>
|
||||
<META name="DC.language" content="en"/>
|
||||
<LINK rel="meta" href="http://www.tdwg.org"/>
|
||||
<LINK rel="stylesheet" href="../../DarwinCore_files/default.css" type="text/css"/>
|
||||
</HEAD>
|
||||
<BODY>
|
||||
<DIV class="header">
|
||||
|
||||
<TABLE width="100%" cellspacing="0" cellpadding="0" bgcolor="#617394">
|
||||
<TBODY><TR>
|
||||
<TD width="70"><A href="http://www.tdwg.org"><IMG src="../../DarwinCore_files/TDWGlogo_Twiki.gif" width="150" height="70" alt="Biodiversity Information Standards (TDWG) logo"></A></TD>
|
||||
<TD width="100%" height="70" align="right" valign="top">
|
||||
</TABLE>
|
||||
|
||||
<H1>Darwin Core Terms: A complete historical record</H1>
|
||||
<TABLE cellspacing="0" class="docinfo">
|
||||
<TBODY>
|
||||
<TR>
|
||||
<TH>Title:</TH>
|
||||
<TD>Darwin Core Terms: A complete historical record</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Date Issued:</TH>
|
||||
<TD>2009-02-12</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Abstract:</TH>
|
||||
<TD>This document is an authoritative specification of all terms in all of their historical versions as maintained by the
|
||||
Darwin Core Task Group. While this document is useful for complete information and for tracking changes in the status
|
||||
and attributes of terms over time, most users will need just the latest information, which is held in the document
|
||||
"Darwin Core Terms: A quick reference guide" [<a href="../index.htm">TERMS</a>].</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Contributors:</TH>
|
||||
<TD>John Wieczorek (MVZ)<tuco@berkeley.edu>, Markus Döring (GBIF)<mdoering@gbif.org>, Renato De Giovanni (CRIA)<renato@cria.org.br>, Tim Robertson (GBIF)<trobertson@gbif.org>, Dave Vieglais (KUNHM)<vieglais@ku.edu>, Stan Blum (CAS)<sblum@calacademy.org></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Legal:</TH>
|
||||
<TD>This document is governed by the standard legal, copyright, licensing provisions and disclaimers issued by the Taxonomic Databases Working Group.</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Part of TDWG Standard:</TH>
|
||||
<TD>***URL to DwC Standard*** goes here</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Creator:</TH>
|
||||
<TD>Darwin Core Task Group</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Identifier:</TH>
|
||||
<TD><A href="http://rs.tdwg.org/dwc/terms/history/2009-02-12/">http://rs.tdwg.org/dwc/terms/history/2009-02-12/</A></TD>
|
||||
</TR>
|
||||
<TR><TH>Latest Version:</TH>
|
||||
<TD><A href="http://rs.tdwg.org/dwc/terms/history/">http://rs.tdwg.org/dwc/terms/history/</A></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Replaces:</TH>
|
||||
<TD><A href="http://wiki.tdwg.org/twiki/bin/view/DarwinCore/DarwinCoreVersions">http://wiki.tdwg.org/twiki/bin/view/DarwinCore/DarwinCoreVersions</A></TD>
|
||||
</TR>
|
||||
<TR><TH>Replaced By:</TH>
|
||||
<TD>Not applicable</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Translations:</TH>
|
||||
<TD><A href="http://rs.tdwg.org/dwc/translations/">http://rs.tdwg.org/dwc/translations/</A></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Document Status:</TH>
|
||||
<TD>This is a TDWG Request for Comment.</TD>
|
||||
</TR>
|
||||
</TBODY></TABLE>
|
||||
|
||||
<H2>Table of Contents</H2>
|
||||
<P><TABLE width="95%" border="0" align="center"><TBODY>
|
||||
<TR><TD width="100%">1. <a href="#introduction">Introduction</a>
|
||||
</TD></TR>
|
||||
<TR><TD width="100%">2. <a href="#references">References</a>
|
||||
</TD></TR>
|
||||
<TR><TD width="100%">3. <a href="#theterms">The Terms</a>
|
||||
</TD></TR>
|
||||
</TBODY> </TABLE
|
||||
|
||||
<a name="introduction" id="introduction"></a>
|
||||
<H2>1. Introduction</H2>
|
||||
<P>This document contains information for all terms associated with the Darwin Core, including
|
||||
historical versions (Classic, MaNIS, OBIS, Curatorial extension, Geospatial extension) prior to
|
||||
having a standard and more recent versions developed under the Darwin Core Task Group since
|
||||
October 2008. Most users will not need the comprehensive historical detail presented here and should instead
|
||||
consult the document "Darwin Core Terms: A quick reference guide" [<A href="../index.htm">TERMS</A>],
|
||||
for the most current information on recommended terms.</P>
|
||||
<P>Users interested in mappings from historical
|
||||
versions to the current standard may consult the document "Darwin Core Versions"
|
||||
[<a href="./versions/index.htm">VERSIONS</A>]. Users interested in mappings
|
||||
between the the current recommended terms and the most recent schema for Access to Biological
|
||||
Collections Data should consult the document "Darwin Core to ABCD Mapping"
|
||||
[<a href="./dwctoabcd/index.htm">DWCTOABCD</a>]. Mappings between historical versions and ABCD 2.06
|
||||
are contained in this document.</P>
|
||||
<P>Note that Darwin Core term names, URIs, and Version names use CamelCase regardless of whether the
|
||||
term is a class or a property following a history of such usage and in order to minimize confusion and
|
||||
any other adverse impacts of following the standard convention of using lowerCamelCase names for properties
|
||||
and CamelCase for names of classes.
|
||||
<P>Following is the complete list of term attributes and their definitions:
|
||||
</P>
|
||||
<P>
|
||||
</P><TABLE width="95%" border="0" align="center">
|
||||
<TBODY>
|
||||
<TR>
|
||||
<TD width="20%"><b>Term Name</b>:</TD>
|
||||
<TD width="80%">The name by which the term is identified, unique within the term's namespace.</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD width="20%"><b>URI</b>:</TD>
|
||||
<TD width="80%">The Universal Resource Identifier by which the term is identified.</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD width="20%"><b>Namespace</b>:</TD>
|
||||
<TD width="80%">The Darwin Core Namespace within which the term is defined.</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD width="20%"><b>Label</b>:</TD>
|
||||
<TD width="80%">The label for the term.</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD width="20%"><b>Definition</b>:</TD>
|
||||
<TD width="80%">The definition of the term.</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD width="20%"><b>Comment</b>:</TD>
|
||||
<TD width="80%">Commentary about the usage of the term.</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD width="20%"><b>Type of Term</b>:</TD>
|
||||
<TD width="80%">The term type - property, class, vocabulary encoding scheme, or datatype (syntax encoding scheme).</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD width="20%"><b>Refines</b>:</TD>
|
||||
<TD width="80%">The term for which this term is a refinement.</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD width="20%"><b>Status</b>:</TD>
|
||||
<TD width="80%">The status of the term - historical (prior to the standard), superceded (updated
|
||||
with a replacement since the standard first went into effect), or recommended.</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD width="20%"><b>Date Issued</b>:</TD>
|
||||
<TD width="80%">Date on which the term was first published.</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD width="20%"><b>Date Modified</b>:</TD>
|
||||
<TD width="80%">Date on which the term description was subsequently modified.</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD width="20%"><b>Member Of</b>:</TD>
|
||||
<TD width="80%">The Class of which this term is a member.</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD width="20%"><b>Has Domain</b>:</TD>
|
||||
<TD width="80%">A Class of which a resource described by the term is an Instance.</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD width="20%"><b>Has Range</b>:</TD>
|
||||
<TD width="80%">A Class of which a value described by the term is an Instance.</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD width="20%"><b>Decision</b>:</TD>
|
||||
<TD width="80%">The reference to the discussion associated with the decision that resulted in the current version of the term
|
||||
</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD width="20%"><b>Version</b>:</TD>
|
||||
<TD width="80%">The name for the specific version of the term.</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD width="20%"><b>Replaces</b>:</TD>
|
||||
<TD width="80%">The version name of the preceding historical description of the term.</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD width="20%"><b>Is Replaced By</b>:</TD>
|
||||
<TD width="80%">The version name of the subsequent description of the term.</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD width="20%"><b>ABCD 2.06</b>:</TD>
|
||||
<TD width="80%">The xpath(s) to the equivalent concept(s) in the Access to Biological Collections Data schema version 2.06.</TD>
|
||||
</TR>
|
||||
</TBODY></TABLE>
|
||||
|
||||
<P>
|
||||
<a name="references" id="references"></a>
|
||||
<H2>2. References</H2>
|
||||
<TABLE width="95%" border="0" align="center">
|
||||
<TBODY>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="ABCD">[ABCD]</A></TD>
|
||||
<TD width="40%"><A href="http://www.tdwg.org/schemas/abcd/2.06">http://www.tdwg.org/schemas/abcd/2.06</A></TD>
|
||||
<TD width="50%">Access to Biological Collections Data Standard.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="DWC">[DWC]</A></TD>
|
||||
<TD width="40%"><A href="../../index.htm">http://rs.tdwg.org/dwc/</A></TD>
|
||||
<TD width="50%">An introduction to the Darwin Core Standard.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="DWCTOABCD">[DWCTOABCD]</A></TD>
|
||||
<TD width="40%"><A href="./dwctoabcd/index.htm">http://rs.tdwg.org/dwc/terms/history/dwctoabcd/</A></TD>
|
||||
<TD width="50%">A reference for Darwin Core terms mapped to ABCD.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="TERMS">[TERMS]</A></TD>
|
||||
<TD width="40%"><A href="../index.htm">http://rs.tdwg.org/dwc/terms/</A></TD>
|
||||
<TD width="50%">Quick reference to recommended Darwin Core terms.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="VERSIONS"></A>[VERSIONS]</TD>
|
||||
<TD width="40%"><A href="./versions/index.htm">http://rs.tdwg.org/dwc/terms/history/versions/</A></TD>
|
||||
<TD width="50%">Reference for mapping historical Darwin Core terms to the current recommended terms.</TD>
|
||||
</TR>
|
||||
|
||||
</TBODY></TABLE>
|
||||
<P>
|
||||
|
||||
<!-- ================================-->
|
||||
<a name="theterms" id="theterms"></a>
|
||||
<H2>3. The Terms</H2>
|
||||
<TABLE cellspacing="0" class="border">
|
||||
<TBODY>
|
||||
|
||||
<!-- Begin Term Table -->
|
||||
|
||||
<TR><TH colspan="2"><A name="AcceptedTaxon-2008-11-19">Term Name: AcceptedTaxon</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/AcceptedTaxon</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>AcceptedTaxon</TD></TR> <TR><TD>Definition:</TD><TD>The currently valid (zoological) or accepted (botanical) name for the ScientificName.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/AcceptedTaxon">http://code.google.com/p/darwincore/wiki/AcceptedTaxon</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>AcceptedTaxon-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>not in ABCD</TD></TR>
|
||||
<TR><TH colspan="2"><A name="AcceptedTaxonID-2009-01-21">Term Name: AcceptedTaxonID</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/AcceptedTaxonID</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>AcceptedTaxonID</TD></TR> <TR><TD>Definition:</TD><TD>A global unique identifier for the parent to the AcceptedTaxon.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/AcceptedTaxonID">http://code.google.com/p/darwincore/wiki/AcceptedTaxonID</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD>http://purl.org/dc/terms/identifier</TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2009-01-21</TD></TR> <TR><TD>Date Modified:</TD><TD>2009-01-21</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>AcceptedTaxonID-2009-01-21</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>not in ABCD</TD></TR>
|
||||
<TR><TH colspan="2"><A name="AccessConstraints-2008-11-19">Term Name: AccessConstraints</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/AccessConstraints</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>AccessConstraints</TD></TR> <TR><TD>Definition:</TD><TD>A description of constraints on the use of the data as shared or access to further data that is not shared.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "not-for-profit use only". See <a href="http://code.google.com/p/darwincore/wiki/AccessConstraints">http://code.google.com/p/darwincore/wiki/AccessConstraints</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>AccessConstraints-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>not in ABCD</TD></TR>
|
||||
<TR><TH colspan="2"><A name="AccordingTo-2009-01-21">Term Name: AccordingTo</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/AccordingTo</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>AccordingTo</TD></TR> <TR><TD>Definition:</TD><TD>Abstract term to attribute information to a source.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/AccordingTo">http://code.google.com/p/darwincore/wiki/AccordingTo</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2009-01-21</TD></TR> <TR><TD>Date Modified:</TD><TD>2009-01-21</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>AccordingTo-2009-01-21</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>not in ABCD</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Accuracy-2009-01-21">Term Name: Accuracy</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Accuracy</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>Accuracy</TD></TR> <TR><TD>Definition:</TD><TD>Abstract term to capture error information about a measurement or fact.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/Accuracy">http://code.google.com/p/darwincore/wiki/Accuracy</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2009-01-21</TD></TR> <TR><TD>Date Modified:</TD><TD>2009-01-21</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Accuracy-2009-01-21</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Aspect/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Accuracy</TD></TR>
|
||||
<TR><TH colspan="2"><A name="AgeClass-2003-06-17">Term Name: AgeClass</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/AgeClass</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>AgeClass</TD></TR> <TR><TD>Definition:</TD><TD>The age class, reproductive stage, life stage of the biological individual (e.g., juvenile, adult, eft, nymph, etc.).</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>AgeClass-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>LifeStage-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>{DataSets/DataSet/Units/Unit/ZoologicalUnit/PhasesOrStages/PhaseOrStage or DataSets/DataSet/Units/Unit/MycologicalUnit/MycologicalLifeStages/MycologicalLifeStage or DataSets/DataSet/Units/Unit/MycologicalUnit/MycologicalSexualStage}</TD></TR>
|
||||
<TR><TH colspan="2"><A name="AssociatedMedia-2008-11-19">Term Name: AssociatedMedia</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/AssociatedMedia</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>AssociatedMedia</TD></TR> <TR><TD>Definition:</TD><TD>A list (concatenated and separated) of identifiers (publication, global unique identifier, URL) of media associated with the sample.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/AssociatedMedia">http://code.google.com/p/darwincore/wiki/AssociatedMedia</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>AssociatedMedia-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#AssociatedMedia-2008-11-19">AssociatedMedia</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/MultimediaObjects</TD></TR>
|
||||
<TR><TH colspan="2"><A name="AssociatedReferences-2008-11-19">Term Name: AssociatedReferences</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/AssociatedReferences</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>AssociatedReferences</TD></TR> <TR><TD>Definition:</TD><TD>A list (concatenated and separated) of identifiers (publication, global unique identifier, URL) of literature associated with the sample.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/AssociatedReferences">http://code.google.com/p/darwincore/wiki/AssociatedReferences</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>AssociatedReferences-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/UnitReferences</TD></TR>
|
||||
<TR><TH colspan="2"><A name="AssociatedSamples-2008-11-19">Term Name: AssociatedSamples</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/AssociatedSamples</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>AssociatedSamples</TD></TR> <TR><TD>Definition:</TD><TD>A list (concatenated and separated) of identifiers of other samples associated with the sample and their associations.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "sibling of FMNH:Mammal:1234". See <a href="http://code.google.com/p/darwincore/wiki/AssociatedSamples">http://code.google.com/p/darwincore/wiki/AssociatedSamples</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>AssociatedSamples-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#AssociatedSamples-2008-11-19">AssociatedSamples</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceInstitutionCode + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceName + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitID</TD></TR>
|
||||
<TR><TH colspan="2"><A name="AssociatedSequences-2008-11-19">Term Name: AssociatedSequences</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/AssociatedSequences</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>AssociatedSequences</TD></TR> <TR><TD>Definition:</TD><TD>A list (concatenated and separated) of identifiers (publication, global unique identifier, URL) of genetic sequence information associated with the sample.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/AssociatedSequences">http://code.google.com/p/darwincore/wiki/AssociatedSequences</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>AssociatedSequences-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#AssociatedSequences-2008-11-19">AssociatedSequences</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Sequences/Sequence/ID-in-Database + constant</TD></TR>
|
||||
<TR><TH colspan="2"><A name="AssociatedTaxa-2008-11-19">Term Name: AssociatedTaxa</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/AssociatedTaxa</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>AssociatedTaxa</TD></TR> <TR><TD>Definition:</TD><TD>A list (concatenated and separated) of identifiers or names of taxa associated with the sample and their associations.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "host: Quercus alba". See <a href="http://code.google.com/p/darwincore/wiki/AssociatedTaxa">http://code.google.com/p/darwincore/wiki/AssociatedTaxa</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>AssociatedTaxa-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/Synecology/AssociatedTaxa</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Attributes-2007-04-17">Term Name: Attributes</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwcore/Attributes</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwcore/</TD></TR> <TR><TD>Label:</TD><TD>Attributes</TD></TR> <TR><TD>Definition:</TD><TD>List of additional measurements or characteristics (concatenated and separated) for which there is no existing semantic element, but which the data provider nevertheless feels the desire to share. Examples: "Tragus length: 14mm; Weight: 120g", "Height: 1-1.5 meters tall; flowers yellow; uncommon".</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Attributes-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>SampleAttributes-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/MeasurementsOrFacts</TD></TR>
|
||||
<TR><TH colspan="2"><A name="AuthorYearOfScientificName-2007-04-17">Term Name: AuthorYearOfScientificName</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwcore/AuthorYearOfScientificName</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwcore/</TD></TR> <TR><TD>Label:</TD><TD>AuthorYearOfScientificName</TD></TR> <TR><TD>Definition:</TD><TD>The author of the ScientificName and the year of publication, if known. More than one author can be listed in a concatenated string. Should be formatted with parentheses and year according to the conventions of the applicable NomenclaturalCode.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>AuthorYearOfScientificName-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#AuthorYearOfScientificName-2007-04-17">AuthorYearOfScientificName</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>ScientificNameAuthorship-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/ParentheticalAuthorTeamAndYear + DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/AuthorTeamAndYear} or {DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/AuthorTeamParenthesis + DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/AuthorTeam} or {DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/AuthorTeamOriginalAndYear + [= or] DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/AuthorTeamParenthesisAndYear}</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Basionym-2008-11-19">Term Name: Basionym</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Basionym</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>Basionym</TD></TR> <TR><TD>Definition:</TD><TD>The basionym of the ScientificName.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/Basionym">http://code.google.com/p/darwincore/wiki/Basionym</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Basionym-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>not in ABCD</TD></TR>
|
||||
<TR><TH colspan="2"><A name="BasionymID-2009-01-21">Term Name: BasionymID</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/BasionymID</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>BasionymID</TD></TR> <TR><TD>Definition:</TD><TD>A global unique identifier for the Basionym.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/BasionymID">http://code.google.com/p/darwincore/wiki/BasionymID</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD>http://purl.org/dc/terms/identifier</TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2009-01-21</TD></TR> <TR><TD>Date Modified:</TD><TD>2009-01-21</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>BasionymID-2009-01-21</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>not in ABCD</TD></TR>
|
||||
<TR><TH colspan="2"><A name="BasisOfRecord-2003-06-13">Term Name: BasisOfRecord</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/BasisOfRecord</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>BasisOfRecord</TD></TR> <TR><TD>Definition:</TD><TD>An abbreviation indicating whether the record represents an observation (O), living organism (L), specimen (S), germplasm/seed (G), etc.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-13</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-13</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>BasisOfRecord-2003-06-13</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>BasisOfRecord-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/RecordBasis</TD></TR>
|
||||
<TR><TH colspan="2"><A name="BasisOfRecord-2003-06-17">Term Name: BasisOfRecord</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/BasisOfRecord</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>BasisOfRecord</TD></TR> <TR><TD>Definition:</TD><TD>A description indicating whether the record represents an observation, tissue sample, living organism, voucher specimen, germplasm/seed, genetic information, etc.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>BasisOfRecord-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#BasisOfRecord-2003-06-17">BasisOfRecord</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>BasisOfRecord-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/RecordBasis</TD></TR>
|
||||
<TR><TH colspan="2"><A name="BasisOfRecord-2007-04-17">Term Name: BasisOfRecord</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwcore/BasisOfRecord</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwcore/</TD></TR> <TR><TD>Label:</TD><TD>BasisOfRecord</TD></TR> <TR><TD>Definition:</TD><TD>A descriptive term indicating whether the record represents an object or observation. Examples: PreservedSpecimen- A physical object representing one or more organisms, part of organism, or artifact of an organism. synonyms: voucher, collection, lot. FossilSpecimen- A physical object representing one or more fossil organisms, part of fossil organism, or artifact of a fossil organism. LivingSpecimen- An organism removed from its natural occurrence and now living in captivity or cultivation. HumanObservation- A report by a known observer that an organism was present at the place and time. MachineObservation- A report by a monitoring device that an organism was present at the place and time. StillImage- An photograph, drawing, painting. MovingImage- A sequence of still images taken at regular intervals and intended to be played back as a moving image; may include sound. SoundRecording- An audio recording. OtherSpecimen- Any type of specimen not covered by any of the categories above.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>BasisOfRecord-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#BasisOfRecord-2007-04-17">BasisOfRecord</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>BasisOfRecord-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/RecordBasis</TD></TR>
|
||||
<TR><TH colspan="2"><A name="BasisOfRecord-2008-11-19">Term Name: BasisOfRecord</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/BasisOfRecord</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>BasisOfRecord</TD></TR> <TR><TD>Definition:</TD><TD>The nature of the sample. Recommended best practice is to use a controlled vocabulary.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "HumanObservation". See <a href="http://code.google.com/p/darwincore/wiki/BasisOfRecord">http://code.google.com/p/darwincore/wiki/BasisOfRecord</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD>http://purl.org/dc/terms/type</TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>BasisOfRecord-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#BasisOfRecord-2008-11-19">BasisOfRecord</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/RecordBasis</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Behavior-2009-01-18">Term Name: Behavior</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Behavior</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>Behavior</TD></TR> <TR><TD>Definition:</TD><TD>A description of the behavior shown by the sampled subject during the sampling event. Recommended best practice is to use a controlled vocabulary.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "roosting", "foraging", "running". See <a href="http://code.google.com/p/darwincore/wiki/Behavior">http://code.google.com/p/darwincore/wiki/Behavior</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2009-01-18</TD></TR> <TR><TD>Date Modified:</TD><TD>2009-01-18</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEvent</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Behavior-2009-01-18</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>not in ABCD</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Binomial-2008-11-19">Term Name: Binomial</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Binomial</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>Binomial</TD></TR> <TR><TD>Definition:</TD><TD>The combination of genus and first (species) epithet of the ScientificName.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Ctenomys sociabilis". See <a href="http://code.google.com/p/darwincore/wiki/Binomial">http://code.google.com/p/darwincore/wiki/Binomial</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Binomial-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/Synecology/AssociatedTaxa/TaxonIdentified/ScientificName/FullScientificNameString</TD></TR>
|
||||
<TR><TH colspan="2"><A name="BoundingBox-2003-06-13">Term Name: BoundingBox</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/BoundingBox</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>BoundingBox</TD></TR> <TR><TD>Definition:</TD><TD>This access point provides a mechanism for performing searches using a bounding box. A Bounding Box element is not typically present in the database, but rather is derived from the Latitude and Longitude columns by the data provider</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-13</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-13</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>BoundingBox-2003-06-13</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>FootprintWKT-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>not covered by ABCD</TD></TR>
|
||||
<TR><TH colspan="2"><A name="BoundingBox-2003-06-17">Term Name: BoundingBox</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/BoundingBox</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>BoundingBox</TD></TR> <TR><TD>Definition:</TD><TD>This access point provides a mechanism for performing searches using a bounding box. A Bounding Box element is not typically present in the database, but rather is derived from the DecimalLatitude and DecimalLongitude columns by the data provider.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>BoundingBox-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#BoundingBox-2003-06-17">BoundingBox</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>FootprintWKT-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>not covered by ABCD</TD></TR>
|
||||
<TR><TH colspan="2"><A name="CatalogNumber-2003-06-13">Term Name: CatalogNumber</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/CatalogNumber</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>CatalogNumber</TD></TR> <TR><TD>Definition:</TD><TD>A unique alphanumeric value which identifies an individual record within the collection. It is recommended that this value provides a key by which the actual specimen can be identified. If the specimen has several items such as various types of preparation, this value should identify the individual component of the specimen</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-13</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-13</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>CatalogNumber-2003-06-13</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>CatalogNumber-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/UnitID</TD></TR>
|
||||
<TR><TH colspan="2"><A name="CatalogNumber-2007-04-17">Term Name: CatalogNumber</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwcore/CatalogNumber</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwcore/</TD></TR> <TR><TD>Label:</TD><TD>CatalogNumber</TD></TR> <TR><TD>Definition:</TD><TD>The alphanumeric value identifying a record within the collection. It is highly recommended that each record be uniquely identified within a collection by this value. It is also recommended that each record be uniquely identified in a global context by the combination of InstitutionCode, CollectionCode and CatalogNumber.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>CatalogNumber-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#CatalogNumber-2007-04-17">CatalogNumber</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>CatalogNumber-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/UnitID</TD></TR>
|
||||
<TR><TH colspan="2"><A name="CatalogNumber-2008-11-19">Term Name: CatalogNumber</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/CatalogNumber</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>CatalogNumber</TD></TR> <TR><TD>Definition:</TD><TD>An identifier (preferably unique) for the sample within the data set or collection.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "2008.1334", "145732a", "145732". See <a href="http://code.google.com/p/darwincore/wiki/CatalogNumber">http://code.google.com/p/darwincore/wiki/CatalogNumber</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>CatalogNumber-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#CatalogNumber-2008-11-19">CatalogNumber</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/UnitID</TD></TR>
|
||||
<TR><TH colspan="2"><A name="CatalogNumberNumeric-2003-06-17">Term Name: CatalogNumberNumeric</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/CatalogNumberNumeric</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>CatalogNumberNumeric</TD></TR> <TR><TD>Definition:</TD><TD>The CatalogNumber as a numeric value, if applicable. Allows searching on numeric ranges of CatalogNumbers.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>CatalogNumberNumeric-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>CatalogNumberNumeric-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/UnitIDNumeric</TD></TR>
|
||||
<TR><TH colspan="2"><A name="CatalogNumberNumeric-2007-04-17">Term Name: CatalogNumberNumeric</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/curatorial/CatalogNumberNumeric</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/curatorial/</TD></TR> <TR><TD>Label:</TD><TD>CatalogNumberNumeric</TD></TR> <TR><TD>Definition:</TD><TD>The CatalogNumber as a numeric value, if applicable. This element allows searching on numeric ranges of CatalogNumbers. Example: 145732.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>CatalogNumberNumeric-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#CatalogNumberNumeric-2007-04-17">CatalogNumberNumeric</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>CatalogNumberNumeric-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/UnitIDNumeric</TD></TR>
|
||||
<TR><TH colspan="2"><A name="CatalogNumberNumeric-2008-11-19">Term Name: CatalogNumberNumeric</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/CatalogNumberNumeric</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>CatalogNumberNumeric</TD></TR> <TR><TD>Definition:</TD><TD>The numeric value of the CatalogNumber, used to facilitate numerical sorting and searching by ranges.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "1334", "145732". See <a href="http://code.google.com/p/darwincore/wiki/CatalogNumberNumeric">http://code.google.com/p/darwincore/wiki/CatalogNumberNumeric</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>CatalogNumberNumeric-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#CatalogNumberNumeric-2008-11-19">CatalogNumberNumeric</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/UnitIDNumeric</TD></TR>
|
||||
<TR><TH colspan="2"><A name="CatalogNumberText-2003-06-17">Term Name: CatalogNumberText</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/CatalogNumberText</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>CatalogNumberText</TD></TR> <TR><TD>Definition:</TD><TD>An alphanumeric value which identifies an individual cataloged item within the collection. It is recommended that this value provides a key by which the individual cataloged item can be identified.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>CatalogNumberText-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#CatalogNumberText-2003-06-17">CatalogNumberText</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>CatalogNumber-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/UnitID</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Citation-2005-07-10">Term Name: Citation</A></TH></TR> <TR><TD>URI:</TD><TD>http://www.iobis.org/obis/Citation</TD></TR> <TR><TD>Namespace:</TD><TD>http://www.iobis.org/obis/</TD></TR> <TR><TD>Label:</TD><TD>Citation</TD></TR> <TR><TD>Definition:</TD><TD>Indicates how this dataset or record should be attributed if used.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2005-07-10</TD></TR> <TR><TD>Date Modified:</TD><TD>2005-07-10</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Citation-2005-07-10</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>Citation-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/IPRStatements/Citations/Citation/Text</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Citation-2008-11-19">Term Name: Citation</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Citation</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>Citation</TD></TR> <TR><TD>Definition:</TD><TD>A statement indicating how this record should be cited (attributed) when used.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/Citation">http://code.google.com/p/darwincore/wiki/Citation</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Citation-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/IPRStatements/Citations/Citation/Text</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Class-2003-06-13">Term Name: Class</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/Class</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>Class</TD></TR> <TR><TD>Definition:</TD><TD>The class name of the organism</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-13</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-13</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Class-2003-06-13</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>Class-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = classis</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Class-2003-06-17">Term Name: Class</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/Class</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>Class</TD></TR> <TR><TD>Definition:</TD><TD>The phylogenetic class to which the cataloged item belongs.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Class-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#Class-2003-06-17">Class</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>Class-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = classis</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Class-2007-04-17">Term Name: Class</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwcore/Class</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwcore/</TD></TR> <TR><TD>Label:</TD><TD>Class</TD></TR> <TR><TD>Definition:</TD><TD>The name of the class in which the organism is classified.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Class-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#Class-2007-04-17">Class</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>Class-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = classis</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Class-2008-11-19">Term Name: Class</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Class</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>Class</TD></TR> <TR><TD>Definition:</TD><TD>The name of the class in which the ScientificName is classified.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Mammalia". See <a href="http://code.google.com/p/darwincore/wiki/Class">http://code.google.com/p/darwincore/wiki/Class</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Class-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#Class-2008-11-19">Class</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = classis</TD></TR>
|
||||
<TR><TH colspan="2"><A name="CollectingMethod-2007-04-17">Term Name: CollectingMethod</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwcore/CollectingMethod</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwcore/</TD></TR> <TR><TD>Label:</TD><TD>CollectingMethod</TD></TR> <TR><TD>Definition:</TD><TD>The name of, reference to, or brief description of the method or protocol under which the collecting event occurred. Examples: "UV light trap", "mist net", "bottom trawl".</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>CollectingMethod-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>SamplingProtocol-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/Method</TD></TR>
|
||||
<TR><TH colspan="2"><A name="CollectionCode-2003-06-13">Term Name: CollectionCode</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/CollectionCode</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>CollectionCode</TD></TR> <TR><TD>Definition:</TD><TD>A unique alphanumeric value which identifies the collection within the institution</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-13</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-13</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>CollectionCode-2003-06-13</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>CollectionCode-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/SourceID</TD></TR>
|
||||
<TR><TH colspan="2"><A name="CollectionCode-2003-06-17">Term Name: CollectionCode</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/CollectionCode</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>CollectionCode</TD></TR> <TR><TD>Definition:</TD><TD>A unique alphanumeric value that identifies the collection within the institution in which the item is cataloged. This attribute must contain no spaces.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>CollectionCode-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#CollectionCode-2003-06-17">CollectionCode</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>CollectionCode-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/SourceID</TD></TR>
|
||||
<TR><TH colspan="2"><A name="CollectionCode-2007-04-17">Term Name: CollectionCode</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwcore/CollectionCode</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwcore/</TD></TR> <TR><TD>Label:</TD><TD>CollectionCode</TD></TR> <TR><TD>Definition:</TD><TD>The code (or acronym) identifying the collection within the institution in which the organism record is cataloged.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>CollectionCode-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#CollectionCode-2007-04-17">CollectionCode</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>CollectionCode-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/SourceID</TD></TR>
|
||||
<TR><TH colspan="2"><A name="CollectionCode-2008-11-19">Term Name: CollectionCode</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/CollectionCode</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>CollectionCode</TD></TR> <TR><TD>Definition:</TD><TD>The code (or acronym) identifying the collection within the institution in which the sample is recorded.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Mammals", "Hildebrandt". See <a href="http://code.google.com/p/darwincore/wiki/CollectionCode">http://code.google.com/p/darwincore/wiki/CollectionCode</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>CollectionCode-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#CollectionCode-2008-11-19">CollectionCode</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/SourceID</TD></TR>
|
||||
<TR><TH colspan="2"><A name="CollectionID-2008-11-19">Term Name: CollectionID</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/CollectionID</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>CollectionID</TD></TR> <TR><TD>Definition:</TD><TD>The global unique identifier for the collection. Recommended best practice is to use the identifier in a collections registry such as the Biodiversity Collections Index.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/CollectionID">http://code.google.com/p/darwincore/wiki/CollectionID</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD>http://purl.org/dc/terms/identifier</TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>CollectionID-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/SourceID</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Collector-2003-06-13">Term Name: Collector</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/Collector</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>Collector</TD></TR> <TR><TD>Definition:</TD><TD>The name(s) of the collector(s) responsible for collection the specimen or taking the observation</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-13</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-13</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Collector-2003-06-13</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>Collector-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/GatheringAgents/GatheringAgentsText</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Collector-2003-06-17">Term Name: Collector</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/Collector</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>Collector</TD></TR> <TR><TD>Definition:</TD><TD>The name(s) of the collector(s) of the original data for the cataloged item.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Collector-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#Collector-2003-06-17">Collector</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>Collector-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/GatheringAgents/GatheringAgentsText</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Collector-2007-04-17">Term Name: Collector</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwcore/Collector</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwcore/</TD></TR> <TR><TD>Label:</TD><TD>Collector</TD></TR> <TR><TD>Definition:</TD><TD>The name(s) (concatenated and separated) of collectors or observers. "LIKE" or "contains" substring query operations are meant to be used with this element to find matching collector names. The primary collector or observer, especially one whose CollectorNumber is also provided, should be listed first. Example: "Oliver P. Pearson, Anita K. Pearson" where the value in CollectorNumber "OPP 7101" corresponds to the number for the specimen in the field catalog (collector number) of Oliver P. Pearson.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Collector-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#Collector-2007-04-17">Collector</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>Collector-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/GatheringAgents/GatheringAgentsText</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Collector-2008-11-19">Term Name: Collector</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Collector</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>Collector</TD></TR> <TR><TD>Definition:</TD><TD>A list (concatenated and separated) of names of people, groups, or organizations responsible for the collection of the sample. The primary collector or observer, especially one whose CollectorNumber is also provided, should be listed first.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Oliver P. Pearson, Anita K. Pearson" where the value in CollectorNumber "OPP 7101" corresponds to the number for the specimen in the field catalog (collector number) of Oliver P. Pearson. See <a href="http://code.google.com/p/darwincore/wiki/Collector">http://code.google.com/p/darwincore/wiki/Collector</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEvent</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Collector-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#Collector-2008-11-19">Collector</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/GatheringAgents/GatheringAgentsText</TD></TR>
|
||||
<TR><TH colspan="2"><A name="CollectorNumber-2003-06-13">Term Name: CollectorNumber</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/CollectorNumber</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>CollectorNumber</TD></TR> <TR><TD>Definition:</TD><TD>An identifying "number" (really a string) applied to specimens (in some disciplines) at the time of collection. Establishes a links different parts/preparations of a single specimen and between field notes and the specimen.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-13</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-13</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>CollectorNumber-2003-06-13</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>CollectorNumber-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/CollectorsFieldNumber</TD></TR>
|
||||
<TR><TH colspan="2"><A name="CollectorNumber-2003-06-17">Term Name: CollectorNumber</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/CollectorNumber</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>CollectorNumber</TD></TR> <TR><TD>Definition:</TD><TD>An identifying string applied to the cataloged item at the time of collection. Serves as a link between field notes and the cataloged items.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>CollectorNumber-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#CollectorNumber-2003-06-17">CollectorNumber</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>CollectorNumber-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/CollectorsFieldNumber</TD></TR>
|
||||
<TR><TH colspan="2"><A name="CollectorNumber-2007-04-17">Term Name: CollectorNumber</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/curatorial/CollectorNumber</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/curatorial/</TD></TR> <TR><TD>Label:</TD><TD>CollectorNumber</TD></TR> <TR><TD>Definition:</TD><TD>An identifying string applied to the object or observation at the time of collection. Serves as a link between field notes and the object or observation.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>CollectorNumber-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#CollectorNumber-2007-04-17">CollectorNumber</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>CollectorNumber-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/GatheringAgents/GatheringAgentsText</TD></TR>
|
||||
<TR><TH colspan="2"><A name="CollectorNumber-2008-11-19">Term Name: CollectorNumber</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/CollectorNumber</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>CollectorNumber</TD></TR> <TR><TD>Definition:</TD><TD>An identifier given to the sample at the time of the sampling event. Often serves as a link between field notes and the sample.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "OPP 7101". See <a href="http://code.google.com/p/darwincore/wiki/CollectorNumber">http://code.google.com/p/darwincore/wiki/CollectorNumber</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEvent</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>CollectorNumber-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#CollectorNumber-2008-11-19">CollectorNumber</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/CollectorsFieldNumber</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Continent-2007-04-17">Term Name: Continent</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwcore/Continent</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwcore/</TD></TR> <TR><TD>Label:</TD><TD>Continent</TD></TR> <TR><TD>Definition:</TD><TD>The full, unabbreviated name of the continent on which the organism was collected or observed.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Continent-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#Continent-2007-04-17">Continent</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>Continent-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Continent</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Continent-2008-11-19">Term Name: Continent</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Continent</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>Continent</TD></TR> <TR><TD>Definition:</TD><TD>The full, unabbreviated name of the continent on which the sampling event occurred. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Antarctica". See <a href="http://code.google.com/p/darwincore/wiki/Continent">http://code.google.com/p/darwincore/wiki/Continent</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Continent-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#Continent-2008-11-19">Continent</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Continent</TD></TR>
|
||||
<TR><TH colspan="2"><A name="ContinentOcean-2003-06-13">Term Name: ContinentOcean</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/ContinentOcean</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>ContinentOcean</TD></TR> <TR><TD>Definition:</TD><TD>The continent or ocean from which a specimen was collected.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-13</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-13</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>ContinentOcean-2003-06-13</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>Continent-2008-11-19, Waterbody-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Continent</TD></TR>
|
||||
<TR><TH colspan="2"><A name="ContinentOcean-2003-06-17">Term Name: ContinentOcean</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/ContinentOcean</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>ContinentOcean</TD></TR> <TR><TD>Definition:</TD><TD>The full, unabbreviated name of the continent or ocean from which the cataloged item was collected.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>ContinentOcean-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#ContinentOcean-2003-06-17">ContinentOcean</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>Continent-2008-11-19, Waterbody-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Continent</TD></TR>
|
||||
<TR><TH colspan="2"><A name="CoordinatePrecision-2003-06-13">Term Name: CoordinatePrecision</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/CoordinatePrecision</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>CoordinatePrecision</TD></TR> <TR><TD>Definition:</TD><TD>An estimate of how tightly the collecting locality was specified; expressed as a distance, in meters, that corresponds to a radius around the latitude-longitude coordinates. Use NULL where precision is unknown, cannot be estimated, or is not applicable.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-13</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-13</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>CoordinatePrecision-2003-06-13</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>CoordinatePrecision-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLong/ISOAccuracy or DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLong/AccuracyStatement</TD></TR>
|
||||
<TR><TH colspan="2"><A name="CoordinatePrecision-2008-11-19">Term Name: CoordinatePrecision</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/CoordinatePrecision</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>CoordinatePrecision</TD></TR> <TR><TD>Definition:</TD><TD>A decimal representation of the precision of the coordinates given in the DecimalLatitude and DecimalLongitude.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "0.00001" (normal GPS limit for decimal degrees), "0.000278" (nearest second), "0.01667" (nearest minute), "1.0" (nearest degree). See <a href="http://code.google.com/p/darwincore/wiki/CoordinatePrecision">http://code.google.com/p/darwincore/wiki/CoordinatePrecision</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>CoordinatePrecision-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#CoordinatePrecision-2008-11-19">CoordinatePrecision</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLong/ISOAccuracy or DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLong/AccuracyStatement</TD></TR>
|
||||
<TR><TH colspan="2"><A name="CoordinateUncertaintyInMeters-2003-06-17">Term Name: CoordinateUncertaintyInMeters</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/CoordinateUncertaintyInMeters</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>CoordinateUncertaintyInMeters</TD></TR> <TR><TD>Definition:</TD><TD>The upper limit of the distance (in meters) from the given latitude and longitude describing a circle within which the whole of the described locality must lie. Use NULL where the uncertainty is unknown, cannot be estimated, or is not applicable.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>CoordinateUncertaintyInMeters-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#CoordinateUncertaintyInMeters-2003-06-17">CoordinateUncertaintyInMeters</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>CoordinateUncertaintyInMeters-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/CoordinateErrorDistanceInMeters</TD></TR>
|
||||
<TR><TH colspan="2"><A name="CoordinateUncertaintyInMeters-2007-04-17">Term Name: CoordinateUncertaintyInMeters</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/geospatial/CoordinateUncertaintyInMeters</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/geospatial/</TD></TR> <TR><TD>Label:</TD><TD>CoordinateUncertaintyInMeters</TD></TR> <TR><TD>Definition:</TD><TD>The upper limit of the distance (in meters) from the given DecimalLatitude and DecimalLongitude describing a circle within which the whole of the described locality lies. Leave the value empty if the uncertainty is unknown, cannot be estimated, or is not applicable (because there are no coordinates). Describes the point-radius representation of the location, along with DecimalLatitude, DecimalLongitude, and GeodeticDatum. Zero is not a valid value for this element.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>CoordinateUncertaintyInMeters-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#CoordinateUncertaintyInMeters-2007-04-17">CoordinateUncertaintyInMeters</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>CoordinateUncertaintyInMeters-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/CoordinateErrorDistanceInMeters</TD></TR>
|
||||
<TR><TH colspan="2"><A name="CoordinateUncertaintyInMeters-2008-11-19">Term Name: CoordinateUncertaintyInMeters</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/CoordinateUncertaintyInMeters</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>CoordinateUncertaintyInMeters</TD></TR> <TR><TD>Definition:</TD><TD>The upper limit of the distance (in meters) from the given DecimalLatitude and DecimalLongitude describing a circle within which the whole of the sampling location is contained. 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.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "30" (reasonable lower limit of a GPS reading under good conditions if the actual precision was not recorded at the time). See <a href="http://code.google.com/p/darwincore/wiki/CoordinateUncertaintyInMeters">http://code.google.com/p/darwincore/wiki/CoordinateUncertaintyInMeters</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>CoordinateUncertaintyInMeters-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#CoordinateUncertaintyInMeters-2008-11-19">CoordinateUncertaintyInMeters</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/CoordinateErrorDistanceInMeters</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Country-2003-06-13">Term Name: Country</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/Country</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>Country</TD></TR> <TR><TD>Definition:</TD><TD>The country or major political unit from which the specimen was collected. ISO 3166-1 (http://www.din.de/gremien/nas/nabd/iso3166ma/codlstp1/db_en.html) values should be used. Full country names are currently in use. A future recommendation is to use ISO3166-1 two letter codes or the full name when searching</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-13</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-13</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Country-2003-06-13</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>Country-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/Country/Name</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Country-2003-06-17">Term Name: Country</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/Country</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>Country</TD></TR> <TR><TD>Definition:</TD><TD>The full, unabbreviated name of the country or major political unit from which the cataloged item was collected.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Country-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#Country-2003-06-17">Country</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>Country-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/Country/Name</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Country-2007-04-17">Term Name: Country</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwcore/Country</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwcore/</TD></TR> <TR><TD>Label:</TD><TD>Country</TD></TR> <TR><TD>Definition:</TD><TD>The full, unabbreviated name of the country or major political unit in which the organism was collected or observed.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Country-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#Country-2007-04-17">Country</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>Country-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/Country/Name</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Country-2008-11-19">Term Name: Country</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Country</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>Country</TD></TR> <TR><TD>Definition:</TD><TD>The full, unabbreviated name of the country or major political unit in which the sampling event occurred. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "Denmark", "Colombia", "España". See <a href="http://code.google.com/p/darwincore/wiki/Country">http://code.google.com/p/darwincore/wiki/Country</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Country-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#Country-2008-11-19">Country</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/Country/Name</TD></TR>
|
||||
<TR><TH colspan="2"><A name="CountryCode-2008-11-19">Term Name: CountryCode</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/CountryCode</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>CountryCode</TD></TR> <TR><TD>Definition:</TD><TD>The standard code for the country in which the sampling event occurred. Recommended best practice is to used ISO 3166 3-letter country code.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "ARG" (=Argentina), "SLV" (=El Salvador). See <a href="http://code.google.com/p/darwincore/wiki/CountryCode">http://code.google.com/p/darwincore/wiki/CountryCode</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>CountryCode-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/Country/ISO3166Code</TD></TR>
|
||||
<TR><TH colspan="2"><A name="County-2003-06-13">Term Name: County</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/County</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>County</TD></TR> <TR><TD>Definition:</TD><TD>The county (or shire, or next political region smaller than State / Province) from which the specimen was collected</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-13</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-13</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>County-2003-06-13</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>County-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= County</TD></TR>
|
||||
<TR><TH colspan="2"><A name="County-2003-06-17">Term Name: County</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/County</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>County</TD></TR> <TR><TD>Definition:</TD><TD>The full, unabbreviated name of the county, shire, or municipality (i.e., the next smaller political region than StateProvince) from which the cataloged item was collected.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>County-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#County-2003-06-17">County</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>County-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= County</TD></TR>
|
||||
<TR><TH colspan="2"><A name="County-2007-04-17">Term Name: County</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwcore/County</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwcore/</TD></TR> <TR><TD>Label:</TD><TD>County</TD></TR> <TR><TD>Definition:</TD><TD>The full, unabbreviated name of the county, shire, or municipality (i.e., the next smaller political region than StateProvince) in which the organism was collected or observed.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>County-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#County-2007-04-17">County</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>County-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= County</TD></TR>
|
||||
<TR><TH colspan="2"><A name="County-2008-11-19">Term Name: County</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/County</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>County</TD></TR> <TR><TD>Definition:</TD><TD>The full, unabbreviated name of the next smaller political region than StateProvince (county, shire, municipality, etc.) in which the sampling event occurred.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "Missoula", "Los Lagos", "Mataró". See <a href="http://code.google.com/p/darwincore/wiki/County">http://code.google.com/p/darwincore/wiki/County</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>County-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#County-2008-11-19">County</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= County</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Dataset-2008-11-19">Term Name: Dataset</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Dataset</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>Dataset</TD></TR> <TR><TD>Definition:</TD><TD>Container class for information about the set of data in which the record is included.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/Dataset">http://code.google.com/p/darwincore/wiki/Dataset</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/2000/01/rdf-schema#Class</TD></TR> <TR><TD>Refines:</TD><TD>http://purl.org/dc/dcmitype/Dataset</TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>none</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Dataset-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet</TD></TR>
|
||||
<TR><TH colspan="2"><A name="DatasetID-2008-11-19">Term Name: DatasetID</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/DatasetID</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>DatasetID</TD></TR> <TR><TD>Definition:</TD><TD>An identifier for the data set. May be a global unique identifier or an identifier specific to a collection or institution.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/DatasetID">http://code.google.com/p/darwincore/wiki/DatasetID</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD>http://purl.org/dc/terms/identifier</TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Dataset</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>DatasetID-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/DataSetGUID</TD></TR>
|
||||
<TR><TH colspan="2"><A name="DateIdentified-2007-04-17">Term Name: DateIdentified</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/curatorial/DateIdentified</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/curatorial/</TD></TR> <TR><TD>Label:</TD><TD>DateIdentified</TD></TR> <TR><TD>Definition:</TD><TD>The date-time in the Common Era calendar in which the object or observation was identified as being a member of the taxon given in the ScientificName.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>DateIdentified-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#DateIdentified-2007-04-17">DateIdentified</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>DateIdentified-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Identifications/Identification/Date/DateText</TD></TR>
|
||||
<TR><TH colspan="2"><A name="DateIdentified-2008-11-19">Term Name: DateIdentified</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/DateIdentified</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>DateIdentified</TD></TR> <TR><TD>Definition:</TD><TD>The date on which the sample was identified as being a member of the taxon given in the ScientificName.</TD></TR> <TR><TD>Comment:</TD><TD>Date may be used to express temporal information at any level of granularity. Recommended best practice is to use an encoding scheme, such as the W3CDTF profile of ISO 8601 [W3CDTF]. See <a href="http://code.google.com/p/darwincore/wiki/DateIdentified">http://code.google.com/p/darwincore/wiki/DateIdentified</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD>http://purl.org/dc/terms/date</TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Identification</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>DateIdentified-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#DateIdentified-2008-11-19">DateIdentified</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Identifications/Identification/Date/DateText</TD></TR>
|
||||
<TR><TH colspan="2"><A name="DateLastModified-2003-06-13">Term Name: DateLastModified</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/DateLastModified</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>DateLastModified</TD></TR> <TR><TD>Definition:</TD><TD>ISO 8601 compliant stamp indicating the date and time in UTC(GMT) when the record was last modified. Example: the instant "November 5, 1994, 8:15:30 am, US Eastern Standard Time" would be represented as "1994-11-05T13:15:30Z" (see W3C Note on Date and Time Formats - http://www.w3.org/TR/NOTE-datetime). (What to do when this date-time is unknown? Use Date-Time first "published"?)</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-13</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-13</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>DateLastModified-2003-06-13</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>http://purl.org/dc/terms/modified</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/DateLastEdited</TD></TR>
|
||||
<TR><TH colspan="2"><A name="DateLastModified-2003-06-17">Term Name: DateLastModified</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/DateLastModified</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>DateLastModified</TD></TR> <TR><TD>Definition:</TD><TD>ISO 8601 date and time in UTC(GMT) when the record was last modified. Example: "November 5, 1994, 8:15:30 am, US Eastern Standard Time" would be "1994-11-05T13:15:30Z" (see http://www.w3.org/TR/NOTE-datetime).</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>DateLastModified-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#DateLastModified-2003-06-17">DateLastModified</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>http://purl.org/dc/terms/modified</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/DateLastEdited</TD></TR>
|
||||
<TR><TH colspan="2"><A name="DateLastModified-2007-04-17">Term Name: DateLastModified</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwcore/DateLastModified</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwcore/</TD></TR> <TR><TD>Label:</TD><TD>DateLastModified</TD></TR> <TR><TD>Definition:</TD><TD>The last date-time of publication when any of the data for the record were modified from the previous publication of that record. When publishing a record for the first time, use the publication date-time. Returns values as ISO 8601 date and time. (cf. http://www.w3.org/TR/xmlschema-2/#isoformats and http://www.iso.org/iso/en/prods-services/popstds/dateandtime.html Example: November 5, 1994, 8:15:30 am, US Eastern Standard Time” would be “1994-11-05T13:15:30Z”</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>DateLastModified-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#DateLastModified-2007-04-17">DateLastModified</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>http://purl.org/dc/terms/modified</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/DateLastEdited</TD></TR>
|
||||
<TR><TH colspan="2"><A name="DayCollected-2003-06-13">Term Name: DayCollected</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/DayCollected</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>DayCollected</TD></TR> <TR><TD>Definition:</TD><TD>The day of the month the specimen was collected from the field. Possible value ranges from 01..31 inclusive</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-13</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-13</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>DayCollected-2003-06-13</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>DayOfMonth-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin</TD></TR>
|
||||
<TR><TH colspan="2"><A name="DayCollected-2003-06-17">Term Name: DayCollected</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/DayCollected</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>DayCollected</TD></TR> <TR><TD>Definition:</TD><TD>The two digit day of the month in the Common Era calendar during which the cataloged item was collected from the field.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>DayCollected-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#DayCollected-2003-06-17">DayCollected</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>DayOfMonth-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin</TD></TR>
|
||||
<TR><TH colspan="2"><A name="DayIdentified-2003-06-13">Term Name: DayIdentified</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/DayIdentified</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>DayIdentified</TD></TR> <TR><TD>Definition:</TD><TD>The day portion of the date when the Collection Item was identified; as two digits [01..31].</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-13</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-13</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>DayIdentified-2003-06-13</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>DateIdentified-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>accessible from DataSets/DataSet/Units/Unit/Identifications/Identification/Date/DateText</TD></TR>
|
||||
<TR><TH colspan="2"><A name="DayIdentified-2003-06-17">Term Name: DayIdentified</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/DayIdentified</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>DayIdentified</TD></TR> <TR><TD>Definition:</TD><TD>The two digit day of the month in the Common Era calendar during which the cataloged item was identified.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>DayIdentified-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#DayIdentified-2003-06-17">DayIdentified</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>DateIdentified-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>accessible from DataSets/DataSet/Units/Unit/Identifications/Identification/Date/DateText</TD></TR>
|
||||
<TR><TH colspan="2"><A name="DayOfMonth-2008-11-19">Term Name: DayOfMonth</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/DayOfMonth</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>DayOfMonth</TD></TR> <TR><TD>Definition:</TD><TD>The two-digit day of the month in which the sampling event occurred.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "28". See <a href="http://code.google.com/p/darwincore/wiki/DayOfMonth">http://code.google.com/p/darwincore/wiki/DayOfMonth</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEvent</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>DayOfMonth-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#DayOfMonth-2008-11-19">DayOfMonth</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin</TD></TR>
|
||||
<TR><TH colspan="2"><A name="DayOfYear-2007-04-17">Term Name: DayOfYear</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwcore/DayOfYear</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwcore/</TD></TR> <TR><TD>Label:</TD><TD>DayOfYear</TD></TR> <TR><TD>Definition:</TD><TD>The ordinal day of the year on which the object or observation was collected (1 for January 1, 365 for December 31, except in a leap year, in which case it is 366). If the EarliestDateCollected and LatestDateCollected do not occur on the same day, do not populate DayOfYear.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>DayOfYear-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#DayOfYear-2007-04-17">DayOfYear</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>StartDayOfYear-2008-11-19, EndDayOfYear-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/DateTime/DayNumberBegin</TD></TR>
|
||||
<TR><TH colspan="2"><A name="DecimalLatitude-2003-06-17">Term Name: DecimalLatitude</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/DecimalLatitude</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>DecimalLatitude</TD></TR> <TR><TD>Definition:</TD><TD>The latitude of the location from which the cataloged item was collected, expressed in decimal degrees.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>DecimalLatitude-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#DecimalLatitude-2003-06-17">DecimalLatitude</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>DecimalLatitude-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/LatitudeDecimal</TD></TR>
|
||||
<TR><TH colspan="2"><A name="DecimalLatitude-2007-04-17">Term Name: DecimalLatitude</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/geospatial/DecimalLatitude</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/geospatial/</TD></TR> <TR><TD>Label:</TD><TD>DecimalLatitude</TD></TR> <TR><TD>Definition:</TD><TD>The latitude of the geographic center of a location where an event occurred (organism collected, observation made), expressed in decimal degrees. Positive values are North of the Equator, negative values are South of the Equator. Describes the point-radius representation of the location, along with DecimalLongitude, GeodeticDatum, and CoordinateUncertaintyInMeters. Example: -41.0983423</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>DecimalLatitude-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#DecimalLatitude-2007-04-17">DecimalLatitude</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>DecimalLatitude-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/LatitudeDecimal</TD></TR>
|
||||
<TR><TH colspan="2"><A name="DecimalLatitude-2008-11-19">Term Name: DecimalLatitude</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/DecimalLatitude</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>DecimalLatitude</TD></TR> <TR><TD>Definition:</TD><TD>The geographic latitude (in decimal degrees, using the coordinate reference system given in GeodeticDatum) of the geographic center of a sampling location. Positive values are north of the Equator, negative values are south of it.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "-41.0983423". See <a href="http://code.google.com/p/darwincore/wiki/DecimalLatitude">http://code.google.com/p/darwincore/wiki/DecimalLatitude</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>DecimalLatitude-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#DecimalLatitude-2008-11-19">DecimalLatitude</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/LatitudeDecimal</TD></TR>
|
||||
<TR><TH colspan="2"><A name="DecimalLongitude-2003-06-17">Term Name: DecimalLongitude</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/DecimalLongitude</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>DecimalLongitude</TD></TR> <TR><TD>Definition:</TD><TD>The longitude of the location from which the cataloged item was collected, expressed in decimal degrees.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>DecimalLongitude-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#DecimalLongitude-2003-06-17">DecimalLongitude</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>DecimalLongitude-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/LongitudeDecimal</TD></TR>
|
||||
<TR><TH colspan="2"><A name="DecimalLongitude-2007-04-17">Term Name: DecimalLongitude</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/geospatial/DecimalLongitude</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/geospatial/</TD></TR> <TR><TD>Label:</TD><TD>DecimalLongitude</TD></TR> <TR><TD>Definition:</TD><TD>The longitude of the geographic center of a location where an event occurred (organism collected, observation made), expressed in decimal degrees. Positive values are East of the Greenwich Meridian, negative values are West of the Greenwich Meridian. Describes the point-radius representation of the location, along with DecimalLatitude, GeodeticDatum, and CoordinateUncertaintyInMeters. Example: -71.0943235</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>DecimalLongitude-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#DecimalLongitude-2007-04-17">DecimalLongitude</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>DecimalLongitude-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/LongitudeDecimal</TD></TR>
|
||||
<TR><TH colspan="2"><A name="DecimalLongitude-2008-11-19">Term Name: DecimalLongitude</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/DecimalLongitude</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>DecimalLongitude</TD></TR> <TR><TD>Definition:</TD><TD>The geographic longitude (in decimal degrees, using the coordinate reference system given in GeodeticDatum) of the geographic center of a sampling location. Positive values are east of the Greenwich Meridian, negative values are west of it.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "-121.1761111". See <a href="http://code.google.com/p/darwincore/wiki/DecimalLongitude">http://code.google.com/p/darwincore/wiki/DecimalLongitude</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>DecimalLongitude-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#DecimalLongitude-2008-11-19">DecimalLongitude</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/LongitudeDecimal</TD></TR>
|
||||
<TR><TH colspan="2"><A name="DepthRange-2005-07-10">Term Name: DepthRange</A></TH></TR> <TR><TD>URI:</TD><TD>http://www.iobis.org/obis/DepthRange</TD></TR> <TR><TD>Namespace:</TD><TD>http://www.iobis.org/obis/</TD></TR> <TR><TD>Label:</TD><TD>DepthRange</TD></TR> <TR><TD>Definition:</TD><TD>For data sets that have the depth range expressed in one field (e.g. "150-200 m") it can be entered here as free text. Separate, numeric Minimum and Maximum Depth fields are the preferred format; the Depth Range option is included for legacy data sets.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2005-07-10</TD></TR> <TR><TD>Date Modified:</TD><TD>2005-07-10</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>DepthRange-2005-07-10</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>VerbatimDepth-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactText</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Disposition-2007-04-17">Term Name: Disposition</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/curatorial/Disposition</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/curatorial/</TD></TR> <TR><TD>Label:</TD><TD>Disposition</TD></TR> <TR><TD>Definition:</TD><TD>The current disposition of the cataloged item. Examples: "in collection", "missing", "voucher elsewhere", "duplicates elsewhere".</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Disposition-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>Disposition-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/SpecimenUnit/Disposition</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Disposition-2008-11-19">Term Name: Disposition</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Disposition</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>Disposition</TD></TR> <TR><TD>Definition:</TD><TD>The current disposition of the sample. Recommended best practice is to use a controlled vocabulary.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "in collection", "missing", "voucher elsewhere", "duplicates elsewhere". See <a href="http://code.google.com/p/darwincore/wiki/Disposition">http://code.google.com/p/darwincore/wiki/Disposition</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Disposition-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#Disposition-2008-11-19">Disposition</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/SpecimenUnit/Disposition</TD></TR>
|
||||
<TR><TH colspan="2"><A name="DistanceAboveSurfaceInMetersMaximum-2008-11-19">Term Name: DistanceAboveSurfaceInMetersMaximum</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/DistanceAboveSurfaceInMetersMaximum</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>DistanceAboveSurfaceInMetersMaximum</TD></TR> <TR><TD>Definition:</TD><TD>The greater distance in meters in a range of distance (from the nearest surface in the vertical direction; positive for above, negative for below) at which the sampling event occurred.</TD></TR> <TR><TD>Comment:</TD><TD>Example: 1.5 meter sediment core from the bottom of a lake (at depth 20m) at 300m elevation; VerbatimElevation: "300m" MinimumElevationInMeters: "300", MaximumElevationInMeters: "300", VerbatimDepth: "20m", MinumumDepthInMeters: "20", MaximumDepthInMeters: "20", DistanceAboveSurfaceInMetersMinimum: "0", DistanceAboveSurfaceInMetersMaximum: "-1.5". See <a href="http://code.google.com/p/darwincore/wiki/DistanceAboveSurfaceInMetersMaximum">http://code.google.com/p/darwincore/wiki/DistanceAboveSurfaceInMetersMaximum</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>DistanceAboveSurfaceInMetersMaximum-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/UpperValue</TD></TR>
|
||||
<TR><TH colspan="2"><A name="DistanceAboveSurfaceInMetersMinimum-2008-11-19">Term Name: DistanceAboveSurfaceInMetersMinimum</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/DistanceAboveSurfaceInMetersMinimum</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>DistanceAboveSurfaceInMetersMinimum</TD></TR> <TR><TD>Definition:</TD><TD>The lesser distance in meters in a range of distance (from the nearest surface in the vertical direction; positive for above, negative for below) at which the sampling event occurred.</TD></TR> <TR><TD>Comment:</TD><TD>Example: 1.5 meter sediment core from the bottom of a lake (at depth 20m) at 300m elevation; VerbatimElevation: "300m" MinimumElevationInMeters: "300", MaximumElevationInMeters: "300", VerbatimDepth: "20m", MinumumDepthInMeters: "20", MaximumDepthInMeters: "20", DistanceAboveSurfaceInMetersMinimum: "0", DistanceAboveSurfaceInMetersMaximum: "-1.5". See <a href="http://code.google.com/p/darwincore/wiki/DistanceAboveSurfaceInMetersMinimum">http://code.google.com/p/darwincore/wiki/DistanceAboveSurfaceInMetersMinimum</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>DistanceAboveSurfaceInMetersMinimum-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/LowerValue</TD></TR>
|
||||
<TR><TH colspan="2"><A name="DwCType-2008-11-19">Term Name: DwCType</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/DwCType/DwCType</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/DwCType/</TD></TR> <TR><TD>Label:</TD><TD>DwCType</TD></TR> <TR><TD>Definition:</TD><TD>The set of classes specified by the Darwin Core Type Vocabulary, used to categorize the nature or genre of the resource.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/DwCType">http://code.google.com/p/darwincore/wiki/DwCType</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://purl.org/dc/dcam/VocabularyEncodingScheme</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>DwCType-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>RecordBasisEnum/FossileSpecimen</TD></TR>
|
||||
<TR><TH colspan="2"><A name="EarliestDateCollected-2007-04-17">Term Name: EarliestDateCollected</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwcore/EarliestDateCollected</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwcore/</TD></TR> <TR><TD>Label:</TD><TD>EarliestDateCollected</TD></TR> <TR><TD>Definition:</TD><TD>The earliest date-time (Common Era calendar) in a date-time period during which an organism or group of organisms was collected or observed. If the event is recorded as occurring at a single date-time, populate both EarliestDateCollected and LatestDateCollected with the same value.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>EarliestDateCollected-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#EarliestDateCollected-2007-04-17">EarliestDateCollected</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>EarliestDateCollected-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin</TD></TR>
|
||||
<TR><TH colspan="2"><A name="EarliestDateCollected-2008-11-19">Term Name: EarliestDateCollected</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/EarliestDateCollected</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>EarliestDateCollected</TD></TR> <TR><TD>Definition:</TD><TD>The earliest date-time in a period during which a sampling event occurred. If the event is recorded as occurring at a single date-time, populate both EarliestDateCollected and LatestDateCollected with the same value.</TD></TR> <TR><TD>Comment:</TD><TD>Date may be used to express temporal information at any level of granularity. Recommended best practice is to use an encoding scheme, such as the W3CDTF profile of ISO 8601 [W3CDTF]. See <a href="http://code.google.com/p/darwincore/wiki/EarliestDateCollected">http://code.google.com/p/darwincore/wiki/EarliestDateCollected</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD>http://purl.org/dc/terms/date</TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEvent</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>EarliestDateCollected-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#EarliestDateCollected-2008-11-19">EarliestDateCollected</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin</TD></TR>
|
||||
<TR><TH colspan="2"><A name="EndDayCollected-2005-07-10">Term Name: EndDayCollected</A></TH></TR> <TR><TD>URI:</TD><TD>http://www.iobis.org/obis/EndDayCollected</TD></TR> <TR><TD>Namespace:</TD><TD>http://www.iobis.org/obis/</TD></TR> <TR><TD>Label:</TD><TD>EndDayCollected</TD></TR> <TR><TD>Definition:</TD><TD>For samples/observations/record events that were taken over time this gives the end day of the collecting event. Possible value ranges from 01..31 inclusive.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2005-07-10</TD></TR> <TR><TD>Date Modified:</TD><TD>2005-07-10</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>EndDayCollected-2005-07-10</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>LatestDateCollected-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeEnd</TD></TR>
|
||||
<TR><TH colspan="2"><A name="EndDayOfYear-2009-01-21">Term Name: EndDayOfYear</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/EndDayOfYear</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>EndDayOfYear</TD></TR> <TR><TD>Definition:</TD><TD>The latest ordinal day of the year on which the sampling 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>Comment:</TD><TD>Examples: "1" (=1 Jan), "366" (=31 Dec), "365" (=30 Dec in a leap year, 31 Dec in a non-leap year). See <a href="http://code.google.com/p/darwincore/wiki/EndDayOfYear">http://code.google.com/p/darwincore/wiki/EndDayOfYear</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2009-01-21</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEvent</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>EndDayOfYear-2009-01-21</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#EndDayOfYear-2009-01-21">EndDayOfYear</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/DateTime/DayNumberEnd</TD></TR>
|
||||
<TR><TH colspan="2"><A name="EndJulianDay-2005-07-10">Term Name: EndJulianDay</A></TH></TR> <TR><TD>URI:</TD><TD>http://www.iobis.org/obis/EndJulianDay</TD></TR> <TR><TD>Namespace:</TD><TD>http://www.iobis.org/obis/</TD></TR> <TR><TD>Label:</TD><TD>EndJulianDay</TD></TR> <TR><TD>Definition:</TD><TD>For samples/observations/record events that were taken over time this gives the end ordinal day of the year for the collecting event; i.e., the number of days since January 1 of the same year. (January 1 is Julian Day 1.). Should be an integer from one to 365, i.e. of the form (([0-3][0-9][0-9)|([0-9][0-9)|([1-9])).</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2005-07-10</TD></TR> <TR><TD>Date Modified:</TD><TD>2005-07-10</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>EndJulianDay-2005-07-10</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>EndDayOfYear-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/DateTime/DayNumberEnd</TD></TR>
|
||||
<TR><TH colspan="2"><A name="EndLatitude-2005-07-10">Term Name: EndLatitude</A></TH></TR> <TR><TD>URI:</TD><TD>http://www.iobis.org/obis/EndLatitude</TD></TR> <TR><TD>Namespace:</TD><TD>http://www.iobis.org/obis/</TD></TR> <TR><TD>Label:</TD><TD>EndLatitude</TD></TR> <TR><TD>Definition:</TD><TD>For samples/observations/record events better represented as line features rather than point features (e.g. extended trawls or transects) this indicates the starting latitude location from which the specimen was collected or in which the sample/observation/record event occurred. This value should be expressed in decimal degrees (East & North = +; West & South = -). GPS-derived data must use the WGS 84 geodetic reference system (http://www.wgs84.com/).</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2005-07-10</TD></TR> <TR><TD>Date Modified:</TD><TD>2005-07-10</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>EndLatitude-2005-07-10</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>FootprintWKT-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/CoordinateSets/SiteCoordinates/CoordinatesLatLon/LatitudeDecimal with attribute "begin" set to true</TD></TR>
|
||||
<TR><TH colspan="2"><A name="EndLongitude-2005-07-10">Term Name: EndLongitude</A></TH></TR> <TR><TD>URI:</TD><TD>http://www.iobis.org/obis/EndLongitude</TD></TR> <TR><TD>Namespace:</TD><TD>http://www.iobis.org/obis/</TD></TR> <TR><TD>Label:</TD><TD>EndLongitude</TD></TR> <TR><TD>Definition:</TD><TD>For samples/observations/record events better represented as line features rather than point features (e.g. extended trawls or transects) this indicates the starting longitude location from which the specimen was collected. Express in decimal degrees (East & North = +; West & South = -). GPS-derived data must use the WGS 84 geodetic reference system (http://www.wgs84.com/).</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2005-07-10</TD></TR> <TR><TD>Date Modified:</TD><TD>2005-07-10</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>EndLongitude-2005-07-10</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>FootprintWKT-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/CoordinateSets/SiteCoordinates/CoordinatesLatLon/LongitudeDecimal with attribute "begin" set to true</TD></TR>
|
||||
<TR><TH colspan="2"><A name="EndMonthCollected-2005-07-10">Term Name: EndMonthCollected</A></TH></TR> <TR><TD>URI:</TD><TD>http://www.iobis.org/obis/EndMonthCollected</TD></TR> <TR><TD>Namespace:</TD><TD>http://www.iobis.org/obis/</TD></TR> <TR><TD>Label:</TD><TD>EndMonthCollected</TD></TR> <TR><TD>Definition:</TD><TD>For samples/observations/record events that were taken over time this gives the end month of the collecting event. Possible values range from 01...12 inclusive.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2005-07-10</TD></TR> <TR><TD>Date Modified:</TD><TD>2005-07-10</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>EndMonthCollected-2005-07-10</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>LatestDateCollected-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeEnd</TD></TR>
|
||||
<TR><TH colspan="2"><A name="EndTimeOfDay-2005-07-10">Term Name: EndTimeOfDay</A></TH></TR> <TR><TD>URI:</TD><TD>http://www.iobis.org/obis/EndTimeOfDay</TD></TR> <TR><TD>Namespace:</TD><TD>http://www.iobis.org/obis/</TD></TR> <TR><TD>Label:</TD><TD>EndTimeOfDay</TD></TR> <TR><TD>Definition:</TD><TD>The time of day when the sampling event ended, expressed as decimal hours from midnight local time. Examples: 0 = midnight, 12.0 = mid-day, 13.5 = 13:30</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2005-07-10</TD></TR> <TR><TD>Date Modified:</TD><TD>2005-07-10</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>EndTimeOfDay-2005-07-10</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>EndTimeOfDay-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/DateTime/TimeOfDayEnd</TD></TR>
|
||||
<TR><TH colspan="2"><A name="EndTimeOfDay-2008-11-19">Term Name: EndTimeOfDay</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/EndTimeOfDay</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>EndTimeOfDay</TD></TR> <TR><TD>Definition:</TD><TD>The time of day when the sampling event ended, expressed as decimal hours from midnight, local time.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "12.0" (= noon), "13.5" (= 1:30pm). See <a href="http://code.google.com/p/darwincore/wiki/EndTimeOfDay">http://code.google.com/p/darwincore/wiki/EndTimeOfDay</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEvent</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>EndTimeOfDay-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#EndTimeOfDay-2008-11-19">EndTimeOfDay</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/DateTime/TimeOfDayEnd</TD></TR>
|
||||
<TR><TH colspan="2"><A name="EndYearCollected-2005-07-10">Term Name: EndYearCollected</A></TH></TR> <TR><TD>URI:</TD><TD>http://www.iobis.org/obis/EndYearCollected</TD></TR> <TR><TD>Namespace:</TD><TD>http://www.iobis.org/obis/</TD></TR> <TR><TD>Label:</TD><TD>EndYearCollected</TD></TR> <TR><TD>Definition:</TD><TD>For samples/observations/record events that were taken over time this gives the end year of the collecting event. The full year should be expressed (e.g. 1972 must be expressed as "1972" not "72"). Must always be a four digit integer.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2005-07-10</TD></TR> <TR><TD>Date Modified:</TD><TD>2005-07-10</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>EndYearCollected-2005-07-10</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>LatestDateCollected-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeEnd</TD></TR>
|
||||
<TR><TH colspan="2"><A name="EstablishmentMeans-2008-11-19">Term Name: EstablishmentMeans</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/EstablishmentMeans</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>EstablishmentMeans</TD></TR> <TR><TD>Definition:</TD><TD>The process by which the the biological individual represented by the sample became established at the sampling location. Recommended best practice is to use a controlled vocabulary.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/EstablishmentMeans">http://code.google.com/p/darwincore/wiki/EstablishmentMeans</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>EstablishmentMeans-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/EstablishmentMeans</TD></TR>
|
||||
<TR><TH colspan="2"><A name="EventAttribute-2008-11-19">Term Name: EventAttribute</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/EventAttribute</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>EventAttribute</TD></TR> <TR><TD>Definition:</TD><TD>Container class for information about attributes related to a given sampling event.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/EventAttribute">http://code.google.com/p/darwincore/wiki/EventAttribute</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/2000/01/rdf-schema#Class</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEvent</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>EventAttribute-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts</TD></TR>
|
||||
<TR><TH colspan="2"><A name="EventAttributeAccuracy-2009-01-18">Term Name: EventAttributeAccuracy</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/EventAttributeAccuracy</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>EventAttributeAccuracy</TD></TR> <TR><TD>Definition:</TD><TD>The description of the error associated with the EventAttributeValue.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "0.01", "normal distribution with variation of 2 m". See <a href="http://code.google.com/p/darwincore/wiki/EventAttributeAccuracy">http://code.google.com/p/darwincore/wiki/EventAttributeAccuracy</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD>http://rs.tdwg.org/dwc/terms/Accuracy</TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2009-01-18</TD></TR> <TR><TD>Date Modified:</TD><TD>2009-01-18</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/EventAttribute</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>EventAttributeAccuracy-2009-01-18</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Aspect/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Accuracy</TD></TR>
|
||||
<TR><TH colspan="2"><A name="EventAttributeDeterminedBy-2009-01-23">Term Name: EventAttributeDeterminedBy</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/EventAttributeDeterminedBy</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>EventAttributeDeterminedBy</TD></TR> <TR><TD>Definition:</TD><TD>The agent responsible for having determined the value of the measurement or characteristic of the sampling event.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Robert Hijmans". See <a href="http://code.google.com/p/darwincore/wiki/EventAttributeDeterminedBy">http://code.google.com/p/darwincore/wiki/EventAttributeDeterminedBy</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2009-01-23</TD></TR> <TR><TD>Date Modified:</TD><TD>2009-01-23</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/EventAttribute</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>EventAttributeDeterminedBy-2009-01-23</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/MeasuredBy</TD></TR>
|
||||
<TR><TH colspan="2"><A name="EventAttributeDeterminedDate-2009-01-23">Term Name: EventAttributeDeterminedDate</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/EventAttributeDeterminedDate</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>EventAttributeDeterminedDate</TD></TR> <TR><TD>Definition:</TD><TD>The date on which the the measurement or characteristic of the sampling event was made.</TD></TR> <TR><TD>Comment:</TD><TD>Date may be used to express temporal information at any level of granularity. Recommended best practice is to use an encoding scheme, such as the W3CDTF profile of ISO 8601 [W3CDTF]. See <a href="http://code.google.com/p/darwincore/wiki/EventAttributeDeterminedDate">http://code.google.com/p/darwincore/wiki/EventAttributeDeterminedDate</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD>http://purl.org/dc/terms/date</TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2009-01-23</TD></TR> <TR><TD>Date Modified:</TD><TD>2009-01-23</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/EventAttribute</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>EventAttributeDeterminedDate-2009-01-23</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/MeasurementDateTime</TD></TR>
|
||||
<TR><TH colspan="2"><A name="EventAttributeID-2008-11-19">Term Name: EventAttributeID</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/EventAttributeID</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>EventAttributeID</TD></TR> <TR><TD>Definition:</TD><TD>An identifier for the event attribute. May be a global unique identifier or an identifier specific to the data set.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/EventAttributeID">http://code.google.com/p/darwincore/wiki/EventAttributeID</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD>http://purl.org/dc/terms/identifier</TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/EventAttribute</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>EventAttributeID-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>not in ABCD</TD></TR>
|
||||
<TR><TH colspan="2"><A name="EventAttributeRemarks-2008-11-19">Term Name: EventAttributeRemarks</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/EventAttributeRemarks</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>EventAttributeRemarks</TD></TR> <TR><TD>Definition:</TD><TD>Comments or notes accompanying the measurement or characteristic of the sampling event.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "temperature taken at 15:00". See <a href="http://code.google.com/p/darwincore/wiki/EventAttributeRemarks">http://code.google.com/p/darwincore/wiki/EventAttributeRemarks</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/EventAttribute</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>EventAttributeRemarks-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>not in ABCD</TD></TR>
|
||||
<TR><TH colspan="2"><A name="EventAttributeType-2008-11-19">Term Name: EventAttributeType</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/EventAttributeType</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>EventAttributeType</TD></TR> <TR><TD>Definition:</TD><TD>The nature of the measurement or characteristic of the sampling event. Recommended best practice is to use a controlled vocabulary.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Temperature". See <a href="http://code.google.com/p/darwincore/wiki/EventAttributeType">http://code.google.com/p/darwincore/wiki/EventAttributeType</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/EventAttribute</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>EventAttributeType-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Parameter</TD></TR>
|
||||
<TR><TH colspan="2"><A name="EventAttributeUnit-2008-11-19">Term Name: EventAttributeUnit</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/EventAttributeUnit</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>EventAttributeUnit</TD></TR> <TR><TD>Definition:</TD><TD>The units for the value of the measurement or characteristic of the sampling event. Recommended best practice is to use International System of Units (SI) units.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Celcius". See <a href="http://code.google.com/p/darwincore/wiki/EventAttributeUnit">http://code.google.com/p/darwincore/wiki/EventAttributeUnit</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/EventAttribute</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>EventAttributeUnit-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UnitOfMeasurement</TD></TR>
|
||||
<TR><TH colspan="2"><A name="EventAttributeValue-2008-11-19">Term Name: EventAttributeValue</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/EventAttributeValue</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>EventAttributeValue</TD></TR> <TR><TD>Definition:</TD><TD>The value of the measurement or characteristic of the sampling event.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "22". See <a href="http://code.google.com/p/darwincore/wiki/EventAttributeValue">http://code.google.com/p/darwincore/wiki/EventAttributeValue</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/EventAttribute</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>EventAttributeValue-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/UpperValue</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Family-2003-06-13">Term Name: Family</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/Family</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>Family</TD></TR> <TR><TD>Definition:</TD><TD>The family name of the organism</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-13</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-13</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Family-2003-06-13</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>Family-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = familia</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Family-2003-06-17">Term Name: Family</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/Family</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>Family</TD></TR> <TR><TD>Definition:</TD><TD>The phylogenetic family to which the cataloged item belongs.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Family-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#Family-2003-06-17">Family</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>Family-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = familia</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Family-2007-04-17">Term Name: Family</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwcore/Family</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwcore/</TD></TR> <TR><TD>Label:</TD><TD>Family</TD></TR> <TR><TD>Definition:</TD><TD>The name of the family in which the organism is classified.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Family-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#Family-2007-04-17">Family</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>Family-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = familia</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Family-2008-11-19">Term Name: Family</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Family</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>Family</TD></TR> <TR><TD>Definition:</TD><TD>The name of the family in which the ScientificName is classified.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Ctenomyidae". See <a href="http://code.google.com/p/darwincore/wiki/Family">http://code.google.com/p/darwincore/wiki/Family</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Family-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#Family-2008-11-19">Family</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = familia</TD></TR>
|
||||
<TR><TH colspan="2"><A name="FieldNotes-2003-06-17">Term Name: FieldNotes</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/FieldNotes</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>FieldNotes</TD></TR> <TR><TD>Definition:</TD><TD>A reference to, or flag marking the existence of notes taken in the field for the cataloged item.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>FieldNotes-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>FieldNotes-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/FieldNotes</TD></TR>
|
||||
<TR><TH colspan="2"><A name="FieldNotes-2007-04-17">Term Name: FieldNotes</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/curatorial/FieldNotes</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/curatorial/</TD></TR> <TR><TD>Label:</TD><TD>FieldNotes</TD></TR> <TR><TD>Definition:</TD><TD>One of a) a flag indicating the existence of, b) a reference to (such as a URL or literature citation), or c) the actual free text content of notes taken in the field about the specimen or observation.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>FieldNotes-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#FieldNotes-2007-04-17">FieldNotes</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>FieldNotes-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/FieldNotes</TD></TR>
|
||||
<TR><TH colspan="2"><A name="FieldNotes-2009-01-21">Term Name: FieldNotes</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/FieldNotes</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>FieldNotes</TD></TR> <TR><TD>Definition:</TD><TD>One of a) an indicator of the existence of, b) a reference to (publication, URL), or c) the text of notes taken in the field about the sample.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "notes available in Grinnell-Miller Library". See <a href="http://code.google.com/p/darwincore/wiki/FieldNotes">http://code.google.com/p/darwincore/wiki/FieldNotes</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2009-01-21</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEvent</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>FieldNotes-2009-01-21</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#FieldNotes-2009-01-21">FieldNotes</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/FieldNotes</TD></TR>
|
||||
<TR><TH colspan="2"><A name="FieldNumber-2003-06-13">Term Name: FieldNumber</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/FieldNumber</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>FieldNumber</TD></TR> <TR><TD>Definition:</TD><TD>A "number" (really a string) created at collection time to identify all material that resulted from a collecting event.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-13</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-13</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>FieldNumber-2003-06-13</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>FieldNumber-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/Code</TD></TR>
|
||||
<TR><TH colspan="2"><A name="FieldNumber-2003-06-17">Term Name: FieldNumber</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/FieldNumber</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>FieldNumber</TD></TR> <TR><TD>Definition:</TD><TD>An identifying string applied to a set of material that resulted from a single collecting event.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>FieldNumber-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#FieldNumber-2003-06-17">FieldNumber</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>FieldNumber-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/Code</TD></TR>
|
||||
<TR><TH colspan="2"><A name="FieldNumber-2007-04-17">Term Name: FieldNumber</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/curatorial/FieldNumber</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/curatorial/</TD></TR> <TR><TD>Label:</TD><TD>FieldNumber</TD></TR> <TR><TD>Definition:</TD><TD>An identifying string applied to a set of objects or observations resulting from a single collecting event.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>FieldNumber-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#FieldNumber-2007-04-17">FieldNumber</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>FieldNumber-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/Code</TD></TR>
|
||||
<TR><TH colspan="2"><A name="FieldNumber-2008-11-19">Term Name: FieldNumber</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/FieldNumber</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>FieldNumber</TD></TR> <TR><TD>Definition:</TD><TD>An identifier given to the sampling event in the field. Often serves as a link between field notes and the sampling event.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "RV Sol 87-03-08". See <a href="http://code.google.com/p/darwincore/wiki/FieldNumber">http://code.google.com/p/darwincore/wiki/FieldNumber</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEvent</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>FieldNumber-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#FieldNumber-2008-11-19">FieldNumber</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/Code</TD></TR>
|
||||
<TR><TH colspan="2"><A name="FootprintSpatialFit-2007-04-17">Term Name: FootprintSpatialFit</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/geospatial/FootprintSpatialFit</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/geospatial/</TD></TR> <TR><TD>Label:</TD><TD>FootprintSpatialFit</TD></TR> <TR><TD>Definition:</TD><TD>A measure of how well the geometry expressed in the footprint match the original spatial representation, as a ratio of the area of the footprint given to the area of the original spatial representation. 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 georeference does not completely contain the original representation. The FootprintSpatialFit is undefined 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 Guide to Best Practices for Georeferencing (Chapman and Wieczorek, eds. 2006).</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>FootprintSpatialFit-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>FootprintSpatialFit-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/FootprintSpatialFit (ABCD v2.06b)</TD></TR>
|
||||
<TR><TH colspan="2"><A name="FootprintSpatialFit-2008-11-19">Term Name: FootprintSpatialFit</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/FootprintSpatialFit</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>FootprintSpatialFit</TD></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 sampling 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>Comment:</TD><TD>Detailed explanations with graphical examples can be found in the "Guide to Best Practices for Georeferencing" (Chapman and Wieczorek, eds. 2006). See <a href="http://code.google.com/p/darwincore/wiki/FootprintSpatialFit">http://code.google.com/p/darwincore/wiki/FootprintSpatialFit</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>FootprintSpatialFit-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#FootprintSpatialFit-2008-11-19">FootprintSpatialFit</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/FootprintSpatialFit (ABCD v2.06b)</TD></TR>
|
||||
<TR><TH colspan="2"><A name="FootprintWKT-2007-04-17">Term Name: FootprintWKT</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/geospatial/FootprintWKT</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/geospatial/</TD></TR> <TR><TD>Label:</TD><TD>FootprintWKT</TD></TR> <TR><TD>Definition:</TD><TD>A Well-Known Text (WKT; see http://en.wikipedia.org/wiki/Well-known_text) representation of the the shape (footprint, geometry) that defines the location of the occurrence. The same place may have both a point-radius representation (see DecimalLatitude) and a footprint representation, and they may differ from each other for the same occurrence. 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))</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>FootprintWKT-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>FootprintWKT-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/FootprintWKT (ABCD v2.06b)</TD></TR>
|
||||
<TR><TH colspan="2"><A name="FootprintWKT-2008-11-19">Term Name: FootprintWKT</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/FootprintWKT</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>FootprintWKT</TD></TR> <TR><TD>Definition:</TD><TD>A Well-Known Text (WKT) representation of the the shape (footprint, geometry) that defines the location of the occurrence. The sampling location may have both a point-radius representation (see DecimalLatitude) and a footprint representation, and they may differ from each other for a given location.</TD></TR> <TR><TD>Comment:</TD><TD>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)). See <a href="http://code.google.com/p/darwincore/wiki/FootprintWKT">http://code.google.com/p/darwincore/wiki/FootprintWKT</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>FootprintWKT-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#FootprintWKT-2008-11-19">FootprintWKT</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/FootprintWKT (ABCD v2.06b)</TD></TR>
|
||||
<TR><TH colspan="2"><A name="FossilSpecimen-2008-11-19">Term Name: FossilSpecimen</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwctype/FossilSpecimen</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwctype/</TD></TR> <TR><TD>Label:</TD><TD>FossilSpecimen</TD></TR> <TR><TD>Definition:</TD><TD>A resource describing a fossilized specimen.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/FossilSpecimen">http://code.google.com/p/darwincore/wiki/FossilSpecimen</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/2000/01/rdf-schema#Class</TD></TR> <TR><TD>Refines:</TD><TD>http://rs.tdwg.org/dwc/dwctype/PreservedSpecimen</TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Member Of:</TD><TD>http://rs.tdwg.org/dwc/terms/DwCType</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>FossilSpecimen-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>RecordBasisEnum/FossileSpecimen</TD></TR>
|
||||
<TR><TH colspan="2"><A name="GenBankNum-2003-06-17">Term Name: GenBankNum</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/GenBankNum</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>GenBankNum</TD></TR> <TR><TD>Definition:</TD><TD>GenBank Accession number.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>GenBankNum-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>AssociatedSequences-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Sequences/Sequence/ID-in-Database + constant</TD></TR>
|
||||
<TR><TH colspan="2"><A name="GenBankNumber-2007-04-17">Term Name: GenBankNumber</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/curatorial/GenBankNumber</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/curatorial/</TD></TR> <TR><TD>Label:</TD><TD>GenBankNumber</TD></TR> <TR><TD>Definition:</TD><TD>GenBank Accession number(s) associated with the biological individual(s) referred to by the cataloged object.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>GenBankNumber-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#GenBankNumber-2007-04-17">GenBankNumber</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>AssociatedSequences-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Sequences/Sequence/ID-in-Database + constant</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Generalizations-2008-11-19">Term Name: Generalizations</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Generalizations</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>Generalizations</TD></TR> <TR><TD>Definition:</TD><TD>Actions taken to make the data as shared less specific or complete than in its original form. Suggests that alternative data of highly quality may be available on request.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Coordinates generalized from original GPS coordinates to the nearest half degree grid cell". See <a href="http://code.google.com/p/darwincore/wiki/Generalizations">http://code.google.com/p/darwincore/wiki/Generalizations</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Generalizations-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>not in ABCD</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Genus-2003-06-13">Term Name: Genus</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/Genus</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>Genus</TD></TR> <TR><TD>Definition:</TD><TD>The genus name of the organism</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-13</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-13</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Genus-2003-06-13</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>Genus-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Viral/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/GenusOrMonomial}</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Genus-2003-06-17">Term Name: Genus</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/Genus</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>Genus</TD></TR> <TR><TD>Definition:</TD><TD>The phylogenetic genus to which the cataloged item belongs.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Genus-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#Genus-2003-06-17">Genus</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>Genus-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Viral/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/GenusOrMonomial}</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Genus-2007-04-17">Term Name: Genus</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwcore/Genus</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwcore/</TD></TR> <TR><TD>Label:</TD><TD>Genus</TD></TR> <TR><TD>Definition:</TD><TD>The name of the genus in which the organism is classified.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Genus-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#Genus-2007-04-17">Genus</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>Genus-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Viral/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/GenusOrMonomial}</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Genus-2008-11-19">Term Name: Genus</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Genus</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>Genus</TD></TR> <TR><TD>Definition:</TD><TD>The name of the genus in which the ScientificName is classified.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Quercus". See <a href="http://code.google.com/p/darwincore/wiki/Genus">http://code.google.com/p/darwincore/wiki/Genus</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Genus-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#Genus-2008-11-19">Genus</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Viral/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/GenusOrMonomial}</TD></TR>
|
||||
<TR><TH colspan="2"><A name="GeodeticDatum-2007-04-17">Term Name: GeodeticDatum</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/geospatial/GeodeticDatum</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/geospatial/</TD></TR> <TR><TD>Label:</TD><TD>GeodeticDatum</TD></TR> <TR><TD>Definition:</TD><TD>The geodetic datum to which the latitude and longitude refer. If not known, use "not recorded". This concept should be vocabulary-controlled. Example: "WGS84"</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>GeodeticDatum-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#GeodeticDatum-2007-04-17">GeodeticDatum</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>GeodeticDatum-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/SpatialDatum</TD></TR>
|
||||
<TR><TH colspan="2"><A name="GeodeticDatum-2008-11-19">Term Name: GeodeticDatum</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/GeodeticDatum</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>GeodeticDatum</TD></TR> <TR><TD>Definition:</TD><TD>The geodetic datum (or ellipsoid) for the geographic coordinates in DecimalLatitude, DecimalLongitude, VerbatimCoordinates, VerbatimLatitude, and VerbatimLongitude. Recommended best practice is to use a controlled vocabulary.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "WGS84", "NAD27", "Campo Inchauspe", "European 1950", "Clarke 1866". See <a href="http://code.google.com/p/darwincore/wiki/GeodeticDatum">http://code.google.com/p/darwincore/wiki/GeodeticDatum</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>GeodeticDatum-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#GeodeticDatum-2008-11-19">GeodeticDatum</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/SpatialDatum</TD></TR>
|
||||
<TR><TH colspan="2"><A name="GeoreferencedBy-2009-01-21">Term Name: GeoreferencedBy</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/GeoreferencedBy</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>GeoreferencedBy</TD></TR> <TR><TD>Definition:</TD><TD>The name(s) of the person(s) who applied the Georeference to the SampleLocation.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Heather Constable, Carol Spencer". See <a href="http://code.google.com/p/darwincore/wiki/GeoreferencedBy">http://code.google.com/p/darwincore/wiki/GeoreferencedBy</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD>http://rs.tdwg.org/dwc/terms/AccordingTo</TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2009-01-21</TD></TR> <TR><TD>Date Modified:</TD><TD>2009-01-21</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>GeoreferencedBy-2009-01-21</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>not in ABCD</TD></TR>
|
||||
<TR><TH colspan="2"><A name="GeoreferenceProtocol-2007-04-17">Term Name: GeoreferenceProtocol</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/geospatial/GeoreferenceProtocol</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/geospatial/</TD></TR> <TR><TD>Label:</TD><TD>GeoreferenceProtocol</TD></TR> <TR><TD>Definition:</TD><TD>A reference to the methods used for determining the coordinates and uncertainties. Example: "http://manisnet.org/GeorefGuide.html".</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>GeoreferenceProtocol-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#GeoreferenceProtocol-2007-04-17">GeoreferenceProtocol</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>GeoreferenceProtocol-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinateMethod</TD></TR>
|
||||
<TR><TH colspan="2"><A name="GeoreferenceProtocol-2008-11-19">Term Name: GeoreferenceProtocol</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/GeoreferenceProtocol</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>GeoreferenceProtocol</TD></TR> <TR><TD>Definition:</TD><TD>A description or reference to the methods used to determine the spatial footprint, coordinates, and uncertainties.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "GBIF Best Practices for Georeferencing", "MaNIS/HerpNet/ORNIS Georeferencing Guidelines", "BioGeomancer". See <a href="http://code.google.com/p/darwincore/wiki/GeoreferenceProtocol">http://code.google.com/p/darwincore/wiki/GeoreferenceProtocol</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>GeoreferenceProtocol-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#GeoreferenceProtocol-2008-11-19">GeoreferenceProtocol</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinateMethod</TD></TR>
|
||||
<TR><TH colspan="2"><A name="GeoreferenceRemarks-2007-04-17">Term Name: GeoreferenceRemarks</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/geospatial/GeoreferenceRemarks</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/geospatial/</TD></TR> <TR><TD>Label:</TD><TD>GeoreferenceRemarks</TD></TR> <TR><TD>Definition:</TD><TD>Comments about the spatial description determination, explaining assumptions made in addition or opposition to the those formalized in the method referred to in GeoreferenceProtocol.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>GeoreferenceRemarks-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#GeoreferenceRemarks-2007-04-17">GeoreferenceRemarks</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>GeoreferenceRemarks-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceRemarks</TD></TR>
|
||||
<TR><TH colspan="2"><A name="GeoreferenceRemarks-2008-11-19">Term Name: GeoreferenceRemarks</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/GeoreferenceRemarks</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>GeoreferenceRemarks</TD></TR> <TR><TD>Definition:</TD><TD>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.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "assumed distance by road (Hwy. 101)". See <a href="http://code.google.com/p/darwincore/wiki/GeoreferenceRemarks">http://code.google.com/p/darwincore/wiki/GeoreferenceRemarks</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>GeoreferenceRemarks-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#GeoreferenceRemarks-2008-11-19">GeoreferenceRemarks</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceRemarks</TD></TR>
|
||||
<TR><TH colspan="2"><A name="GeoreferenceSources-2007-04-17">Term Name: GeoreferenceSources</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/geospatial/GeoreferenceSources</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/geospatial/</TD></TR> <TR><TD>Label:</TD><TD>GeoreferenceSources</TD></TR> <TR><TD>Definition:</TD><TD>A list of maps, gazetteers or other resources used to georeference the locality. The content of this concept is meant to be specific enough to allow anyone in the future to use the same resource to georeference the same locality. Examples: "USGS 1:24000 Florence Montana Quad", "Terrametrics 2008 on Google Earth"</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>GeoreferenceSources-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>GeoreferenceSources-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceSources</TD></TR>
|
||||
<TR><TH colspan="2"><A name="GeoreferenceSources-2008-11-19">Term Name: GeoreferenceSources</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/GeoreferenceSources</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>GeoreferenceSources</TD></TR> <TR><TD>Definition:</TD><TD>A list (concatenated and separated) of maps, gazetteers, or other resources used to georeference the locality, described specifically enough to allow anyone in the future to use the same resource to georeference the same locality.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "USGS 1:24000 Florence Montana Quad", "Terrametrics 2008 on Google Earth". See <a href="http://code.google.com/p/darwincore/wiki/GeoreferenceSources">http://code.google.com/p/darwincore/wiki/GeoreferenceSources</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>GeoreferenceSources-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#GeoreferenceSources-2008-11-19">GeoreferenceSources</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceSources</TD></TR>
|
||||
<TR><TH colspan="2"><A name="GeoreferenceVerificationStatus-2007-04-17">Term Name: GeoreferenceVerificationStatus</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/geospatial/GeoreferenceVerificationStatus</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/geospatial/</TD></TR> <TR><TD>Label:</TD><TD>GeoreferenceVerificationStatus</TD></TR> <TR><TD>Definition:</TD><TD>A categorical description of the extent to which the georeference has been verified to represent the location where the specimen or observation was collected. This element should be vocabulary-controlled. Examples: "requires verification", "verified by collector", "verified by curator".</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>GeoreferenceVerificationStatus-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>GeoreferenceVerificationStatus-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceVerificationStatus</TD></TR>
|
||||
<TR><TH colspan="2"><A name="GeoreferenceVerificationStatus-2008-11-19">Term Name: GeoreferenceVerificationStatus</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/GeoreferenceVerificationStatus</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>GeoreferenceVerificationStatus</TD></TR> <TR><TD>Definition:</TD><TD>A categorical description of the extent to which the georeference has been verified to represent the location where the specimen or observation was collected. Recommended best practice is to use a controlled vocabulary.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "requires verification", "verified by collector", "verified by curator". See <a href="http://code.google.com/p/darwincore/wiki/GeoreferenceVerificationStatus">http://code.google.com/p/darwincore/wiki/GeoreferenceVerificationStatus</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>GeoreferenceVerificationStatus-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#GeoreferenceVerificationStatus-2008-11-19">GeoreferenceVerificationStatus</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceVerificationStatus</TD></TR>
|
||||
<TR><TH colspan="2"><A name="GeorefMethod-2003-06-17">Term Name: GeorefMethod</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/GeorefMethod</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>GeorefMethod</TD></TR> <TR><TD>Definition:</TD><TD>A reference to the methods used for determining the coordinates and uncertainties.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>GeorefMethod-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>GeoreferenceProtocol-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinateMethod</TD></TR>
|
||||
<TR><TH colspan="2"><A name="GlobalUniqueIdentifier-2007-04-17">Term Name: GlobalUniqueIdentifier</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwcore/GlobalUniqueIdentifier</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwcore/</TD></TR> <TR><TD>Label:</TD><TD>GlobalUniqueIdentifier</TD></TR> <TR><TD>Definition:</TD><TD>A Uniform Resource Name (URN) as a unique identifier for the specimen or observation record. In the absence of a persistent global unique identifier, construct one in the form: “[InstitutionCode]:[CollectionCode]: [CatalogNumber]” Examples: 1) urn:lsid:nhm.ku.edu:Herps:32 2) “FMNH:Mammal:145732”</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>GlobalUniqueIdentifier-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>SampleID-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/UnitGUID</TD></TR>
|
||||
<TR><TH colspan="2"><A name="GMLFeature-2005-07-10">Term Name: GMLFeature</A></TH></TR> <TR><TD>URI:</TD><TD>http://www.iobis.org/obis/GMLFeature</TD></TR> <TR><TD>Namespace:</TD><TD>http://www.iobis.org/obis/</TD></TR> <TR><TD>Label:</TD><TD>GMLFeature</TD></TR> <TR><TD>Definition:</TD><TD>Geographic Markup Language(GML) description of the feature for representing complex shapes such as lines and polygons, per Open GIS Consortium (OGC) standards - http://www.opengis.net/gml/01-029/GML2.html.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2005-07-10</TD></TR> <TR><TD>Date Modified:</TD><TD>2005-07-10</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>GMLFeature-2005-07-10</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>FootprintWKT-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/GML</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Habitat-2008-11-19">Term Name: Habitat</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Habitat</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>Habitat</TD></TR> <TR><TD>Definition:</TD><TD>A description of the habitat in which the sampling event occurred.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "oak savanna". See <a href="http://code.google.com/p/darwincore/wiki/Habitat">http://code.google.com/p/darwincore/wiki/Habitat</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEvent</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Habitat-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>not in ABCD</TD></TR>
|
||||
<TR><TH colspan="2"><A name="HigherGeography-2003-06-17">Term Name: HigherGeography</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/HigherGeography</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>HigherGeography</TD></TR> <TR><TD>Definition:</TD><TD>The combination of all geographic elements less specific than locality. "Like" query operations on this element will search for a substring in any of the higher geography attributes.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>HigherGeography-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>HigherGeography-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>{DataSets/DataSet/Units/Unit/Gathering/LocalityText or DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName}</TD></TR>
|
||||
<TR><TH colspan="2"><A name="HigherGeography-2007-04-17">Term Name: HigherGeography</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwcore/HigherGeography</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwcore/</TD></TR> <TR><TD>Label:</TD><TD>HigherGeography</TD></TR> <TR><TD>Definition:</TD><TD>The names (concatenated and separated) of geographic elements less specific than the information in the Locality element. "LIKE" or "contains" substring query operations are meant to be used with this element to find matching geographic names. This can be useful if it is unclear in which element a name might be found, and in cases where there is no other appropriate geographic element. Example: "South America, Argentina, Patagonia, Parque Nacional Nahuel Huapi, Neuquén, Los Lagos" with accompanying values "South America" in Continent, "Argentina" in Country, "Neuquén" in StateProvince, and Los Lagos in County.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>HigherGeography-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#HigherGeography-2007-04-17">HigherGeography</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>HigherGeography-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>{DataSets/DataSet/Units/Unit/Gathering/LocalityText or DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName}</TD></TR>
|
||||
<TR><TH colspan="2"><A name="HigherGeography-2009-01-21">Term Name: HigherGeography</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/HigherGeography</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>HigherGeography</TD></TR> <TR><TD>Definition:</TD><TD>A list (concatenated and separated) of geographic names less specific than the information in the Locality term. "LIKE" or "contains" substring query operations can be used with this element to find matching geographic names. This can be useful if it is unclear in which atomized term a name might be found, and in cases where there is no other appropriate geographic element.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "South America, Argentina, Patagonia, Parque Nacional Nahuel Huapi, Neuquén, Los Lagos" with accompanying values "South America" in Continent, "Argentina" in Country, "Neuquén" in StateProvince, and Los Lagos in County. See <a href="http://code.google.com/p/darwincore/wiki/HigherGeography">http://code.google.com/p/darwincore/wiki/HigherGeography</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2009-01-21</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>HigherGeography-2009-01-21</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#HigherGeography-2009-01-21">HigherGeography</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>{DataSets/DataSet/Units/Unit/Gathering/LocalityText or DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName}</TD></TR>
|
||||
<TR><TH colspan="2"><A name="HigherGeographyID-2009-01-21">Term Name: HigherGeographyID</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/HigherGeographyID</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>HigherGeographyID</TD></TR> <TR><TD>Definition:</TD><TD>A global unique identifier for the parent of the location.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/HigherGeographyID">http://code.google.com/p/darwincore/wiki/HigherGeographyID</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD>http://purl.org/dc/terms/identifier</TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2009-01-21</TD></TR> <TR><TD>Date Modified:</TD><TD>2009-01-21</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>HigherGeographyID-2009-01-21</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>not in ABCD</TD></TR>
|
||||
<TR><TH colspan="2"><A name="HigherTaxon-2003-06-17">Term Name: HigherTaxon</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/HigherTaxon</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>HigherTaxon</TD></TR> <TR><TD>Definition:</TD><TD>The combination of names of taxonomic ranks less specific than Genus. "Like" query operations on this element will search for a substring in any of the higher taxon attributes.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>HigherTaxon-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>HigherTaxon-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName</TD></TR>
|
||||
<TR><TH colspan="2"><A name="HigherTaxon-2007-04-17">Term Name: HigherTaxon</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwcore/HigherTaxon</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwcore/</TD></TR> <TR><TD>Label:</TD><TD>HigherTaxon</TD></TR> <TR><TD>Definition:</TD><TD>The names of taxonomic ranks less specific than SpecificEpithet concatenated and separated. "LIKE" or "contains" substring query operations are meant to be used with this element to find matching higher taxon names. This element may contain the list of scientific names of all of the supra-specific taxa in the classification used to identify (determine) the specimen or observation. Example: "Animalia, Chordata, Vertebrata, Mammalia, Theria, Eutheria, Rodentia, Hystricognatha, Hystricognathi, Ctenomyidae, Ctenomyini, Ctenomys".</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>HigherTaxon-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#HigherTaxon-2007-04-17">HigherTaxon</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>HigherTaxon-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName</TD></TR>
|
||||
<TR><TH colspan="2"><A name="HigherTaxon-2009-01-21">Term Name: HigherTaxon</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/HigherTaxon</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>HigherTaxon</TD></TR> <TR><TD>Definition:</TD><TD>A list (concatenated and separated) of the names for the taxonomic ranks less specific than the ScientificName.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Animalia, Chordata, Vertebrata, Mammalia, Theria, Eutheria, Rodentia, Hystricognatha, Hystricognathi, Ctenomyidae, Ctenomyini, Ctenomys". See <a href="http://code.google.com/p/darwincore/wiki/HigherTaxon">http://code.google.com/p/darwincore/wiki/HigherTaxon</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2009-01-21</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>HigherTaxon-2009-01-21</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#HigherTaxon-2009-01-21">HigherTaxon</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName</TD></TR>
|
||||
<TR><TH colspan="2"><A name="HigherTaxonID-2009-01-21">Term Name: HigherTaxonID</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/HigherTaxonID</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>HigherTaxonID</TD></TR> <TR><TD>Definition:</TD><TD>A global unique identifier for the parent to the taxon.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/HigherTaxonID">http://code.google.com/p/darwincore/wiki/HigherTaxonID</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD>http://purl.org/dc/terms/identifier</TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2009-01-21</TD></TR> <TR><TD>Date Modified:</TD><TD>2009-01-21</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>HigherTaxonID-2009-01-21</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>not in ABCD</TD></TR>
|
||||
<TR><TH colspan="2"><A name="HorizontalDatum-2003-06-17">Term Name: HorizontalDatum</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/HorizontalDatum</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>HorizontalDatum</TD></TR> <TR><TD>Definition:</TD><TD>The horizontal geodetic datum to which the DecimalLatitude and DecimalLongitude refer.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>HorizontalDatum-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>GeodeticDatum-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/SpatialDatum</TD></TR>
|
||||
<TR><TH colspan="2"><A name="http://dublincore.org/usage/terms/history/#languageT-001">Term Name: language</A></TH></TR> <TR><TD>URI:</TD><TD>http://purl.org/dc/terms/language</TD></TR> <TR><TD>Namespace:</TD><TD>http://purl.org/dc/terms/</TD></TR> <TR><TD>Label:</TD><TD>language</TD></TR> <TR><TD>Definition:</TD><TD>A language of the resource.</TD></TR> <TR><TD>Comment:</TD><TD>Recommended best practice is to use a controlled vocabulary such as RFC 4646 [RFC4646].</TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD>http://purl.org/dc/elements/1.1/language</TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-01-14</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-01-14</TD></TR> <TR><TD>Has Domain:</TD><TD>none</TD></TR> <TR><TD>Has Range:</TD><TD>http://purl.org/dc/terms/LinguisticSystem</TD></TR> <TR><TD>Version:</TD><TD>http://dublincore.org/usage/terms/history/#languageT-001</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>some ABCD elements have a datatype extended with a language attribute, no language element at the Unit level</TD></TR>
|
||||
<TR><TH colspan="2"><A name="http://dublincore.org/usage/terms/history/#modified-003">Term Name: modified</A></TH></TR> <TR><TD>URI:</TD><TD>http://purl.org/dc/terms/modified</TD></TR> <TR><TD>Namespace:</TD><TD>http://purl.org/dc/terms/</TD></TR> <TR><TD>Label:</TD><TD>modified</TD></TR> <TR><TD>Definition:</TD><TD>Date on which the resource was changed.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD>http://purl.org/dc/elements/1.1/date, http://purl.org/dc/terms/date</TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2000-07-11</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-01-14</TD></TR> <TR><TD>Has Domain:</TD><TD>none</TD></TR> <TR><TD>Has Range:</TD><TD>http://www.w3.org/2000/01/rdf-schema#Literal</TD></TR> <TR><TD>Version:</TD><TD>http://dublincore.org/usage/terms/history/#modified-003</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/DateLastEdited</TD></TR>
|
||||
<TR><TH colspan="2"><A name="http://dublincore.org/usage/terms/history/#rightsHolder-002">Term Name: rightsHolder</A></TH></TR> <TR><TD>URI:</TD><TD>http://purl.org/dc/terms/rightsHolder</TD></TR> <TR><TD>Namespace:</TD><TD>http://purl.org/dc/terms/</TD></TR> <TR><TD>Label:</TD><TD>rightsHolder</TD></TR> <TR><TD>Definition:</TD><TD>A person or organization owning or managing rights over the resource.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2004-06-14</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-01-14</TD></TR> <TR><TD>Has Domain:</TD><TD>none</TD></TR> <TR><TD>Has Range:</TD><TD>http://purl.org/dc/terms/Agent</TD></TR> <TR><TD>Version:</TD><TD>http://dublincore.org/usage/terms/history/#rightsHolder-002</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Owner/Organisation/Name/Representation/Text or DataSets/DataSet/Units/Unit/Owner/Person/FullName or DataSets/DataSet/Metadata/Owners/Owner/Organisation/Name/Representation/Text or DataSets/DataSet/Metadata/Owners/Owner/Person/FullName</TD></TR>
|
||||
<TR><TH colspan="2"><A name="http://dublincore.org/usage/terms/history/#rightsT-001">Term Name: rights</A></TH></TR> <TR><TD>URI:</TD><TD>http://purl.org/dc/terms/rights</TD></TR> <TR><TD>Namespace:</TD><TD>http://purl.org/dc/terms/</TD></TR> <TR><TD>Label:</TD><TD>rights</TD></TR> <TR><TD>Definition:</TD><TD>Information about rights held in and over the resource.</TD></TR> <TR><TD>Comment:</TD><TD>Typically, rights information includes a statement about various property rights associated with the resource, including intellectual property rights.</TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD>http://purl.org/dc/elements/1.1/rights</TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-01-14</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-01-14</TD></TR> <TR><TD>Has Domain:</TD><TD>none</TD></TR> <TR><TD>Has Range:</TD><TD>http://purl.org/dc/terms/RightsStatement</TD></TR> <TR><TD>Version:</TD><TD>http://dublincore.org/usage/terms/history/#rightsT-001</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/IPRStatements</TD></TR>
|
||||
<TR><TH colspan="2"><A name="HumanObservation-2008-11-19">Term Name: HumanObservation</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwctype/HumanObservation</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwctype/</TD></TR> <TR><TD>Label:</TD><TD>HumanObservation</TD></TR> <TR><TD>Definition:</TD><TD>A resource describing an observation made by one or more people without accompanying physical evidence.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/HumanObservation">http://code.google.com/p/darwincore/wiki/HumanObservation</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/2000/01/rdf-schema#Class</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Member Of:</TD><TD>http://rs.tdwg.org/dwc/terms/DwCType</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>HumanObservation-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>RecordBasisEnum/HumanObservation</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Identification-2008-11-19">Term Name: Identification</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Identification</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>Identification</TD></TR> <TR><TD>Definition:</TD><TD>Container class for information about the taxonomic determination of the sample.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/Identification">http://code.google.com/p/darwincore/wiki/Identification</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/2000/01/rdf-schema#Class</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>none</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Identification-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Identifications/Identification</TD></TR>
|
||||
<TR><TH colspan="2"><A name="IdentificationID-2008-11-19">Term Name: IdentificationID</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/IdentificationID</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>IdentificationID</TD></TR> <TR><TD>Definition:</TD><TD>An identifier for the Identification. May be a global unique identifier or an identifier specific to the data set.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/IdentificationID">http://code.google.com/p/darwincore/wiki/IdentificationID</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD>http://purl.org/dc/terms/identifier</TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Identification</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>IdentificationID-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>not in ABCD</TD></TR>
|
||||
<TR><TH colspan="2"><A name="IdentificationModifier-2003-06-17">Term Name: IdentificationModifier</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/IdentificationModifier</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>IdentificationModifier</TD></TR> <TR><TD>Definition:</TD><TD>Additional information documenting the taxonomic determination of the cataloged item (e.g., "cf.", "aff.", "subspecies in question", etc.).</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>IdentificationModifier-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>IdentificationQualifier-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/IdentificationQualifier</TD></TR>
|
||||
<TR><TH colspan="2"><A name="IdentificationQualifier-2007-04-17">Term Name: IdentificationQualifier</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwcore/IdentificationQualifier</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwcore/</TD></TR> <TR><TD>Label:</TD><TD>IdentificationQualifier</TD></TR> <TR><TD>Definition:</TD><TD>A brief phrase or a standard term ("cf.", "aff.") to qualify the identification of the organism when doubts have arisen as to its taxonomic identity (determination). Examples: 1) For the determination "Quercus aff. agrifolia var. oxyadenia", IdentificationQualifier would be "aff. agrifolia var. oxyadenia" with accompanying values "Quercus" in Genus, "agrifolia" in SpecificEpithet, "oxyadenia" in InfraspecificEpithet, and "var." in InfraspecificRank. 2) For the determination "Quercus agrifolia cf. var. oxyadenia", IdentificationQualifier would be "cf. var. oxyadenia " with accompanying values "Quercus" in Genus, "agrifolia" in SpecificEpithet, "oxyadenia" in InfraspecificEpithet, and "var." in InfraspecificRank.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>IdentificationQualifier-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#IdentificationQualifier-2007-04-17">IdentificationQualifier</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>IdentificationQualifier-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/IdentificationQualifier</TD></TR>
|
||||
<TR><TH colspan="2"><A name="IdentificationQualifier-2008-11-19">Term Name: IdentificationQualifier</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/IdentificationQualifier</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>IdentificationQualifier</TD></TR> <TR><TD>Definition:</TD><TD>A brief phrase or a standard term ("cf.", "aff.") to express the identifier's doubts about the taxonomic identification of the sample.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: 1) For the determination "Quercus aff. agrifolia var. oxyadenia", IdentificationQualifier would be "aff. agrifolia var. oxyadenia" with accompanying values "Quercus" in Genus, "agrifolia" in SpecificEpithet, "oxyadenia" in InfraspecificEpithet, and "var." in InfraspecificRank. 2) For the determination "Quercus agrifolia cf. var. oxyadenia", IdentificationQualifier would be "cf. var. oxyadenia " with accompanying values "Quercus" in Genus, "agrifolia" in SpecificEpithet, "oxyadenia" in InfraspecificEpithet, and "var." in InfraspecificRank. See <a href="http://code.google.com/p/darwincore/wiki/IdentificationQualifier">http://code.google.com/p/darwincore/wiki/IdentificationQualifier</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Identification</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>IdentificationQualifier-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#IdentificationQualifier-2008-11-19">IdentificationQualifier</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/IdentificationQualifier</TD></TR>
|
||||
<TR><TH colspan="2"><A name="IdentificationReferences-2008-11-19">Term Name: IdentificationReferences</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/IdentificationReferences</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>IdentificationReferences</TD></TR> <TR><TD>Definition:</TD><TD>A list (concatenated and separated) of identifiers (publication, global unique identifier, URL) of references used in the identification of the sample.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Aves del Noroeste Patagonico. Christie et al. 2004.". See <a href="http://code.google.com/p/darwincore/wiki/IdentificationReferences">http://code.google.com/p/darwincore/wiki/IdentificationReferences</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Identification</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>IdentificationReferences-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Identifications/Identification/References</TD></TR>
|
||||
<TR><TH colspan="2"><A name="IdentificationRemarks-2008-11-19">Term Name: IdentificationRemarks</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/IdentificationRemarks</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>IdentificationRemarks</TD></TR> <TR><TD>Definition:</TD><TD>Comments or notes about the identification of the sample.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Distinguished between Anthus correndera and Anthus hellmayri based on the comparative lengths of the uñas.". See <a href="http://code.google.com/p/darwincore/wiki/IdentificationRemarks">http://code.google.com/p/darwincore/wiki/IdentificationRemarks</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Identification</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>IdentificationRemarks-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Identifications/Identification/Notes</TD></TR>
|
||||
<TR><TH colspan="2"><A name="IdentifiedBy-2003-06-13">Term Name: IdentifiedBy</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/IdentifiedBy</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>IdentifiedBy</TD></TR> <TR><TD>Definition:</TD><TD>The name(s) of the person(s) who applied the currently accepted Scientific Name to the Cataloged Item.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-13</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-13</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>IdentifiedBy-2003-06-13</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>IdentifiedBy-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Identifications/Identification/Identifiers/IdentifiersText</TD></TR>
|
||||
<TR><TH colspan="2"><A name="IdentifiedBy-2003-06-17">Term Name: IdentifiedBy</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/IdentifiedBy</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>IdentifiedBy</TD></TR> <TR><TD>Definition:</TD><TD>The name(s) of the person(s) who applied the currently accepted ScientificName to the cataloged item.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>IdentifiedBy-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#IdentifiedBy-2003-06-17">IdentifiedBy</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>IdentifiedBy-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Identifications/Identification/Identifiers/IdentifiersText</TD></TR>
|
||||
<TR><TH colspan="2"><A name="IdentifiedBy-2007-04-17">Term Name: IdentifiedBy</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/curatorial/IdentifiedBy</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/curatorial/</TD></TR> <TR><TD>Label:</TD><TD>IdentifiedBy</TD></TR> <TR><TD>Definition:</TD><TD>The name(s) of the person(s) who applied the ScientificName to the object or observation. Example: James L. Patton.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>IdentifiedBy-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#IdentifiedBy-2007-04-17">IdentifiedBy</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>IdentifiedBy-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Identifications/Identification/Identifiers/IdentifiersText</TD></TR>
|
||||
<TR><TH colspan="2"><A name="IdentifiedBy-2009-01-21">Term Name: IdentifiedBy</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/IdentifiedBy</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>IdentifiedBy</TD></TR> <TR><TD>Definition:</TD><TD>The name(s) of the person(s) who applied the ScientificName to the sample.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "James L. Patton". See <a href="http://code.google.com/p/darwincore/wiki/IdentifiedBy">http://code.google.com/p/darwincore/wiki/IdentifiedBy</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD>http://rs.tdwg.org/dwc/terms/AccordingTo</TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2009-01-21</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Identification</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>IdentifiedBy-2009-01-21</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#IdentifiedBy-2009-01-21">IdentifiedBy</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Identifications/Identification/Identifiers/IdentifiersText</TD></TR>
|
||||
<TR><TH colspan="2"><A name="ImageURL-2007-04-17">Term Name: ImageURL</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwcore/ImageURL</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwcore/</TD></TR> <TR><TD>Label:</TD><TD>ImageURL</TD></TR> <TR><TD>Definition:</TD><TD>A Universal Resource Locator reference to digital images associated with the specimen or observation.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>ImageURL-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>AssociatedMedia-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/MultimediaObjects</TD></TR>
|
||||
<TR><TH colspan="2"><A name="IndividualCount-2003-06-13">Term Name: IndividualCount</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/IndividualCount</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>IndividualCount</TD></TR> <TR><TD>Definition:</TD><TD>The number of individuals present in the lot or container. Not an estimate of abundance or density at the collecting locality.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-13</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-13</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>IndividualCount-2003-06-13</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>IndividualCount-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/LowerValue</TD></TR>
|
||||
<TR><TH colspan="2"><A name="IndividualCount-2003-06-17">Term Name: IndividualCount</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/IndividualCount</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>IndividualCount</TD></TR> <TR><TD>Definition:</TD><TD>The number of individuals present in the lot or container referred to by the catalog number. Not an estimate of abundance or density at the collecting locality.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>IndividualCount-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#IndividualCount-2003-06-17">IndividualCount</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>IndividualCount-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/LowerValue</TD></TR>
|
||||
<TR><TH colspan="2"><A name="IndividualCount-2007-04-17">Term Name: IndividualCount</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/curatorial/IndividualCount</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/curatorial/</TD></TR> <TR><TD>Label:</TD><TD>IndividualCount</TD></TR> <TR><TD>Definition:</TD><TD>The number of individuals present in the lot or container. Not to be used for observations.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>IndividualCount-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#IndividualCount-2007-04-17">IndividualCount</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>IndividualCount-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/LowerValue</TD></TR>
|
||||
<TR><TH colspan="2"><A name="IndividualCount-2008-11-19">Term Name: IndividualCount</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/IndividualCount</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>IndividualCount</TD></TR> <TR><TD>Definition:</TD><TD>The number of individuals present in the sample or observed in the sampling event.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "1". See <a href="http://code.google.com/p/darwincore/wiki/IndividualCount">http://code.google.com/p/darwincore/wiki/IndividualCount</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>IndividualCount-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#IndividualCount-2008-11-19">IndividualCount</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/LowerValue</TD></TR>
|
||||
<TR><TH colspan="2"><A name="IndividualID-2008-11-19">Term Name: IndividualID</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/IndividualID</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>IndividualID</TD></TR> <TR><TD>Definition:</TD><TD>An identifier for an individual or named group of individual organisms represented in the sample. Meant to accommodate resampling of the same individual or group for monitoring purposes. May be a global unique identifier or an identifier specific to a data set.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "U.amer. 44", "Smedley", "Orca J 23". See <a href="http://code.google.com/p/darwincore/wiki/IndividualID">http://code.google.com/p/darwincore/wiki/IndividualID</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD>http://purl.org/dc/terms/identifier</TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>IndividualID-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Identifications/Identification/Result/TaxonIdentified/ScientificName/NameAtomised/Zoological/NamedIndividual or DataSets/DataSet/Units/Unit/ObservationUnit/ObservationUnitIdentifiers/ObservationUnitIdentifier or DataSets/DataSet/Units/Unit/SpecimenUnit/Accessions/AccessionNumber</TD></TR>
|
||||
<TR><TH colspan="2"><A name="InformationWithheld-2007-04-17">Term Name: InformationWithheld</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwcore/InformationWithheld</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwcore/</TD></TR> <TR><TD>Label:</TD><TD>InformationWithheld</TD></TR> <TR><TD>Definition:</TD><TD>Brief descriptions of additional information that may exist, but that has not been made public. Information about obtaining the withheld information should be sought from the administrative contact identified in the provider resource metadata (curator, collection manager). Examples: "specific locality information given only to nearest county", "ask about tissue samples", "georeferences given only to nearest degree".</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>InformationWithheld-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>InformationWithheld-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/InformationWithheld</TD></TR>
|
||||
<TR><TH colspan="2"><A name="InformationWithheld-2008-11-19">Term Name: InformationWithheld</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/InformationWithheld</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>InformationWithheld</TD></TR> <TR><TD>Definition:</TD><TD>Additional information that exists, but that has not been made public in the given record.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "specific locality information given only to nearest county", "ask about tissue samples", "georeferences given only to nearest degree". See <a href="http://code.google.com/p/darwincore/wiki/InformationWithheld">http://code.google.com/p/darwincore/wiki/InformationWithheld</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>InformationWithheld-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#InformationWithheld-2008-11-19">InformationWithheld</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/InformationWithheld</TD></TR>
|
||||
<TR><TH colspan="2"><A name="InfraspecificEpithet-2007-04-17">Term Name: InfraspecificEpithet</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwcore/InfraspecificEpithet</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwcore/</TD></TR> <TR><TD>Label:</TD><TD>InfraspecificEpithet</TD></TR> <TR><TD>Definition:</TD><TD>The infraspecific epithet of the scientific name applied to the organism.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>InfraspecificEpithet-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#InfraspecificEpithet-2007-04-17">InfraspecificEpithet</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>InfraspecificEpithet-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/SubspeciesEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/SecondEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/SubspeciesEpithet}</TD></TR>
|
||||
<TR><TH colspan="2"><A name="InfraspecificEpithet-2008-11-19">Term Name: InfraspecificEpithet</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/InfraspecificEpithet</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>InfraspecificEpithet</TD></TR> <TR><TD>Definition:</TD><TD>The name of the second or subspecies epithet of the ScientificName.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "oxyadenia". See <a href="http://code.google.com/p/darwincore/wiki/InfraspecificEpithet">http://code.google.com/p/darwincore/wiki/InfraspecificEpithet</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>InfraspecificEpithet-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#InfraspecificEpithet-2008-11-19">InfraspecificEpithet</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/SubspeciesEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/SecondEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/SubspeciesEpithet}</TD></TR>
|
||||
<TR><TH colspan="2"><A name="InfraspecificRank-2007-04-17">Term Name: InfraspecificRank</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwcore/InfraspecificRank</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwcore/</TD></TR> <TR><TD>Label:</TD><TD>InfraspecificRank</TD></TR> <TR><TD>Definition:</TD><TD>The infraspecific rank (subspecies, variety, forma) of the InfraspecificEpithet. Examples: "subsp.", "var.", "forma".</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>InfraspecificRank-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>TaxonRank-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/Rank</TD></TR>
|
||||
<TR><TH colspan="2"><A name="InstitutionCode-2003-06-13">Term Name: InstitutionCode</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/InstitutionCode</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>InstitutionCode</TD></TR> <TR><TD>Definition:</TD><TD>A "standard" code identifier that identifies the institution to which the collection belongs. No global registry exists for assigning institutional codes. Use the code that is "standard" in your discipline.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-13</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-13</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>InstitutionCode-2003-06-13</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>InstitutionCode-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/SourceInstitutionID</TD></TR>
|
||||
<TR><TH colspan="2"><A name="InstitutionCode-2003-06-17">Term Name: InstitutionCode</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/InstitutionCode</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>InstitutionCode</TD></TR> <TR><TD>Definition:</TD><TD>A code that identifies the institution to which the cataloged item belongs. No global registry exists for institutional codes; use the code that is "standard" in your discipline. This attribute must contain no spaces.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>InstitutionCode-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#InstitutionCode-2003-06-17">InstitutionCode</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>InstitutionCode-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/SourceInstitutionID</TD></TR>
|
||||
<TR><TH colspan="2"><A name="InstitutionCode-2007-04-17">Term Name: InstitutionCode</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwcore/InstitutionCode</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwcore/</TD></TR> <TR><TD>Label:</TD><TD>InstitutionCode</TD></TR> <TR><TD>Definition:</TD><TD>The code (or acronym) identifying the institution administering the collection in which the organism record is cataloged. No global registry exists for institutional codes; use the code that is "standard" at your institution or in your discipline.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>InstitutionCode-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#InstitutionCode-2007-04-17">InstitutionCode</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>InstitutionCode-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/SourceInstitutionID</TD></TR>
|
||||
<TR><TH colspan="2"><A name="InstitutionCode-2008-11-19">Term Name: InstitutionCode</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/InstitutionCode</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>InstitutionCode</TD></TR> <TR><TD>Definition:</TD><TD>The code (or acronym) in use by the institution administering the collection or data set in which the sample is recorded.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "MVZ", "FMNH". See <a href="http://code.google.com/p/darwincore/wiki/InstitutionCode">http://code.google.com/p/darwincore/wiki/InstitutionCode</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>InstitutionCode-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#InstitutionCode-2008-11-19">InstitutionCode</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/SourceInstitutionID</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Island-2003-06-17">Term Name: Island</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/Island</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>Island</TD></TR> <TR><TD>Definition:</TD><TD>The full, unabbreviated name of the island from which the cataloged item was collected.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Island-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>Island-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Island</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Island-2007-04-17">Term Name: Island</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwcore/Island</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwcore/</TD></TR> <TR><TD>Label:</TD><TD>Island</TD></TR> <TR><TD>Definition:</TD><TD>The full, unabbreviated name of the island on which the organism was collected or observed.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Island-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#Island-2007-04-17">Island</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>Island-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Island</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Island-2008-11-19">Term Name: Island</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Island</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>Island</TD></TR> <TR><TD>Definition:</TD><TD>The full, unabbreviated name of the island in which the sampling event occurred. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Isla Victoria". See <a href="http://code.google.com/p/darwincore/wiki/Island">http://code.google.com/p/darwincore/wiki/Island</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Island-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#Island-2008-11-19">Island</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Island</TD></TR>
|
||||
<TR><TH colspan="2"><A name="IslandGroup-2003-06-17">Term Name: IslandGroup</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/IslandGroup</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>IslandGroup</TD></TR> <TR><TD>Definition:</TD><TD>The full, unabbreviated name of the island group from which the cataloged item was collected.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>IslandGroup-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>IslandGroup-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Island group</TD></TR>
|
||||
<TR><TH colspan="2"><A name="IslandGroup-2007-04-17">Term Name: IslandGroup</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwcore/IslandGroup</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwcore/</TD></TR> <TR><TD>Label:</TD><TD>IslandGroup</TD></TR> <TR><TD>Definition:</TD><TD>The full, unabbreviated name of the island group in which the organism was collected or observed.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>IslandGroup-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#IslandGroup-2007-04-17">IslandGroup</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>IslandGroup-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Island group</TD></TR>
|
||||
<TR><TH colspan="2"><A name="IslandGroup-2008-11-19">Term Name: IslandGroup</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/IslandGroup</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>IslandGroup</TD></TR> <TR><TD>Definition:</TD><TD>The full, unabbreviated name of the island group in which the sampling event occurred. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Alexander Archipelago". See <a href="http://code.google.com/p/darwincore/wiki/IslandGroup">http://code.google.com/p/darwincore/wiki/IslandGroup</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>IslandGroup-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#IslandGroup-2008-11-19">IslandGroup</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Island group</TD></TR>
|
||||
<TR><TH colspan="2"><A name="JulianDay-2003-06-13">Term Name: JulianDay</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/JulianDay</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>JulianDay</TD></TR> <TR><TD>Definition:</TD><TD>The ordinal day of the year; i.e., the number of days since January 1 of the same year. (January 1 is Julian Day 1.)</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-13</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-13</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>JulianDay-2003-06-13</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>StartDayOfYear-2008-11-19, EndDayOfYear-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/DateTime/DayNumberBegin</TD></TR>
|
||||
<TR><TH colspan="2"><A name="JulianDay-2003-06-17">Term Name: JulianDay</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/JulianDay</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>JulianDay</TD></TR> <TR><TD>Definition:</TD><TD>The ordinal day of the year (i.e., the number of days since December 31 of the previous year; January 1 is Julian Day 1) on which the cataloged item was collected. May be derived from the YearCollected, MonthCollected, and DayCollected by the provider.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>JulianDay-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#JulianDay-2003-06-17">JulianDay</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>StartDayOfYear-2008-11-19, EndDayOfYear-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/DateTime/DayNumberBegin</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Kingdom-2003-06-13">Term Name: Kingdom</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/Kingdom</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>Kingdom</TD></TR> <TR><TD>Definition:</TD><TD>The kingdom to which the organism belongs</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-13</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-13</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Kingdom-2003-06-13</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>Kingdom-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = regnum</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Kingdom-2003-06-17">Term Name: Kingdom</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/Kingdom</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>Kingdom</TD></TR> <TR><TD>Definition:</TD><TD>The phylogenetic kingdom to which the cataloged item belongs.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Kingdom-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#Kingdom-2003-06-17">Kingdom</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>Kingdom-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = regnum</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Kingdom-2007-04-17">Term Name: Kingdom</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwcore/Kingdom</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwcore/</TD></TR> <TR><TD>Label:</TD><TD>Kingdom</TD></TR> <TR><TD>Definition:</TD><TD>The name of the kingdom in which the organism is classified.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Kingdom-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#Kingdom-2007-04-17">Kingdom</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>Kingdom-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = regnum</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Kingdom-2008-11-19">Term Name: Kingdom</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Kingdom</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>Kingdom</TD></TR> <TR><TD>Definition:</TD><TD>The name of the kingdom in which the ScientificName is classified.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Animalia". See <a href="http://code.google.com/p/darwincore/wiki/Kingdom">http://code.google.com/p/darwincore/wiki/Kingdom</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Kingdom-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#Kingdom-2008-11-19">Kingdom</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = regnum</TD></TR>
|
||||
<TR><TH colspan="2"><A name="LatestDateCollected-2007-04-17">Term Name: LatestDateCollected</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwcore/LatestDateCollected</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwcore/</TD></TR> <TR><TD>Label:</TD><TD>LatestDateCollected</TD></TR> <TR><TD>Definition:</TD><TD>The latest date-time (Common Era calendar) in a date-time period during which an organism or group of organisms was collected or observed. If the event is recorded as occurring at a single date-time, populate both EarliestDateCollected and LatestDateCollected with the same value.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>LatestDateCollected-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#LatestDateCollected-2007-04-17">LatestDateCollected</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>LatestDateCollected-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/ISODateTimeEnd</TD></TR>
|
||||
<TR><TH colspan="2"><A name="LatestDateCollected-2008-11-19">Term Name: LatestDateCollected</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/LatestDateCollected</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>LatestDateCollected</TD></TR> <TR><TD>Definition:</TD><TD>The latest date-time in a period during which a sampling event occurred. If the event is recorded as occurring at a single date-time, populate both EarliestDateCollected and LatestDateCollected with the same value.</TD></TR> <TR><TD>Comment:</TD><TD>Date may be used to express temporal information at any level of granularity. Recommended best practice is to use an encoding scheme, such as the W3CDTF profile of ISO 8601 [W3CDTF]. See <a href="http://code.google.com/p/darwincore/wiki/LatestDateCollected">http://code.google.com/p/darwincore/wiki/LatestDateCollected</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD>http://purl.org/dc/terms/date</TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEvent</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>LatestDateCollected-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#LatestDateCollected-2008-11-19">LatestDateCollected</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/ISODateTimeEnd</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Latitude-2003-06-13">Term Name: Latitude</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/Latitude</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>Latitude</TD></TR> <TR><TD>Definition:</TD><TD>The latitude of the location from which the specimen was collected. This value should be expressed in decimal degrees with a datum such as WGS-84</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-13</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-13</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Latitude-2003-06-13</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>DecimalLatitude-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/LatitudeDecimal</TD></TR>
|
||||
<TR><TH colspan="2"><A name="LatLongComments-2003-06-17">Term Name: LatLongComments</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/LatLongComments</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>LatLongComments</TD></TR> <TR><TD>Definition:</TD><TD>Comments about the LatLong determination.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>LatLongComments-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>GeoreferenceRemarks-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceRemarks</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Lifestage-2005-07-10">Term Name: Lifestage</A></TH></TR> <TR><TD>URI:</TD><TD>http://www.iobis.org/obis/Lifestage</TD></TR> <TR><TD>Namespace:</TD><TD>http://www.iobis.org/obis/</TD></TR> <TR><TD>Label:</TD><TD>Lifestage</TD></TR> <TR><TD>Definition:</TD><TD>Indicates the life stage present. Will require developing a controlled vocabulary. Can include multiple stages for a lot with multiple individuals.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2005-07-10</TD></TR> <TR><TD>Date Modified:</TD><TD>2005-07-10</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Lifestage-2005-07-10</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#Lifestage-2005-07-10">Lifestage</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>Lifestage-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/MycologicalUnit/MycologicalSexualStage or DataSets/DataSet/Units/Unit/MycologicalUnit/MycologicalLiveStages/MycologicalLiveStage (Note DwC spec uses ”MycologicalLifeStage” or DataSets/DataSet/Units/Unit/ZoologicalUnit/PhasesOrStages/PhaseOrStage</TD></TR>
|
||||
<TR><TH colspan="2"><A name="LifeStage-2007-04-17">Term Name: LifeStage</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwcore/LifeStage</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwcore/</TD></TR> <TR><TD>Label:</TD><TD>LifeStage</TD></TR> <TR><TD>Definition:</TD><TD>The age class or life stage of the biological individual represented by the catalogued object or observation. Examples: "adult", "mature", "juvenile", "eft", "nymph", "seedling", "seed", "egg"</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>LifeStage-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#LifeStage-2007-04-17">LifeStage</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>LifeStage-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/MycologicalUnit/MycologicalSexualStage or DataSets/DataSet/Units/Unit/MycologicalUnit/MycologicalLiveStages/MycologicalLiveStage (Note DwC spec uses ”MycologicalLifeStage” or DataSets/DataSet/Units/Unit/ZoologicalUnit/PhasesOrStages/PhaseOrStage</TD></TR>
|
||||
<TR><TH colspan="2"><A name="LifeStage-2008-11-19">Term Name: LifeStage</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/LifeStage</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>LifeStage</TD></TR> <TR><TD>Definition:</TD><TD>The age class or life stage of the biological individual represented by the sample. Recommended best practice is to use a controlled vocabulary.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "egg", "eft", "juvenile", "adult". See <a href="http://code.google.com/p/darwincore/wiki/LifeStage">http://code.google.com/p/darwincore/wiki/LifeStage</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>LifeStage-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#LifeStage-2008-11-19">LifeStage</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/MycologicalUnit/MycologicalSexualStage or DataSets/DataSet/Units/Unit/MycologicalUnit/MycologicalLiveStages/MycologicalLiveStage (Note DwC spec uses ”MycologicalLifeStage” or DataSets/DataSet/Units/Unit/ZoologicalUnit/PhasesOrStages/PhaseOrStage</TD></TR>
|
||||
<TR><TH colspan="2"><A name="LivingSpecimen-2008-11-19">Term Name: LivingSpecimen</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwctype/LivingSpecimen</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwctype/</TD></TR> <TR><TD>Label:</TD><TD>LivingSpecimen</TD></TR> <TR><TD>Definition:</TD><TD>A resource describing a living specimen.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/LivingSpecimen">http://code.google.com/p/darwincore/wiki/LivingSpecimen</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/2000/01/rdf-schema#Class</TD></TR> <TR><TD>Refines:</TD><TD>http://purl.org/dc/dcmitype/PhysicalObject</TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Member Of:</TD><TD>http://rs.tdwg.org/dwc/terms/DwCType</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>LivingSpecimen-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>RecordBasisEnum/LivingSpecimen</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Locality-2003-06-13">Term Name: Locality</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/Locality</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>Locality</TD></TR> <TR><TD>Definition:</TD><TD>The locality description (place name plus optionally a displacement from the place name) from which the specimen was collected. Where a displacement from a location is provided, it should be in un-projected units of measurement</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-13</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-13</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Locality-2003-06-13</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>Locality-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/AreaDetail</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Locality-2003-06-17">Term Name: Locality</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/Locality</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>Locality</TD></TR> <TR><TD>Definition:</TD><TD>The description of the locality from which the cataloged item was collected, sans geographic information provided in other geographic fields.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Locality-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#Locality-2003-06-17">Locality</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>Locality-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/AreaDetail</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Locality-2007-04-17">Term Name: Locality</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwcore/Locality</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwcore/</TD></TR> <TR><TD>Label:</TD><TD>Locality</TD></TR> <TR><TD>Definition:</TD><TD>The specific natural language description of the place where the organism was collected or observed. This element need not contain less specific geographic information provided in other geographic elements (HigherGeography, Continent, Country, StateProvince, County, WaterBody, Island, IslandGroup). Though coordinate information can be contained in this concept, these data will be usable analytically only when shared through the concepts of the Geospatial Extension.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Locality-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#Locality-2007-04-17">Locality</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>Locality-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/AreaDetail</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Locality-2008-11-19">Term Name: Locality</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Locality</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>Locality</TD></TR> <TR><TD>Definition:</TD><TD>The specific place where the sampling event occurred. More general geographic information can be provided in other geographic terms (HigherGeography, Continent, Country, StateProvince, County, WaterBody, Island, IslandGroup). This term may contain a description modified from the the original to correct perceived errors or standardize the description.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Bariloche, 25 km NNE via Ruta Nacional 40 (=Ruta 237)". See <a href="http://code.google.com/p/darwincore/wiki/Locality">http://code.google.com/p/darwincore/wiki/Locality</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Locality-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#Locality-2008-11-19">Locality</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Location-2009-01-23">Term Name: Location</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwctype/Location</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwctype/</TD></TR> <TR><TD>Label:</TD><TD>Location</TD></TR> <TR><TD>Definition:</TD><TD>A resource describing a location.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/Location">http://code.google.com/p/darwincore/wiki/Location</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/2000/01/rdf-schema#Class</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2009-01-23</TD></TR> <TR><TD>Date Modified:</TD><TD>2009-01-23</TD></TR> <TR><TD>Member Of:</TD><TD>http://rs.tdwg.org/dwc/terms/DwCType</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Location-2009-01-23</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>not in ABCD</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Longitude-2003-06-13">Term Name: Longitude</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/Longitude</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>Longitude</TD></TR> <TR><TD>Definition:</TD><TD>The longitude of the location from which the specimen was collected. This value should be expressed in decimal degrees with a datum such as WGS-84</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-13</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-13</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Longitude-2003-06-13</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>DecimalLongitude-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/LongitudeDecimal</TD></TR>
|
||||
<TR><TH colspan="2"><A name="MachineObservation-2008-11-19">Term Name: MachineObservation</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwctype/MachineObservation</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwctype/</TD></TR> <TR><TD>Label:</TD><TD>MachineObservation</TD></TR> <TR><TD>Definition:</TD><TD>A resource describing an observation made by a machine without accompanying physical evidence.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/MachineObservation">http://code.google.com/p/darwincore/wiki/MachineObservation</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/2000/01/rdf-schema#Class</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Member Of:</TD><TD>http://rs.tdwg.org/dwc/terms/DwCType</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>MachineObservation-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>RecordBasisEnum/MachineObservation</TD></TR>
|
||||
<TR><TH colspan="2"><A name="MaximumDepth-2003-06-13">Term Name: MaximumDepth</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/MaximumDepth</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>MaximumDepth</TD></TR> <TR><TD>Definition:</TD><TD>The maximum distance in meters below the surface of the water at which the collection was made; all material collected was at most this deep. Positive below the surface, negative above (e.g. collecting above sea level in tidal areas).</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-13</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-13</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>MaximumDepth-2003-06-13</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>MaximumDepthInMeters-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/UpperValue</TD></TR>
|
||||
<TR><TH colspan="2"><A name="MaximumDepthInMeters-2003-06-17">Term Name: MaximumDepthInMeters</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/MaximumDepthInMeters</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>MaximumDepthInMeters</TD></TR> <TR><TD>Definition:</TD><TD>The maximum distance in meters below the surface of the water at which the collection was made; all material collected was at most this deep. Positive below the surface, negative above (e.g., collecting above sea level in tidal areas).</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>MaximumDepthInMeters-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#MaximumDepthInMeters-2003-06-17">MaximumDepthInMeters</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>MaximumDepthInMeters-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/UpperValue</TD></TR>
|
||||
<TR><TH colspan="2"><A name="MaximumDepthInMeters-2007-04-17">Term Name: MaximumDepthInMeters</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwcore/MaximumDepthInMeters</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwcore/</TD></TR> <TR><TD>Label:</TD><TD>MaximumDepthInMeters</TD></TR> <TR><TD>Definition:</TD><TD>The maximum or actual depth at which the collection or observation was made. Use positive values for locations below the surface. Examples: 10 (for a depth of up to 10m). 100 (for a depth between 50m and 100m).</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>MaximumDepthInMeters-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#MaximumDepthInMeters-2007-04-17">MaximumDepthInMeters</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>MaximumDepthInMeters-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/UpperValue</TD></TR>
|
||||
<TR><TH colspan="2"><A name="MaximumDepthInMeters-2008-11-19">Term Name: MaximumDepthInMeters</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/MaximumDepthInMeters</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>MaximumDepthInMeters</TD></TR> <TR><TD>Definition:</TD><TD>The greater depth in meters of a range of depth (below the local surface) at with the sampling event occurred.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "200". See <a href="http://code.google.com/p/darwincore/wiki/MaximumDepthInMeters">http://code.google.com/p/darwincore/wiki/MaximumDepthInMeters</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>MaximumDepthInMeters-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#MaximumDepthInMeters-2008-11-19">MaximumDepthInMeters</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/UpperValue</TD></TR>
|
||||
<TR><TH colspan="2"><A name="MaximumElevation-2003-06-13">Term Name: MaximumElevation</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/MaximumElevation</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>MaximumElevation</TD></TR> <TR><TD>Definition:</TD><TD>The maximum distance in meters above (positive) or below sea level of the collecting locality.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-13</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-13</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>MaximumElevation-2003-06-13</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>MaximumElevationInMeters-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/UpperValue</TD></TR>
|
||||
<TR><TH colspan="2"><A name="MaximumElevationInMeters-2003-06-17">Term Name: MaximumElevationInMeters</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/MaximumElevationInMeters</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>MaximumElevationInMeters</TD></TR> <TR><TD>Definition:</TD><TD>The maximum distance in meters above (positive) or below sea level of the collecting locality.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>MaximumElevationInMeters-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#MaximumElevationInMeters-2003-06-17">MaximumElevationInMeters</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>MaximumElevationInMeters-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/UpperValue</TD></TR>
|
||||
<TR><TH colspan="2"><A name="MaximumElevationInMeters-2007-04-17">Term Name: MaximumElevationInMeters</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwcore/MaximumElevationInMeters</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwcore/</TD></TR> <TR><TD>Label:</TD><TD>MaximumElevationInMeters</TD></TR> <TR><TD>Definition:</TD><TD>The maximum or actual elevation at which the collection or observation was made. Use negative values for locations below sea level. Examples: Examples: 125 (for an elevation of 100 +- 25 meters). 200 (for an elevation between 100m and 200m).</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>MaximumElevationInMeters-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#MaximumElevationInMeters-2007-04-17">MaximumElevationInMeters</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>MaximumElevationInMeters-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/UpperValue</TD></TR>
|
||||
<TR><TH colspan="2"><A name="MaximumElevationInMeters-2008-11-19">Term Name: MaximumElevationInMeters</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/MaximumElevationInMeters</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>MaximumElevationInMeters</TD></TR> <TR><TD>Definition:</TD><TD>The upper limit of the range of elevation (altitude, usually above sea level), in meters, at which the sampling event occurred.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "200". See <a href="http://code.google.com/p/darwincore/wiki/MaximumElevationInMeters">http://code.google.com/p/darwincore/wiki/MaximumElevationInMeters</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>MaximumElevationInMeters-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#MaximumElevationInMeters-2008-11-19">MaximumElevationInMeters</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/UpperValue</TD></TR>
|
||||
<TR><TH colspan="2"><A name="MinimumDepth-2003-06-13">Term Name: MinimumDepth</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/MinimumDepth</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>MinimumDepth</TD></TR> <TR><TD>Definition:</TD><TD>The minimum distance in meters below the surface of the water at which the collection was made; all material collected was at least this deep. Positive below the surface, negative above (e.g. collecting above sea level in tidal areas).</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-13</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-13</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>MinimumDepth-2003-06-13</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>MinimumDepthInMeters-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/LowerValue</TD></TR>
|
||||
<TR><TH colspan="2"><A name="MinimumDepthInMeters-2003-06-17">Term Name: MinimumDepthInMeters</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/MinimumDepthInMeters</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>MinimumDepthInMeters</TD></TR> <TR><TD>Definition:</TD><TD>The minimum distance in meters below the surface of the water at which the collection was made; all material collected was at least this deep. Positive below the surface, negative above (e.g., collecting above sea level in tidal areas).</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>MinimumDepthInMeters-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#MinimumDepthInMeters-2003-06-17">MinimumDepthInMeters</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>MinimumDepthInMeters-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/LowerValue</TD></TR>
|
||||
<TR><TH colspan="2"><A name="MinimumDepthInMeters-2007-04-17">Term Name: MinimumDepthInMeters</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwcore/MinimumDepthInMeters</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwcore/</TD></TR> <TR><TD>Label:</TD><TD>MinimumDepthInMeters</TD></TR> <TR><TD>Definition:</TD><TD>The minimum or actual depth at which the collection or observation was made. Use positive values for locations below the surface. Examples: 0 (for a depth of up to 10m). 50 (for a depth between 50m and 100m).</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>MinimumDepthInMeters-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#MinimumDepthInMeters-2007-04-17">MinimumDepthInMeters</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>MinimumDepthInMeters-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/LowerValue</TD></TR>
|
||||
<TR><TH colspan="2"><A name="MinimumDepthInMeters-2008-11-19">Term Name: MinimumDepthInMeters</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/MinimumDepthInMeters</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>MinimumDepthInMeters</TD></TR> <TR><TD>Definition:</TD><TD>The lesser depth in meters of a range of depth (below the local surface) at with the sampling event occurred.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "100". See <a href="http://code.google.com/p/darwincore/wiki/MinimumDepthInMeters">http://code.google.com/p/darwincore/wiki/MinimumDepthInMeters</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>MinimumDepthInMeters-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#MinimumDepthInMeters-2008-11-19">MinimumDepthInMeters</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/LowerValue</TD></TR>
|
||||
<TR><TH colspan="2"><A name="MinimumElevation-2003-06-13">Term Name: MinimumElevation</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/MinimumElevation</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>MinimumElevation</TD></TR> <TR><TD>Definition:</TD><TD>The minimum distance in meters above (positive) or below sea level of the collecting locality.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-13</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-13</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>MinimumElevation-2003-06-13</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>MinimumElevationInMeters-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/LowerValue</TD></TR>
|
||||
<TR><TH colspan="2"><A name="MinimumElevationInMeters-2003-06-17">Term Name: MinimumElevationInMeters</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/MinimumElevationInMeters</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>MinimumElevationInMeters</TD></TR> <TR><TD>Definition:</TD><TD>The minimum distance in meters above (positive) or below sea level of the collecting locality.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>MinimumElevationInMeters-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#MinimumElevationInMeters-2003-06-17">MinimumElevationInMeters</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>MinimumElevationInMeters-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/LowerValue</TD></TR>
|
||||
<TR><TH colspan="2"><A name="MinimumElevationInMeters-2007-04-17">Term Name: MinimumElevationInMeters</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwcore/MinimumElevationInMeters</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwcore/</TD></TR> <TR><TD>Label:</TD><TD>MinimumElevationInMeters</TD></TR> <TR><TD>Definition:</TD><TD>The minimum or actual elevation at which the collection or observation was made. Use negative values for locations below sea level. Examples: 75 (for an elevation of 100 +- 25 meters). 100 (for an elevation between 100m and 200m).</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>MinimumElevationInMeters-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#MinimumElevationInMeters-2007-04-17">MinimumElevationInMeters</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>MinimumElevationInMeters-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/LowerValue</TD></TR>
|
||||
<TR><TH colspan="2"><A name="MinimumElevationInMeters-2008-11-19">Term Name: MinimumElevationInMeters</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/MinimumElevationInMeters</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>MinimumElevationInMeters</TD></TR> <TR><TD>Definition:</TD><TD>The lower limit of the range of elevation (altitude, usually above sea level), in meters, at which the sampling event occurred.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "100". See <a href="http://code.google.com/p/darwincore/wiki/MinimumElevationInMeters">http://code.google.com/p/darwincore/wiki/MinimumElevationInMeters</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>MinimumElevationInMeters-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#MinimumElevationInMeters-2008-11-19">MinimumElevationInMeters</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/LowerValue</TD></TR>
|
||||
<TR><TH colspan="2"><A name="MonthCollected-2003-06-13">Term Name: MonthCollected</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/MonthCollected</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>MonthCollected</TD></TR> <TR><TD>Definition:</TD><TD>The month of year the specimen was collected from the field. Possible values range from 01...12 inclusive</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-13</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-13</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>MonthCollected-2003-06-13</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>MonthOfYear-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin</TD></TR>
|
||||
<TR><TH colspan="2"><A name="MonthCollected-2003-06-17">Term Name: MonthCollected</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/MonthCollected</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>MonthCollected</TD></TR> <TR><TD>Definition:</TD><TD>The two digit month of year in the Common Era calendar during which the cataloged item was collected from the field.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>MonthCollected-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#MonthCollected-2003-06-17">MonthCollected</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>MonthOfYear-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin</TD></TR>
|
||||
<TR><TH colspan="2"><A name="MonthIdentified-2003-06-13">Term Name: MonthIdentified</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/MonthIdentified</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>MonthIdentified</TD></TR> <TR><TD>Definition:</TD><TD>The month portion of the date when the Collection Item was identified; as two digits [01..12].</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-13</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-13</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>MonthIdentified-2003-06-13</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>DateIdentified-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>accessible from DataSets/DataSet/Units/Unit/Identifications/Identification/Date/DateText</TD></TR>
|
||||
<TR><TH colspan="2"><A name="MonthIdentified-2003-06-17">Term Name: MonthIdentified</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/MonthIdentified</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>MonthIdentified</TD></TR> <TR><TD>Definition:</TD><TD>The two digit month in the Common Era calendar during which the cataloged item was identified.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>MonthIdentified-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#MonthIdentified-2003-06-17">MonthIdentified</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>MonthIdentified-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>accessible from DataSets/DataSet/Units/Unit/Identifications/Identification/Date/DateText</TD></TR>
|
||||
<TR><TH colspan="2"><A name="MonthOfYear-2008-11-19">Term Name: MonthOfYear</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/MonthOfYear</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>MonthOfYear</TD></TR> <TR><TD>Definition:</TD><TD>The ordinal month in which the sampling event occurred.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "10" (=October). See <a href="http://code.google.com/p/darwincore/wiki/MonthOfYear">http://code.google.com/p/darwincore/wiki/MonthOfYear</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEvent</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>MonthOfYear-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#MonthOfYear-2008-11-19">MonthOfYear</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin</TD></TR>
|
||||
<TR><TH colspan="2"><A name="NamePublishedIn-2008-11-19">Term Name: NamePublishedIn</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/NamePublishedIn</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>NamePublishedIn</TD></TR> <TR><TD>Definition:</TD><TD>A full literature reference to the first (original) valid publication of the ScientificName.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/NamePublishedIn">http://code.google.com/p/darwincore/wiki/NamePublishedIn</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>NamePublishedIn-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeDesignation/NomenclaturalReference/TitleCitation</TD></TR>
|
||||
<TR><TH colspan="2"><A name="NomenclaturalChecklist-2009-01-23">Term Name: NomenclaturalChecklist</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwctype/NomenclaturalChecklist</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwctype/</TD></TR> <TR><TD>Label:</TD><TD>NomenclaturalChecklist</TD></TR> <TR><TD>Definition:</TD><TD>A resource describing a nomenclatural checklist.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/NomenclaturalChecklist">http://code.google.com/p/darwincore/wiki/NomenclaturalChecklist</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/2000/01/rdf-schema#Class</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2009-01-23</TD></TR> <TR><TD>Date Modified:</TD><TD>2009-01-23</TD></TR> <TR><TD>Member Of:</TD><TD>http://rs.tdwg.org/dwc/terms/DwCType</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>NomenclaturalChecklist-2009-01-23</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>not in ABCD</TD></TR>
|
||||
<TR><TH colspan="2"><A name="NomenclaturalCode-2007-04-17">Term Name: NomenclaturalCode</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwcore/NomenclaturalCode</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwcore/</TD></TR> <TR><TD>Label:</TD><TD>NomenclaturalCode</TD></TR> <TR><TD>Definition:</TD><TD>The nomenclatural code under which the ScientificName is constructed. Examples: "ICBN", "ICZN", "BC", "ICNCP", "BioCode"</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>NomenclaturalCode-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>NomenclaturalCode-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/Code</TD></TR>
|
||||
<TR><TH colspan="2"><A name="NomenclaturalCode-2008-11-19">Term Name: NomenclaturalCode</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/NomenclaturalCode</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>NomenclaturalCode</TD></TR> <TR><TD>Definition:</TD><TD>The nomenclatural code under which the ScientificName is constructed. Recommended best practice is to use a controlled vocabulary.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "ICBN", "ICZN", "BC", "ICNCP", "BioCode". See <a href="http://code.google.com/p/darwincore/wiki/NomenclaturalCode">http://code.google.com/p/darwincore/wiki/NomenclaturalCode</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>NomenclaturalCode-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#NomenclaturalCode-2008-11-19">NomenclaturalCode</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/Code</TD></TR>
|
||||
<TR><TH colspan="2"><A name="NomenclaturalStatus-2009-01-18">Term Name: NomenclaturalStatus</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/NomenclaturalStatus</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>NomenclaturalStatus</TD></TR> <TR><TD>Definition:</TD><TD>The status related to the original publication of the name and it's 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.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "nom. ambig.", "nom. illeg.", "nom. subnud.". See <a href="http://code.google.com/p/darwincore/wiki/NomenclaturalStatus">http://code.google.com/p/darwincore/wiki/NomenclaturalStatus</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2009-01-18</TD></TR> <TR><TD>Date Modified:</TD><TD>2009-01-18</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>NomenclaturalStatus-2009-01-18</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>(DataSets/DataSet/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeDesignation/NomenclaturalReference/TitleCitation)
|
||||
pro parte</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Notes-2003-06-13">Term Name: Notes</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/Notes</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>Notes</TD></TR> <TR><TD>Definition:</TD><TD>Free text notes attached to the specimen record</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-13</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-13</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Notes-2003-06-13</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>Remarks-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Notes</TD></TR>
|
||||
<TR><TH colspan="2"><A name="ObservedIndividualCount-2005-07-10">Term Name: ObservedIndividualCount</A></TH></TR> <TR><TD>URI:</TD><TD>http://www.iobis.org/obis/ObservedIndividualCount</TD></TR> <TR><TD>Namespace:</TD><TD>http://www.iobis.org/obis/</TD></TR> <TR><TD>Label:</TD><TD>ObservedIndividualCount</TD></TR> <TR><TD>Definition:</TD><TD>The number of individuals (abundance) found in a collection/record event.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2005-07-10</TD></TR> <TR><TD>Date Modified:</TD><TD>2005-07-10</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>ObservedIndividualCount-2005-07-10</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>IndividualCount-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/LowerValue + constant</TD></TR>
|
||||
<TR><TH colspan="2"><A name="ObservedWeight-2005-07-10">Term Name: ObservedWeight</A></TH></TR> <TR><TD>URI:</TD><TD>http://www.iobis.org/obis/ObservedWeight</TD></TR> <TR><TD>Namespace:</TD><TD>http://www.iobis.org/obis/</TD></TR> <TR><TD>Label:</TD><TD>ObservedWeight</TD></TR> <TR><TD>Definition:</TD><TD>The total biomass found in a collection/record event. Expressed as kg.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2005-07-10</TD></TR> <TR><TD>Date Modified:</TD><TD>2005-07-10</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>ObservedWeight-2005-07-10</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>SampleAttributes-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/LowerValue + constant</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Order-2003-06-13">Term Name: Order</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/Order</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>Order</TD></TR> <TR><TD>Definition:</TD><TD>The order name of the organism</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-13</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-13</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Order-2003-06-13</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>Order-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = ordo</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Order-2003-06-17">Term Name: Order</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/Order</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>Order</TD></TR> <TR><TD>Definition:</TD><TD>The phylogenetic order to which the cataloged item belongs.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Order-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#Order-2003-06-17">Order</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>Order-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = ordo</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Order-2007-04-17">Term Name: Order</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwcore/Order</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwcore/</TD></TR> <TR><TD>Label:</TD><TD>Order</TD></TR> <TR><TD>Definition:</TD><TD>The name of the order in which the organism is classified.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Order-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#Order-2007-04-17">Order</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>Order-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = ordo</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Order-2008-11-19">Term Name: Order</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Order</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>Order</TD></TR> <TR><TD>Definition:</TD><TD>The name of the order in which the ScientificName is classified.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Rodentia". See <a href="http://code.google.com/p/darwincore/wiki/Order">http://code.google.com/p/darwincore/wiki/Order</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Order-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#Order-2008-11-19">Order</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = ordo</TD></TR>
|
||||
<TR><TH colspan="2"><A name="OriginalCoordinateSystem-2003-06-17">Term Name: OriginalCoordinateSystem</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/OriginalCoordinateSystem</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>OriginalCoordinateSystem</TD></TR> <TR><TD>Definition:</TD><TD>The name of the system in which the original geographic coordinates were recorded (e.g., "decimal degrees", "degrees minutes seconds", "UTM", etc.).</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>OriginalCoordinateSystem-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>VerbatimCoordinateSystem-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>(partly) DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesGrid/GridCellSystem</TD></TR>
|
||||
<TR><TH colspan="2"><A name="OtherCatalogNumbers-2003-06-17">Term Name: OtherCatalogNumbers</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/OtherCatalogNumbers</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>OtherCatalogNumbers</TD></TR> <TR><TD>Definition:</TD><TD>A list of previous or alternative fully qualified catalog numbers of the cataloged item whether in the current collection or in any other.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>OtherCatalogNumbers-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#OtherCatalogNumbers-2003-06-17">OtherCatalogNumbers</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>OtherCatalogNumbers-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/SpecimenUnit/History/PreviousUnitsText</TD></TR>
|
||||
<TR><TH colspan="2"><A name="OtherCatalogNumbers-2007-04-17">Term Name: OtherCatalogNumbers</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/curatorial/OtherCatalogNumbers</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/curatorial/</TD></TR> <TR><TD>Label:</TD><TD>OtherCatalogNumbers</TD></TR> <TR><TD>Definition:</TD><TD>A list of previous or alternative fully qualified catalog numbers for the same object or observation, whether in the current collection or in any other.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>OtherCatalogNumbers-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#OtherCatalogNumbers-2007-04-17">OtherCatalogNumbers</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>OtherCatalogNumbers-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/SpecimenUnit/History/PreviousUnitsText</TD></TR>
|
||||
<TR><TH colspan="2"><A name="OtherCatalogNumbers-2008-11-19">Term Name: OtherCatalogNumbers</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/OtherCatalogNumbers</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>OtherCatalogNumbers</TD></TR> <TR><TD>Definition:</TD><TD>A list (concatenated and separated) of previous or alternate fully qualified catalog numbers for the same sample, whether in the current or any other data set or collection.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "FMNH:Mammal:1234". See <a href="http://code.google.com/p/darwincore/wiki/OtherCatalogNumbers">http://code.google.com/p/darwincore/wiki/OtherCatalogNumbers</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>OtherCatalogNumbers-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#OtherCatalogNumbers-2008-11-19">OtherCatalogNumbers</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/SpecimenUnit/History/PreviousUnitsText</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Phylum-2003-06-13">Term Name: Phylum</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/Phylum</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>Phylum</TD></TR> <TR><TD>Definition:</TD><TD>The phylum (or division) to which the organism belongs</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-13</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-13</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Phylum-2003-06-13</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>Phylum-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = phylum</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Phylum-2003-06-17">Term Name: Phylum</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/Phylum</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>Phylum</TD></TR> <TR><TD>Definition:</TD><TD>The phylogenetic phylum (or division) to which the cataloged item belongs.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Phylum-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#Phylum-2003-06-17">Phylum</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>Phylum-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = phylum</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Phylum-2007-04-17">Term Name: Phylum</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwcore/Phylum</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwcore/</TD></TR> <TR><TD>Label:</TD><TD>Phylum</TD></TR> <TR><TD>Definition:</TD><TD>The name of the phylum (or division) in which the organism is classified.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Phylum-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#Phylum-2007-04-17">Phylum</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>Phylum-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = phylum</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Phylum-2008-11-19">Term Name: Phylum</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Phylum</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>Phylum</TD></TR> <TR><TD>Definition:</TD><TD>The name of the phlyum (or division) in which the ScientificName is classified.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Chordata". See <a href="http://code.google.com/p/darwincore/wiki/Phylum">http://code.google.com/p/darwincore/wiki/Phylum</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Phylum-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#Phylum-2008-11-19">Phylum</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = phylum</TD></TR>
|
||||
<TR><TH colspan="2"><A name="PointRadiusSpatialFit-2007-04-17">Term Name: PointRadiusSpatialFit</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/geospatial/PointRadiusSpatialFit</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/geospatial/</TD></TR> <TR><TD>Label:</TD><TD>PointRadiusSpatialFit</TD></TR> <TR><TD>Definition:</TD><TD>A measure of how well the circle defined by the coordinates and uncertainty match the original spatial representation, as a ratio of the area of the circle to the area of the original spatial representation. 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 georeference does not completely contain the original representation. The PointRadiusSpatialFit is undefined 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).</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>PointRadiusSpatialFit-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>PointRadiusSpatialFit-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/PointRadiusSpatialFit</TD></TR>
|
||||
<TR><TH colspan="2"><A name="PointRadiusSpatialFit-2008-11-19">Term Name: PointRadiusSpatialFit</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/PointRadiusSpatialFit</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>PointRadiusSpatialFit</TD></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 sampling 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>Comment:</TD><TD>Detailed explanations with graphical examples can be found in the "Guide to Best Practices for Georeferencing" (Chapman and Wieczorek, eds. 2006). See <a href="http://code.google.com/p/darwincore/wiki/PointRadiusSpatialFit">http://code.google.com/p/darwincore/wiki/PointRadiusSpatialFit</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>PointRadiusSpatialFit-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#PointRadiusSpatialFit-2008-11-19">PointRadiusSpatialFit</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/PointRadiusSpatialFit</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Preparations-2003-06-17">Term Name: Preparations</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/Preparations</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>Preparations</TD></TR> <TR><TD>Definition:</TD><TD>A concatenated list of preparations and preservation methods (skin, skull, skeleton, whole animal (ETOH), slide, etc.) for the cataloged item.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Preparations-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#Preparations-2003-06-17">Preparations</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>Preparations-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/SpecimenUnit/Preparations/PreparationsText</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Preparations-2007-04-17">Term Name: Preparations</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/curatorial/Preparations</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/curatorial/</TD></TR> <TR><TD>Label:</TD><TD>Preparations</TD></TR> <TR><TD>Definition:</TD><TD>A concatenated list of preparations and preservation methods for the object. Examples: "skin", "skull", "skeleton", "whole animal (ETOH)", "tissue (EDTA)".</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Preparations-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#Preparations-2007-04-17">Preparations</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>Preparations-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/SpecimenUnit/Preparations/PreparationsText</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Preparations-2008-11-19">Term Name: Preparations</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Preparations</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>Preparations</TD></TR> <TR><TD>Definition:</TD><TD>A list (concatenated and separated) of preparations and preservation methods for a sample.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "skin", "skull", "skeleton", "whole animal (ETOH)", "tissue (EDTA)". See <a href="http://code.google.com/p/darwincore/wiki/Preparations">http://code.google.com/p/darwincore/wiki/Preparations</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Preparations-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#Preparations-2008-11-19">Preparations</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/SpecimenUnit/Preparations/PreparationsText</TD></TR>
|
||||
<TR><TH colspan="2"><A name="PreparationType-2003-06-13">Term Name: PreparationType</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/PreparationType</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>PreparationType</TD></TR> <TR><TD>Definition:</TD><TD>The type of preparation (skin. slide, etc). Probably best to add this as a record element rather than access point. Should be a list of preparations for a single collection record.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-13</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-13</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>PreparationType-2003-06-13</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>Preparations-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/SpecimenUnit/Preparations/PreparationsText</TD></TR>
|
||||
<TR><TH colspan="2"><A name="PreservedSpecimen-2008-11-19">Term Name: PreservedSpecimen</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwctype/PreservedSpecimen</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwctype/</TD></TR> <TR><TD>Label:</TD><TD>PreservedSpecimen</TD></TR> <TR><TD>Definition:</TD><TD>A resource describing a preserved specimen.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/PreservedSpecimen">http://code.google.com/p/darwincore/wiki/PreservedSpecimen</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/2000/01/rdf-schema#Class</TD></TR> <TR><TD>Refines:</TD><TD>http://purl.org/dc/dcmitype/PhysicalObject</TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Member Of:</TD><TD>http://rs.tdwg.org/dwc/terms/DwCType</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>PreservedSpecimen-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>RecordBasisEnum/PreservedSpecimen</TD></TR>
|
||||
<TR><TH colspan="2"><A name="PreviousCatalogNumber-2003-06-13">Term Name: PreviousCatalogNumber</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/PreviousCatalogNumber</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>PreviousCatalogNumber</TD></TR> <TR><TD>Definition:</TD><TD>The previous (fully qualified) catalog number of the Cataloged Item if the item earlier identified by another Catalog Number, either in the current catalog or another Institution / catalog. A fully qualified Catalog Number is preceded by Institution Code and Collection Code, with a space separating the each subelement. Referencing a previous Catalog Number does not imply that a record for the referenced item is or is not present in the corresponding catalog, or even that the referenced catalog still exists. This access point is intended to provide a way to retrieve this record by previously used identifier, which may used in the literature. In future versions of this schema this attribute should be set-valued.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-13</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-13</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>PreviousCatalogNumber-2003-06-13</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>OtherCatalogNumbers-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/SpecimenUnit/History/PreviousUnitsText</TD></TR>
|
||||
<TR><TH colspan="2"><A name="PreviousIdentifications-2008-11-19">Term Name: PreviousIdentifications</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/PreviousIdentifications</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>PreviousIdentifications</TD></TR> <TR><TD>Definition:</TD><TD>A list (concatenated and separated) of previous ScientificNames to which the sample was identified.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Anthus correndera". See <a href="http://code.google.com/p/darwincore/wiki/PreviousIdentifications">http://code.google.com/p/darwincore/wiki/PreviousIdentifications</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Identification</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>PreviousIdentifications-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Identifications/Identification with PreferredFlag = false</TD></TR>
|
||||
<TR><TH colspan="2"><A name="RecordURL-2005-07-10">Term Name: RecordURL</A></TH></TR> <TR><TD>URI:</TD><TD>http://www.iobis.org/obis/RecordURL</TD></TR> <TR><TD>Namespace:</TD><TD>http://www.iobis.org/obis/</TD></TR> <TR><TD>Label:</TD><TD>RecordURL</TD></TR> <TR><TD>Definition:</TD><TD>Gives the web address of the page where more information on this particular record (not on the whole dataset) can be found.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2005-07-10</TD></TR> <TR><TD>Date Modified:</TD><TD>2005-07-10</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>RecordURL-2005-07-10</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>SampleDetails-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/RecordURI</TD></TR>
|
||||
<TR><TH colspan="2"><A name="RelatedBasisOfRecord-2008-11-19">Term Name: RelatedBasisOfRecord</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/RelatedBasisOfRecord</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>RelatedBasisOfRecord</TD></TR> <TR><TD>Definition:</TD><TD>The nature of the related resource. Recommended best practice is to use the same controlled vocabulary as for BasisOfRecord.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "PreservedSpecimen". See <a href="http://code.google.com/p/darwincore/wiki/RelatedBasisOfRecord">http://code.google.com/p/darwincore/wiki/RelatedBasisOfRecord</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2009-01-26</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/ResourceRelationship</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>RelatedBasisOfRecord-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>not in ABCD</TD></TR>
|
||||
<TR><TH colspan="2"><A name="RelatedCatalogedItems-2003-06-17">Term Name: RelatedCatalogedItems</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/RelatedCatalogedItems</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>RelatedCatalogedItems</TD></TR> <TR><TD>Definition:</TD><TD>The fully qualified identifier (Institution Code + " " + Collection Code + " " + Catalog Number) of the related Cataloged Item, preceded by the nature of the relationship (e.g., (sibling of) MVZ Mamm 1234).</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>RelatedCatalogedItems-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#RelatedCatalogedItems-2003-06-17">RelatedCatalogedItems</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>AssociatedSamples-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceInstitutionCode + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceName + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitID</TD></TR>
|
||||
<TR><TH colspan="2"><A name="RelatedCatalogedItems-2007-04-17">Term Name: RelatedCatalogedItems</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/curatorial/RelatedCatalogedItems</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/curatorial/</TD></TR> <TR><TD>Label:</TD><TD>RelatedCatalogedItems</TD></TR> <TR><TD>Definition:</TD><TD>One or more GlobalUniqueIdentifiers (cf. http://wiki.tdwg.org/twiki/bin/view/DarwinCore/GlobalUniqueIdentifier ) of related objects or observations, optionally preceded by the nature of the relationship. Examples: "(sibling of) URN:catalog:MVZ:Mammal:1234", "(endoparasite of) URN:catalog:FMNH:Bird:41321", "(sheet 2 of 2) URN:WTU:VascularPlants:353087".</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>RelatedCatalogedItems-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#RelatedCatalogedItems-2007-04-17">RelatedCatalogedItems</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>AssociatedSamples-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceInstitutionCode + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceName + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitID</TD></TR>
|
||||
<TR><TH colspan="2"><A name="RelatedCatalogItem-2003-06-13">Term Name: RelatedCatalogItem</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/RelatedCatalogItem</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>RelatedCatalogItem</TD></TR> <TR><TD>Definition:</TD><TD>The fully qualified identifier of a related Catalog Item (a reference to another specimen); Institution Code, Collection Code, and Catalog Number of the related Cataloged Item, where a space separates the three subelements.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-13</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-13</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>RelatedCatalogItem-2003-06-13</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>AssociatedSamples-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceInstitutionCode + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceName + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitID</TD></TR>
|
||||
<TR><TH colspan="2"><A name="RelatedInformation-2007-04-17">Term Name: RelatedInformation</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwcore/RelatedInformation</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwcore/</TD></TR> <TR><TD>Label:</TD><TD>RelatedInformation</TD></TR> <TR><TD>Definition:</TD><TD>Free text references to information not delivered via the conceptual schema, including URLs to specimen details, publications, bibliographic references, etc.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>RelatedInformation-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>SampleDetails-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/RecordURI</TD></TR>
|
||||
<TR><TH colspan="2"><A name="RelatedResourceID-2008-11-19">Term Name: RelatedResourceID</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/RelatedResourceID</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>RelatedResourceID</TD></TR> <TR><TD>Definition:</TD><TD>A global unique identifier to a related resource.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/RelatedResourceID">http://code.google.com/p/darwincore/wiki/RelatedResourceID</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD>http://purl.org/dc/terms/references</TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2009-01-26</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/ResourceRelationship</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>RelatedResourceID-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceInstitutionCode + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceName + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitID</TD></TR>
|
||||
<TR><TH colspan="2"><A name="RelatedResourceType-2009-01-23">Term Name: RelatedResourceType</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/RelatedResourceType</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>RelatedResourceType</TD></TR> <TR><TD>Definition:</TD><TD>The type of related resource. Recommended best practice is to use a controlled vocabulary.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Sample", "Taxon", "Publication". See <a href="http://code.google.com/p/darwincore/wiki/RelatedResourceType">http://code.google.com/p/darwincore/wiki/RelatedResourceType</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2009-01-26</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/ResourceRelationship</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>RelatedResourceType-2009-01-23</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>not in ABCD</TD></TR>
|
||||
<TR><TH colspan="2"><A name="RelationshipOfResource-2008-11-19">Term Name: RelationshipOfResource</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/RelationshipOfResource</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>RelationshipOfResource</TD></TR> <TR><TD>Definition:</TD><TD>The relationship of the related resource to this resource. Recommended best practice is to use a controlled vocabulary.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "mother". See <a href="http://code.google.com/p/darwincore/wiki/RelationshipOfResource">http://code.google.com/p/darwincore/wiki/RelationshipOfResource</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2009-01-26</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/ResourceRelationship</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>RelationshipOfResource-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociationType</TD></TR>
|
||||
<TR><TH colspan="2"><A name="RelationshipRemarks-2008-11-19">Term Name: RelationshipRemarks</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/RelationshipRemarks</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>RelationshipRemarks</TD></TR> <TR><TD>Definition:</TD><TD>Comments or notes about the relationship of the related resource to this resource.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "mother and offspring collected from the same nest". See <a href="http://code.google.com/p/darwincore/wiki/RelationshipRemarks">http://code.google.com/p/darwincore/wiki/RelationshipRemarks</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2009-01-26</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/ResourceRelationship</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>RelationshipRemarks-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Associations/UnitAssociation/Comments</TD></TR>
|
||||
<TR><TH colspan="2"><A name="RelationshipType-2003-06-13">Term Name: RelationshipType</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/RelationshipType</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>RelationshipType</TD></TR> <TR><TD>Definition:</TD><TD>A named or coded valued that identifies the kind relationship between this Collection Item and the referenced Collection Item. Named values include: "parasite of", "epiphyte on", "progeny of", etc. In future versions of this schema this attribute should be set-valued.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-13</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-13</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>RelationshipType-2003-06-13</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>RelationshipType-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociationType</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Remarks-2003-06-17">Term Name: Remarks</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/Remarks</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>Remarks</TD></TR> <TR><TD>Definition:</TD><TD>Free text comments accompanying the cataloged item record.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Remarks-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#Remarks-2003-06-17">Remarks</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>Remarks-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Notes</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Remarks-2007-04-17">Term Name: Remarks</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwcore/Remarks</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwcore/</TD></TR> <TR><TD>Label:</TD><TD>Remarks</TD></TR> <TR><TD>Definition:</TD><TD>Free text comments accompanying the object or observation record.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Remarks-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#Remarks-2007-04-17">Remarks</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>Remarks-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Notes</TD></TR>
|
||||
<TR><TH colspan="2"><A name="ReproductiveCondition-2008-11-19">Term Name: ReproductiveCondition</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/ReproductiveCondition</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>ReproductiveCondition</TD></TR> <TR><TD>Definition:</TD><TD>The reproductive condition of the biological individual represented by the sample. Recommended best practice is to use a controlled vocabulary.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/ReproductiveCondition">http://code.google.com/p/darwincore/wiki/ReproductiveCondition</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>ReproductiveCondition-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>not in ABCD</TD></TR>
|
||||
<TR><TH colspan="2"><A name="ResourceRelationship-2009-01-21">Term Name: ResourceRelationship</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/ResourceRelationship</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>ResourceRelationship</TD></TR> <TR><TD>Definition:</TD><TD>Container class for information about a relationship between resources. May be any type of resource - Sample, SamplingEvent, Taxon, and other resources that are not Darwin Core classes.</TD></TR> <TR><TD>Comment:</TD><TD>To use ResourceRelationship properly in an application schema you must provide a container to avoid ambiguity about the resource being related, especially if you intend to allow ResourceRelationship to refer to more than one class. See <a href="http://code.google.com/p/darwincore/wiki/ResourceRelationship">http://code.google.com/p/darwincore/wiki/ResourceRelationship</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/2000/01/rdf-schema#Class</TD></TR> <TR><TD>Refines:</TD><TD>http://purl.org/dc/terms/relation</TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2009-01-26</TD></TR> <TR><TD>Has Domain:</TD><TD>none</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>ResourceRelationship-2009-01-21</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Associations</TD></TR>
|
||||
<TR><TH colspan="2"><A name="ResourceRelationshipID-2008-11-19">Term Name: ResourceRelationshipID</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/ResourceRelationshipID</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>ResourceRelationshipID</TD></TR> <TR><TD>Definition:</TD><TD>A global unique identifier for an instance of relationship (not of a relationship type) between one resource and another.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/ResourceRelationshipID">http://code.google.com/p/darwincore/wiki/ResourceRelationshipID</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD>http://purl.org/dc/terms/identifier</TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2009-01-26</TD></TR> <TR><TD>Date Modified:</TD><TD>2009-01-26</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/ResourceRelationship</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>ResourceRelationshipID-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>not in ABCD</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Sample-2008-11-19">Term Name: Sample</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>Sample</TD></TR> <TR><TD>Definition:</TD><TD>Container class for information about the results of a sampling event (specimen, observation, etc.)</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/Sample">http://code.google.com/p/darwincore/wiki/Sample</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/2000/01/rdf-schema#Class</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>none</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Sample-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit</TD></TR>
|
||||
<TR><TH colspan="2"><A name="SampleAttibuteRemarks-2008-11-19">Term Name: SampleAttibuteRemarks</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/SampleAttibuteRemarks</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>SampleAttibuteRemarks</TD></TR> <TR><TD>Definition:</TD><TD>Comments or notes accompanying the measurement or characteristic of the sample.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "tip of tail missing". See <a href="http://code.google.com/p/darwincore/wiki/SampleAttibuteRemarks">http://code.google.com/p/darwincore/wiki/SampleAttibuteRemarks</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SampleAttribute</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>SampleAttibuteRemarks-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>not in ABCD</TD></TR>
|
||||
<TR><TH colspan="2"><A name="SampleAttribute-2008-11-19">Term Name: SampleAttribute</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/SampleAttribute</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>SampleAttribute</TD></TR> <TR><TD>Definition:</TD><TD>Container class for information about attributes related to a given sample.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/SampleAttribute">http://code.google.com/p/darwincore/wiki/SampleAttribute</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/2000/01/rdf-schema#Class</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>SampleAttribute-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>Datasets/Dataset/Units/Unit/MeasurementsOrFacts</TD></TR>
|
||||
<TR><TH colspan="2"><A name="SampleAttributeAccuracy-2009-01-18">Term Name: SampleAttributeAccuracy</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/SampleAttributeAccuracy</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>SampleAttributeAccuracy</TD></TR> <TR><TD>Definition:</TD><TD>The description of the error associated with the SampleAttributeValue.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "0.01", "normal distribution with variation of 2 m". See <a href="http://code.google.com/p/darwincore/wiki/SampleAttributeAccuracy">http://code.google.com/p/darwincore/wiki/SampleAttributeAccuracy</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD>http://rs.tdwg.org/dwc/terms/Error</TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2009-01-18</TD></TR> <TR><TD>Date Modified:</TD><TD>2009-01-18</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SampleAttribute</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>SampleAttributeAccuracy-2009-01-18</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Accuracy</TD></TR>
|
||||
<TR><TH colspan="2"><A name="SampleAttributeDeterminedBy-2009-01-23">Term Name: SampleAttributeDeterminedBy</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/SampleAttributeDeterminedBy</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>SampleAttributeDeterminedBy</TD></TR> <TR><TD>Definition:</TD><TD>The agent responsible for having determined the value of the measurement or characteristic of the sample.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Javier de la Torre". See <a href="http://code.google.com/p/darwincore/wiki/SampleAttributeDeterminedBy">http://code.google.com/p/darwincore/wiki/SampleAttributeDeterminedBy</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2009-01-23</TD></TR> <TR><TD>Date Modified:</TD><TD>2009-01-23</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SampleAttribute</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>SampleAttributeDeterminedBy-2009-01-23</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/MeasuredBy</TD></TR>
|
||||
<TR><TH colspan="2"><A name="SampleAttributeDeterminedDate-2009-01-23">Term Name: SampleAttributeDeterminedDate</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/SampleAttributeDeterminedDate</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>SampleAttributeDeterminedDate</TD></TR> <TR><TD>Definition:</TD><TD>The date on which the the measurement or characteristic of the sample was made.</TD></TR> <TR><TD>Comment:</TD><TD>Date may be used to express temporal information at any level of granularity. Recommended best practice is to use an encoding scheme, such as the W3CDTF profile of ISO 8601 [W3CDTF]. See <a href="http://code.google.com/p/darwincore/wiki/SampleAttributeDeterminedDate">http://code.google.com/p/darwincore/wiki/SampleAttributeDeterminedDate</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD>http://purl.org/dc/terms/date</TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2009-01-23</TD></TR> <TR><TD>Date Modified:</TD><TD>2009-01-23</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SampleAttribute</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>SampleAttributeDeterminedDate-2009-01-23</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/MeasurementDateTime</TD></TR>
|
||||
<TR><TH colspan="2"><A name="SampleAttributes-2008-11-19">Term Name: SampleAttributes</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/SampleAttributes</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>SampleAttributes</TD></TR> <TR><TD>Definition:</TD><TD>A list (concatenated and separated) of additional measurements or characteristics of the sample.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "Tragus length: 14mm; Weight: 120g", "Height: 1-1.5 meters tall; flowers yellow; uncommon". See <a href="http://code.google.com/p/darwincore/wiki/SampleAttributes">http://code.google.com/p/darwincore/wiki/SampleAttributes</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>SampleAttributes-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#SampleAttributes-2008-11-19">SampleAttributes</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/MeasurementsOrFacts</TD></TR>
|
||||
<TR><TH colspan="2"><A name="SampleAttributeType-2008-11-19">Term Name: SampleAttributeType</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/SampleAttributeType</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>SampleAttributeType</TD></TR> <TR><TD>Definition:</TD><TD>The nature of the measurement or characteristic of the sample. Recommended best practice is to use a controlled vocabulary.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "tail length". See <a href="http://code.google.com/p/darwincore/wiki/SampleAttributeType">http://code.google.com/p/darwincore/wiki/SampleAttributeType</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SampleAttribute</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>SampleAttributeType-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Parameter</TD></TR>
|
||||
<TR><TH colspan="2"><A name="SampleAttributeUnit-2008-11-19">Term Name: SampleAttributeUnit</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/SampleAttributeUnit</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>SampleAttributeUnit</TD></TR> <TR><TD>Definition:</TD><TD>The units for the value of the measurement or characteristic of the sample. Recommended best practice is to use International System of Units (SI) units.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "mm". See <a href="http://code.google.com/p/darwincore/wiki/SampleAttributeUnit">http://code.google.com/p/darwincore/wiki/SampleAttributeUnit</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SampleAttribute</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>SampleAttributeUnit-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UnitOfMeasurement</TD></TR>
|
||||
<TR><TH colspan="2"><A name="SampleAttributeValue-2008-11-19">Term Name: SampleAttributeValue</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/SampleAttributeValue</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>SampleAttributeValue</TD></TR> <TR><TD>Definition:</TD><TD>The value of the measurement or characteristic of the sample.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "45". See <a href="http://code.google.com/p/darwincore/wiki/SampleAttributeValue">http://code.google.com/p/darwincore/wiki/SampleAttributeValue</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SampleAttribute</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>SampleAttributeValue-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UpperValue</TD></TR>
|
||||
<TR><TH colspan="2"><A name="SampleDetails-2008-11-19">Term Name: SampleDetails</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/SampleDetails</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>SampleDetails</TD></TR> <TR><TD>Definition:</TD><TD>A reference (publication, URL) to the most detailed information available about the sample.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/SampleDetails">http://code.google.com/p/darwincore/wiki/SampleDetails</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>SampleDetails-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#SampleDetails-2008-11-19">SampleDetails</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/RecordURI</TD></TR>
|
||||
<TR><TH colspan="2"><A name="SampleID-2008-11-19">Term Name: SampleID</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/SampleID</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>SampleID</TD></TR> <TR><TD>Definition:</TD><TD>A Uniform Resource Name (URN) as a unique identifier for the sample (as opposed to a particular digital record of the sample). 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 SampleID globally unique and persistent.</TD></TR> <TR><TD>Comment:</TD><TD>For a specimen, for example, use the form: "urn:catalog:[InstitutionCode]:[CollectionCode]:[CatalogNumber]. Examples: 1) "urn:lsid:nhm.ku.edu:Herps:32", 2) "urn:catalog:FMNH:Mammal:145732". See <a href="http://code.google.com/p/darwincore/wiki/SampleID">http://code.google.com/p/darwincore/wiki/SampleID</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD>http://purl.org/dc/terms/identifier</TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>SampleID-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#SampleID-2008-11-19">SampleID</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/UnitGUID</TD></TR>
|
||||
<TR><TH colspan="2"><A name="SampleRemarks-2009-01-18">Term Name: SampleRemarks</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/SampleRemarks</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>SampleRemarks</TD></TR> <TR><TD>Definition:</TD><TD>Comments or notes about the sample or record.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "found dead on road". See <a href="http://code.google.com/p/darwincore/wiki/SampleRemarks">http://code.google.com/p/darwincore/wiki/SampleRemarks</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2009-01-18</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>SampleRemarks-2009-01-18</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#SampleRemarks-2009-01-18">SampleRemarks</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Notes</TD></TR>
|
||||
<TR><TH colspan="2"><A name="SampleSize-2005-07-10">Term Name: SampleSize</A></TH></TR> <TR><TD>URI:</TD><TD>http://www.iobis.org/obis/SampleSize</TD></TR> <TR><TD>Namespace:</TD><TD>http://www.iobis.org/obis/</TD></TR> <TR><TD>Label:</TD><TD>SampleSize</TD></TR> <TR><TD>Definition:</TD><TD>The size of the sample from which the collection/observation was drawn. It can be a volume (e.g. for a phytoplankton sample), a linear distance (e.g. for a visual transect or net haul), a surface area (e.g. for a benthic core), etc. This field must also include the units, e.g. 200 mfor a transect, or 0.25 m^2 for a benthic grab (use ^ to denote a superscript). Note that When multiple collections/observations are reported from the same physical sample, a code identifying the sample can be placed in the Field_Number field to allow all collections/observations from a single sample to be connected.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2005-07-10</TD></TR> <TR><TD>Date Modified:</TD><TD>2005-07-10</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>SampleSize-2005-07-10</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>SamplingEventAttributes-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/LowerValue + constant</TD></TR>
|
||||
<TR><TH colspan="2"><A name="SamplingAttributeID-2008-11-19">Term Name: SamplingAttributeID</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingAttributeID</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>SamplingAttributeID</TD></TR> <TR><TD>Definition:</TD><TD>An identifier for the sampling attribute. May be a global unique identifier or an identifier specific to the data set.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/SamplingAttributeID">http://code.google.com/p/darwincore/wiki/SamplingAttributeID</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD>http://purl.org/dc/terms/identifier</TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SampleAttribute</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>SamplingAttributeID-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>not in ABCD</TD></TR>
|
||||
<TR><TH colspan="2"><A name="SamplingEvent-2008-11-19">Term Name: SamplingEvent</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEvent</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>SamplingEvent</TD></TR> <TR><TD>Definition:</TD><TD>Container class for information about the conditions and methods of acquisition of samples.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/SamplingEvent">http://code.google.com/p/darwincore/wiki/SamplingEvent</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/2000/01/rdf-schema#Class</TD></TR> <TR><TD>Refines:</TD><TD>http://purl.org/dc/dcmitype/Event</TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>none</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>SamplingEvent-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering</TD></TR>
|
||||
<TR><TH colspan="2"><A name="SamplingEventAttributes-2008-11-19">Term Name: SamplingEventAttributes</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEventAttributes</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>SamplingEventAttributes</TD></TR> <TR><TD>Definition:</TD><TD>A list (concatenated and separated) of additional measurements or characteristics of the sampling event.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Relative humidity: 28%; Temperature: 22 Celcius; Sample size: 10 kg". See <a href="http://code.google.com/p/darwincore/wiki/SamplingEventAttributes">http://code.google.com/p/darwincore/wiki/SamplingEventAttributes</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEvent</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>SamplingEventAttributes-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts</TD></TR>
|
||||
<TR><TH colspan="2"><A name="SamplingEventID-2008-11-19">Term Name: SamplingEventID</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEventID</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>SamplingEventID</TD></TR> <TR><TD>Definition:</TD><TD>An identifier for the sampling event. May be a global unique identifier or an identifier specific to the data set.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/SamplingEventID">http://code.google.com/p/darwincore/wiki/SamplingEventID</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD>http://purl.org/dc/terms/identifier</TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEvent</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>SamplingEventID-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/Code</TD></TR>
|
||||
<TR><TH colspan="2"><A name="SamplingEventRemarks-2009-01-18">Term Name: SamplingEventRemarks</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEventRemarks</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>SamplingEventRemarks</TD></TR> <TR><TD>Definition:</TD><TD>Comments or notes about the sampling event.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "found dead on road". See <a href="http://code.google.com/p/darwincore/wiki/SamplingEventRemarks">http://code.google.com/p/darwincore/wiki/SamplingEventRemarks</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2009-01-18</TD></TR> <TR><TD>Date Modified:</TD><TD>2009-01-18</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEvent</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>SamplingEventRemarks-2009-01-18</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>not in ABCD</TD></TR>
|
||||
<TR><TH colspan="2"><A name="SamplingLocation-2008-11-19">Term Name: SamplingLocation</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>SamplingLocation</TD></TR> <TR><TD>Definition:</TD><TD>Container class for information about the location where a sampling event occurred.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/SamplingLocation">http://code.google.com/p/darwincore/wiki/SamplingLocation</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/2000/01/rdf-schema#Class</TD></TR> <TR><TD>Refines:</TD><TD>http://purl.org/dc/terms/Location</TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>none</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>SamplingLocation-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/LocalityText</TD></TR>
|
||||
<TR><TH colspan="2"><A name="SamplingLocationID-2008-11-19">Term Name: SamplingLocationID</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocationID</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>SamplingLocationID</TD></TR> <TR><TD>Definition:</TD><TD>An identifier for the sampling location. May be a global unique identifier or an identifier specific to the data set.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "MVZ:LocID:12345". See <a href="http://code.google.com/p/darwincore/wiki/SamplingLocationID">http://code.google.com/p/darwincore/wiki/SamplingLocationID</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD>http://purl.org/dc/terms/identifier</TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>SamplingLocationID-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>not in ABCD</TD></TR>
|
||||
<TR><TH colspan="2"><A name="SamplingLocationRemarks-2009-01-18">Term Name: SamplingLocationRemarks</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocationRemarks</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>SamplingLocationRemarks</TD></TR> <TR><TD>Definition:</TD><TD>Comments or notes about the sampling location.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "under water since 2005". See <a href="http://code.google.com/p/darwincore/wiki/SamplingLocationRemarks">http://code.google.com/p/darwincore/wiki/SamplingLocationRemarks</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2009-01-18</TD></TR> <TR><TD>Date Modified:</TD><TD>2009-01-18</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>SamplingLocationRemarks-2009-01-18</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/AreaDetail</TD></TR>
|
||||
<TR><TH colspan="2"><A name="SamplingProtocol-2008-11-19">Term Name: SamplingProtocol</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingProtocol</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>SamplingProtocol</TD></TR> <TR><TD>Definition:</TD><TD>The name of, reference to, or brief description of the method or protocol used for the sampling event.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "UV light trap", "mist net", "bottom trawl". See <a href="http://code.google.com/p/darwincore/wiki/SamplingProtocol">http://code.google.com/p/darwincore/wiki/SamplingProtocol</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEvent</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>SamplingProtocol-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#SamplingProtocol-2008-11-19">SamplingProtocol</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/Method</TD></TR>
|
||||
<TR><TH colspan="2"><A name="ScientificName-2003-06-13">Term Name: ScientificName</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/ScientificName</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>ScientificName</TD></TR> <TR><TD>Definition:</TD><TD>The full name of lowest level taxon the Cataloged Item can be identified as a member of; includes genus name, specific epithet, and subspecific epithet (zool.) or infraspecific rank abbreviation, and infraspecific epithet (bot.) Use name of suprageneric taxon (e.g., family name) if Cataloged Item cannot be identified to genus, species, or infraspecific taxon.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-13</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-13</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>ScientificName-2003-06-13</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>ScientificName-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/FullScientificNameString</TD></TR>
|
||||
<TR><TH colspan="2"><A name="ScientificName-2003-06-17">Term Name: ScientificName</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/ScientificName</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>ScientificName</TD></TR> <TR><TD>Definition:</TD><TD>The full name of lowest level taxon to which the cataloged item can be identified (e.g., genus name, specific epithet, subspecific epithet, etc.).</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>ScientificName-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#ScientificName-2003-06-17">ScientificName</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>ScientificName-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/FullScientificNameString</TD></TR>
|
||||
<TR><TH colspan="2"><A name="ScientificName-2007-04-17">Term Name: ScientificName</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwcore/ScientificName</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwcore/</TD></TR> <TR><TD>Label:</TD><TD>ScientificName</TD></TR> <TR><TD>Definition:</TD><TD>The full name of the lowest level taxon to which the organism has been identified in the most recent accepted determination, specified as precisely as possible, including name-author, year or authorship, sensu or sec. (according to or following) author, and indication of uncertainty. Conceptually equivalent to a full taxonomic identification as given by the identifier (verbatim). Does not include the identifier name or date of identification. Examples: "Coleoptera" (an Order), "Vespertilionidae" (a Family), "Manis" (a Genus), "Ctenomys sociabilis" (Genus + SpecificEpithet), "Ambystoma tigrinum diaboli" (Genus + SpecificEpithet + SubspecificEpithet), "Quercus agrifolia var. oxyadenia (Torr.) J.T. Howell" (Genus + SpecificEpithet + InfraspecificRank + InfraspecificEpithet + AuthorYearOfScientificName).</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>ScientificName-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#ScientificName-2007-04-17">ScientificName</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>ScientificName-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/FullScientificNameString</TD></TR>
|
||||
<TR><TH colspan="2"><A name="ScientificName-2009-01-21">Term Name: ScientificName</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/ScientificName</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>ScientificName</TD></TR> <TR><TD>Definition:</TD><TD>The taxon name (with date and authorship information if applicable) of the lowest level taxonomic rank that can be applied. Identifier qualifications should be supplied in the IdentificationQualifier term rather than here.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "Coleoptera" (order), "Vespertilionidae" (family), "Manis" (genus), "Ctenomys sociabilis" (binomial), "Ambystoma tigrinum diaboli" (binomial + InfraspecificEpithet), "Quercus agrifolia var. oxyadenia (Torr.) J.T. Howell" (binomial + TaxonRank + InfraspecificEpithet + ScientificNameAuthorship). See <a href="http://code.google.com/p/darwincore/wiki/ScientificName">http://code.google.com/p/darwincore/wiki/ScientificName</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2009-01-21</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>ScientificName-2009-01-21</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#ScientificName-2009-01-21">ScientificName</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/FullScientificNameString</TD></TR>
|
||||
<TR><TH colspan="2"><A name="ScientificNameAuthor-2003-06-13">Term Name: ScientificNameAuthor</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/ScientificNameAuthor</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>ScientificNameAuthor</TD></TR> <TR><TD>Definition:</TD><TD>The author of a scientific name. Author string as applied to the accepted name. Can be more than one author (concatenated string). Should be formatted according to the conventions of the applicable taxonomic discipline.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-13</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-13</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>ScientificNameAuthor-2003-06-13</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>ScientificNameAuthorship-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/ParentheticalAuthorTeamAndYear + DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/AuthorTeamAndYear} or {DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/AuthorTeamParenthesis + DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/AuthorTeam} or {DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/AuthorTeamOriginalAndYear + [= or] DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/AuthorTeamParenthesisAndYear}</TD></TR>
|
||||
<TR><TH colspan="2"><A name="ScientificNameAuthor-2003-06-17">Term Name: ScientificNameAuthor</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/ScientificNameAuthor</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>ScientificNameAuthor</TD></TR> <TR><TD>Definition:</TD><TD>The author of the ScientificName. Can be more than one author in a concatenated string. Should be formatted according to the conventions of the applicable taxonomic discipline.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>ScientificNameAuthor-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#ScientificNameAuthor-2003-06-17">ScientificNameAuthor</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>ScientificNameAuthorship-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/ParentheticalAuthorTeamAndYear + DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/AuthorTeamAndYear} or {DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/AuthorTeamParenthesis + DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/AuthorTeam} or {DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/AuthorTeamOriginalAndYear + [= or] DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/AuthorTeamParenthesisAndYear}</TD></TR>
|
||||
<TR><TH colspan="2"><A name="ScientificNameAuthorship-2008-11-19">Term Name: ScientificNameAuthorship</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/ScientificNameAuthorship</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>ScientificNameAuthorship</TD></TR> <TR><TD>Definition:</TD><TD>The authorship information for the ScientificName formatted according to the conventions of the applicable NomenclaturalCode.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "(Torr.) J.T. Howell". See <a href="http://code.google.com/p/darwincore/wiki/ScientificNameAuthorship">http://code.google.com/p/darwincore/wiki/ScientificNameAuthorship</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>ScientificNameAuthorship-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#ScientificNameAuthorship-2008-11-19">ScientificNameAuthorship</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/ParentheticalAuthorTeamAndYear + DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/AuthorTeamAndYear} or {DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/AuthorTeamParenthesis + DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/AuthorTeam} or {DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/AuthorTeamOriginalAndYear + [= or] DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/AuthorTeamParenthesisAndYear}</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Sex-2003-06-13">Term Name: Sex</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/Sex</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>Sex</TD></TR> <TR><TD>Definition:</TD><TD>The sex of a specimen. The domain should be a controlled set of terms (codes) based on community consensus. Proposed values: M=Male; F=Female; H=Hermaphrodite; I=Indeterminate (examined but could not be determined; U=Unkown (not examined); T=Transitional (between sexes; useful for sequential hermaphrodites)</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-13</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-13</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Sex-2003-06-13</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>Sex-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Sex</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Sex-2003-06-17">Term Name: Sex</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/Sex</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>Sex</TD></TR> <TR><TD>Definition:</TD><TD>The sex of a cataloged item (e.g., male, female, hermaphrodite, gynandromorph, not recorded, indeterminate, transitional - between sexes, for sequential hermaphrodites).</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Sex-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#Sex-2003-06-17">Sex</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>Sex-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Sex</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Sex-2007-04-17">Term Name: Sex</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwcore/Sex</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwcore/</TD></TR> <TR><TD>Label:</TD><TD>Sex</TD></TR> <TR><TD>Definition:</TD><TD>The sex of the biological individual represented by the cataloged object or observation. Examples: "male", "female", "hermaphrodite", "gynandromorph", "monoecious", "dioecious", "not recorded", "indeterminate", "transitional".</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Sex-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#Sex-2007-04-17">Sex</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>Sex-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Sex</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Sex-2008-11-19">Term Name: Sex</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Sex</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>Sex</TD></TR> <TR><TD>Definition:</TD><TD>The sex of the biological individual represented by the sample. Recommended best practice is to use a controlled vocabulary.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "female", "hermaphrodite". See <a href="http://code.google.com/p/darwincore/wiki/Sex">http://code.google.com/p/darwincore/wiki/Sex</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Sex-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#Sex-2008-11-19">Sex</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Sex</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Source-2005-07-10">Term Name: Source</A></TH></TR> <TR><TD>URI:</TD><TD>http://www.iobis.org/obis/Source</TD></TR> <TR><TD>Namespace:</TD><TD>http://www.iobis.org/obis/</TD></TR> <TR><TD>Label:</TD><TD>Source</TD></TR> <TR><TD>Definition:</TD><TD>Indicates who gave the record to the data provider. Can indicate a literature citation, an electronic dataset, etc. Is used to provide credit.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2005-07-10</TD></TR> <TR><TD>Date Modified:</TD><TD>2005-07-10</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Source-2005-07-10</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>SampledBy-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/GatheringAgents/GatheringAgentsText</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Species-2003-06-13">Term Name: Species</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/Species</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>Species</TD></TR> <TR><TD>Definition:</TD><TD>The specific epithet of the organism</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-13</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-13</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Species-2003-06-13</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>SpecificEpithet-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>{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}</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Species-2003-06-17">Term Name: Species</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/Species</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>Species</TD></TR> <TR><TD>Definition:</TD><TD>The phylogenetic specific epithet of the cataloged item.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Species-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#Species-2003-06-17">Species</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>SpecificEpithet-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>{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}</TD></TR>
|
||||
<TR><TH colspan="2"><A name="SpecificEpithet-2007-04-17">Term Name: SpecificEpithet</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwcore/SpecificEpithet</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwcore/</TD></TR> <TR><TD>Label:</TD><TD>SpecificEpithet</TD></TR> <TR><TD>Definition:</TD><TD>The specific epithet of the scientific name applied to the organism.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>SpecificEpithet-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#SpecificEpithet-2007-04-17">SpecificEpithet</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>SpecificEpithet-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>{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}</TD></TR>
|
||||
<TR><TH colspan="2"><A name="SpecificEpithet-2008-11-19">Term Name: SpecificEpithet</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/SpecificEpithet</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>SpecificEpithet</TD></TR> <TR><TD>Definition:</TD><TD>The name of the first or species epithet of the ScientificName.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "agrifolia". See <a href="http://code.google.com/p/darwincore/wiki/SpecificEpithet">http://code.google.com/p/darwincore/wiki/SpecificEpithet</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>SpecificEpithet-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#SpecificEpithet-2008-11-19">SpecificEpithet</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>{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}</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Start_EndCoordinatePrecision-2005-07-10">Term Name: Start_EndCoordinatePrecision</A></TH></TR> <TR><TD>URI:</TD><TD>http://www.iobis.org/obis/Start_EndCoordinatePrecision</TD></TR> <TR><TD>Namespace:</TD><TD>http://www.iobis.org/obis/</TD></TR> <TR><TD>Label:</TD><TD>Start_EndCoordinatePrecision</TD></TR> <TR><TD>Definition:</TD><TD>An estimate of how tightly the locality was specified in the Start/End Latitude and Longitude fields; expressed as a distance, in meters, that corresponds to a radius around the latitude-longitude coordinates. Use NULL where precision is unknown, cannot be estimated, or is not applicable.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2005-07-10</TD></TR> <TR><TD>Date Modified:</TD><TD>2005-07-10</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Start_EndCoordinatePrecision-2005-07-10</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>CoordinateUncertaintyInMeters-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLong/CoordinateErrorDistanceInMeters</TD></TR>
|
||||
<TR><TH colspan="2"><A name="StartDayCollected-2005-07-10">Term Name: StartDayCollected</A></TH></TR> <TR><TD>URI:</TD><TD>http://www.iobis.org/obis/StartDayCollected</TD></TR> <TR><TD>Namespace:</TD><TD>http://www.iobis.org/obis/</TD></TR> <TR><TD>Label:</TD><TD>StartDayCollected</TD></TR> <TR><TD>Definition:</TD><TD>For samples/observations/record events that were taken over time this gives the start day of the collecting event. Possible value ranges from 01..31 inclusive.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2005-07-10</TD></TR> <TR><TD>Date Modified:</TD><TD>2005-07-10</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>StartDayCollected-2005-07-10</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>EarliestDateCollected-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin</TD></TR>
|
||||
<TR><TH colspan="2"><A name="StartDayOfYear-2009-01-21">Term Name: StartDayOfYear</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/StartDayOfYear</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>StartDayOfYear</TD></TR> <TR><TD>Definition:</TD><TD>The earliest ordinal day of the year on which the sampling 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>Comment:</TD><TD>Examples: "1" (=1 Jan), "366" (=31 Dec), "365" (=30 Dec in a leap year, 31 Dec in a non-leap year). See <a href="http://code.google.com/p/darwincore/wiki/StartDayOfYear">http://code.google.com/p/darwincore/wiki/StartDayOfYear</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2009-01-21</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEvent</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>StartDayOfYear-2009-01-21</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#StartDayOfYear-2009-01-21">StartDayOfYear</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/DateTime/DayNumberBegin</TD></TR>
|
||||
<TR><TH colspan="2"><A name="StartJulianDay-2005-07-10">Term Name: StartJulianDay</A></TH></TR> <TR><TD>URI:</TD><TD>http://www.iobis.org/obis/StartJulianDay</TD></TR> <TR><TD>Namespace:</TD><TD>http://www.iobis.org/obis/</TD></TR> <TR><TD>Label:</TD><TD>StartJulianDay</TD></TR> <TR><TD>Definition:</TD><TD>For samples/observations/record events that were taken over time this gives the start ordinal day of the year for the collecting event; i.e., the number of days since January 1 of the same year. (January 1 is Julian Day 1.). Should be an integer from one to 365, i.e. of the form (([0-3][0-9][0-9)|([0-9][0-9)|([1-9])).</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2005-07-10</TD></TR> <TR><TD>Date Modified:</TD><TD>2005-07-10</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>StartJulianDay-2005-07-10</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>StartDayOfYear-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/DateTime/DayNumberBegin</TD></TR>
|
||||
<TR><TH colspan="2"><A name="StartLatitude-2005-07-10">Term Name: StartLatitude</A></TH></TR> <TR><TD>URI:</TD><TD>http://www.iobis.org/obis/StartLatitude</TD></TR> <TR><TD>Namespace:</TD><TD>http://www.iobis.org/obis/</TD></TR> <TR><TD>Label:</TD><TD>StartLatitude</TD></TR> <TR><TD>Definition:</TD><TD>For samples/observations/record events better represented as line features rather than point features (e.g. extended trawls or transects) this indicates the starting latitude location from which the specimen was collected or in which the sample/observation/record event occurred. This value should be expressed in decimal degrees (East & North = +; West & South = -). GPS-derived data must use the WGS 84 geodetic reference system (http://www.wgs84.com/).</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2005-07-10</TD></TR> <TR><TD>Date Modified:</TD><TD>2005-07-10</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>StartLatitude-2005-07-10</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>FootprintWKT-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/CoordinateSets/SiteCoordinates/CoordinatesLatLon/LatitudeDecimal with attribute "begin" set to true</TD></TR>
|
||||
<TR><TH colspan="2"><A name="StartLongitude-2005-07-10">Term Name: StartLongitude</A></TH></TR> <TR><TD>URI:</TD><TD>http://www.iobis.org/obis/StartLongitude</TD></TR> <TR><TD>Namespace:</TD><TD>http://www.iobis.org/obis/</TD></TR> <TR><TD>Label:</TD><TD>StartLongitude</TD></TR> <TR><TD>Definition:</TD><TD>For samples/observations/record events better represented as line features rather than point features (e.g. extended trawls or transects) this indicates the starting longitude location from which the specimen was collected. Express in decimal degrees (East & North = +; West & South = -). GPS-derived data must use the WGS 84 geodetic reference system (http://www.wgs84.com/).</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2005-07-10</TD></TR> <TR><TD>Date Modified:</TD><TD>2005-07-10</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>StartLongitude-2005-07-10</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>FootprintWKT-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/CoordinateSets/SiteCoordinates/CoordinatesLatLon/LongitudeDecimal with attribute "begin" set to true</TD></TR>
|
||||
<TR><TH colspan="2"><A name="StartMonthCollected-2005-07-10">Term Name: StartMonthCollected</A></TH></TR> <TR><TD>URI:</TD><TD>http://www.iobis.org/obis/StartMonthCollected</TD></TR> <TR><TD>Namespace:</TD><TD>http://www.iobis.org/obis/</TD></TR> <TR><TD>Label:</TD><TD>StartMonthCollected</TD></TR> <TR><TD>Definition:</TD><TD>For samples/observations/record events that were taken over time this gives the start month of the collecting event. Possible values range from 01...12 inclusive.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2005-07-10</TD></TR> <TR><TD>Date Modified:</TD><TD>2005-07-10</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>StartMonthCollected-2005-07-10</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>EarliestDateCollected-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin</TD></TR>
|
||||
<TR><TH colspan="2"><A name="StartTimeOfDay-2005-07-10">Term Name: StartTimeOfDay</A></TH></TR> <TR><TD>URI:</TD><TD>http://www.iobis.org/obis/StartTimeOfDay</TD></TR> <TR><TD>Namespace:</TD><TD>http://www.iobis.org/obis/</TD></TR> <TR><TD>Label:</TD><TD>StartTimeOfDay</TD></TR> <TR><TD>Definition:</TD><TD>The time of day when the sampling event began, expressed as decimal hours from midnight local time. Examples: 0 = midnight, 12.0 = mid-day, 13.5 = 13:30</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2005-07-10</TD></TR> <TR><TD>Date Modified:</TD><TD>2005-07-10</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>StartTimeOfDay-2005-07-10</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>StartTimeOfDay-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/DateTime/TimeOfDayBegin</TD></TR>
|
||||
<TR><TH colspan="2"><A name="StartTimeOfDay-2008-11-19">Term Name: StartTimeOfDay</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/StartTimeOfDay</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>StartTimeOfDay</TD></TR> <TR><TD>Definition:</TD><TD>The time of day when the sampling event began, expressed as decimal hours from midnight, local time.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "12.0" (= noon), "13.5" (= 1:30pm). See <a href="http://code.google.com/p/darwincore/wiki/StartTimeOfDay">http://code.google.com/p/darwincore/wiki/StartTimeOfDay</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEvent</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>StartTimeOfDay-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#StartTimeOfDay-2008-11-19">StartTimeOfDay</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin</TD></TR>
|
||||
<TR><TH colspan="2"><A name="StartYearCollected-2005-07-10">Term Name: StartYearCollected</A></TH></TR> <TR><TD>URI:</TD><TD>http://www.iobis.org/obis/StartYearCollected</TD></TR> <TR><TD>Namespace:</TD><TD>http://www.iobis.org/obis/</TD></TR> <TR><TD>Label:</TD><TD>StartYearCollected</TD></TR> <TR><TD>Definition:</TD><TD>For samples/observations/record events that were taken over time this gives the start year of the collecting event. The full year should be expressed (e.g. 1972 must be expressed as "1972" not "72"). Must always be a four digit integer.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2005-07-10</TD></TR> <TR><TD>Date Modified:</TD><TD>2005-07-10</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>StartYearCollected-2005-07-10</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>EarliestDateCollected-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin</TD></TR>
|
||||
<TR><TH colspan="2"><A name="StateProvince-2003-06-13">Term Name: StateProvince</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/StateProvince</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>StateProvince</TD></TR> <TR><TD>Definition:</TD><TD>The state, province or region (i.e. next political region smaller than Country) from which the specimen was collected. There is some suggestion to use the values described in ISO 3166-2 (http://www.iso.ch/cate/d8349.html), however these values are in a continual state of flux and it appears unlikely that an appropriate mechanism (by ISO) will be in place to manage these changes. Hence it is recommended that where possible, the full, unabbreviated name should be used for storing information. The server should optionally handle abbreviations as an access point. Note: this is a recurring theme (country and state) abbreviations. Check the existence of an attribute type to deal with abbreviations from the bib-1 profile</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-13</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-13</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>StateProvince-2003-06-13</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>StateProvince-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= State or = Province (etc.)</TD></TR>
|
||||
<TR><TH colspan="2"><A name="StateProvince-2003-06-17">Term Name: StateProvince</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/StateProvince</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>StateProvince</TD></TR> <TR><TD>Definition:</TD><TD>The full, unabbreviated name of the state, province, or region (i.e., the next smaller political region than Country) from which the cataloged item was collected.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>StateProvince-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#StateProvince-2003-06-17">StateProvince</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>StateProvince-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= State or = Province (etc.)</TD></TR>
|
||||
<TR><TH colspan="2"><A name="StateProvince-2007-04-17">Term Name: StateProvince</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwcore/StateProvince</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwcore/</TD></TR> <TR><TD>Label:</TD><TD>StateProvince</TD></TR> <TR><TD>Definition:</TD><TD>The full, unabbreviated name of the state, province, or region (i.e., the next smaller political region than Country) in which the organism was collected or observed.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>StateProvince-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#StateProvince-2007-04-17">StateProvince</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>StateProvince-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= State or = Province (etc.)</TD></TR>
|
||||
<TR><TH colspan="2"><A name="StateProvince-2008-11-19">Term Name: StateProvince</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/StateProvince</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>StateProvince</TD></TR> <TR><TD>Definition:</TD><TD>The full, unabbreviated name of the next smaller political region than Country (state, province, canton, department, region, etc.) in which sampling event occurred.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "Montana", "Minas Gerais", "Córdoba". See <a href="http://code.google.com/p/darwincore/wiki/StateProvince">http://code.google.com/p/darwincore/wiki/StateProvince</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>StateProvince-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#StateProvince-2008-11-19">StateProvince</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= State or = Province (etc.)</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Subgenus-2005-07-10">Term Name: Subgenus</A></TH></TR> <TR><TD>URI:</TD><TD>http://www.iobis.org/obis/Subgenus</TD></TR> <TR><TD>Namespace:</TD><TD>http://www.iobis.org/obis/</TD></TR> <TR><TD>Label:</TD><TD>Subgenus</TD></TR> <TR><TD>Definition:</TD><TD>The name of the subgenus in which the identified name is classified.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2005-07-10</TD></TR> <TR><TD>Date Modified:</TD><TD>2005-07-10</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Subgenus-2005-07-10</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>Subgenus-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/Subgenus</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Subgenus-2008-11-19">Term Name: Subgenus</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Subgenus</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>Subgenus</TD></TR> <TR><TD>Definition:</TD><TD>The name of the subgenus in which the ScientificName is classified.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/Subgenus">http://code.google.com/p/darwincore/wiki/Subgenus</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Subgenus-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#Subgenus-2008-11-19">Subgenus</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/Subgenus</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Subspecies-2003-06-13">Term Name: Subspecies</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/Subspecies</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>Subspecies</TD></TR> <TR><TD>Definition:</TD><TD>The sub-specific epithet of the organism</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-13</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-13</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Subspecies-2003-06-13</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>InfraspecificEpithet-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/SubspeciesEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/SecondEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/SubspeciesEpithet}</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Subspecies-2003-06-17">Term Name: Subspecies</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/Subspecies</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>Subspecies</TD></TR> <TR><TD>Definition:</TD><TD>The phylogenetic subspecific epithet of the cataloged item.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Subspecies-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#Subspecies-2003-06-17">Subspecies</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>InfraspecificEpithet-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/SubspeciesEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/SecondEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/SubspeciesEpithet}</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Taxon-2008-11-19">Term Name: Taxon</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>Taxon</TD></TR> <TR><TD>Definition:</TD><TD>Container class for information about the taxonomic name or concept referred to by an Identification.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/Taxon">http://code.google.com/p/darwincore/wiki/Taxon</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/2000/01/rdf-schema#Class</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>none</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Taxon-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>no simple equivalent in ABCD</TD></TR>
|
||||
<TR><TH colspan="2"><A name="TaxonAccordingTo-2009-01-21">Term Name: TaxonAccordingTo</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/TaxonAccordingTo</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>TaxonAccordingTo</TD></TR> <TR><TD>Definition:</TD><TD>Information about the authorship of this taxon concept which uses the ScientificName in their sense (secundum, sensu). Could be a publication (identification key), institution or team of individuals.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/TaxonAccordingTo">http://code.google.com/p/darwincore/wiki/TaxonAccordingTo</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD>http://rs.tdwg.org/dwc/terms/AccordingTo</TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2009-01-21</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>TaxonAccordingTo-2009-01-21</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>not in ABCD</TD></TR>
|
||||
<TR><TH colspan="2"><A name="TaxonID-2008-11-19">Term Name: TaxonID</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/TaxonID</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>TaxonID</TD></TR> <TR><TD>Definition:</TD><TD>A global unique identifier for the taxon (name in a classification).</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/TaxonID">http://code.google.com/p/darwincore/wiki/TaxonID</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD>http://purl.org/dc/terms/identifier</TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>TaxonID-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>not in ABCD</TD></TR>
|
||||
<TR><TH colspan="2"><A name="TaxonomicStatus-2008-11-19">Term Name: TaxonomicStatus</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/TaxonomicStatus</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>TaxonomicStatus</TD></TR> <TR><TD>Definition:</TD><TD>The status of the use of the ScientificName as a label for a taxon. Requires taxonomic opinion to define the scope of a taxon. Rules of priority then are used to define the taxonomic status of the nomenclature contained in that scope, combined with the experts opinion. It must be linked to a specific taxonomic reference that defines the concept. Recommended best practice is to use a controlled vocabulary.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "invalid", "misapplied", "homotypic synonym", "accepted". See <a href="http://code.google.com/p/darwincore/wiki/TaxonomicStatus">http://code.google.com/p/darwincore/wiki/TaxonomicStatus</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>TaxonomicStatus-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>not in ABCD</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Taxonomy-2009-01-23">Term Name: Taxonomy</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwctype/Taxonomy</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwctype/</TD></TR> <TR><TD>Label:</TD><TD>Taxonomy</TD></TR> <TR><TD>Definition:</TD><TD>A resource describing a taxon.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/Taxonomy">http://code.google.com/p/darwincore/wiki/Taxonomy</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/2000/01/rdf-schema#Class</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2009-01-23</TD></TR> <TR><TD>Date Modified:</TD><TD>2009-01-23</TD></TR> <TR><TD>Member Of:</TD><TD>http://rs.tdwg.org/dwc/terms/DwCType</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Taxonomy-2009-01-23</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>not in ABCD</TD></TR>
|
||||
<TR><TH colspan="2"><A name="TaxonRank-2008-11-19">Term Name: TaxonRank</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/TaxonRank</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>TaxonRank</TD></TR> <TR><TD>Definition:</TD><TD>The taxonomic rank of the most specific name in the ScientificName. Recommended best practice is to use a controlled vocabulary.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "subsp.", "var.", "forma". See <a href="http://code.google.com/p/darwincore/wiki/TaxonRank">http://code.google.com/p/darwincore/wiki/TaxonRank</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>TaxonRank-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#TaxonRank-2008-11-19">TaxonRank</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/Rank</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Temperature-2005-07-10">Term Name: Temperature</A></TH></TR> <TR><TD>URI:</TD><TD>http://www.iobis.org/obis/Temperature</TD></TR> <TR><TD>Namespace:</TD><TD>http://www.iobis.org/obis/</TD></TR> <TR><TD>Label:</TD><TD>Temperature</TD></TR> <TR><TD>Definition:</TD><TD>The temperature recorded with the collection/record event. Is assumed to be taken at the collection depth. Expressed in degrees Celsius.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2005-07-10</TD></TR> <TR><TD>Date Modified:</TD><TD>2005-07-10</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Temperature-2005-07-10</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>SamplingEventAttributes-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/LowerValue + constant</TD></TR>
|
||||
<TR><TH colspan="2"><A name="TimeCollected-2003-06-17">Term Name: TimeCollected</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/TimeCollected</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>TimeCollected</TD></TR> <TR><TD>Definition:</TD><TD>The time of day the cataloged item was collected, expressed as decimal hours from midnight, local time (e.g., 12.0 = noon, 13.5 = 1:30pm).</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>TimeCollected-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#TimeCollected-2003-06-17">TimeCollected</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>StartTimeOfDay2008-11-19, EndTimeOfDay-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/DateTime/TimeOfDayBegin</TD></TR>
|
||||
<TR><TH colspan="2"><A name="TimeOfDay-2003-06-13">Term Name: TimeOfDay</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/TimeOfDay</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>TimeOfDay</TD></TR> <TR><TD>Definition:</TD><TD>The time of day a specimen was collected expressed as decimal hours from midnight local time (e.g. 12.0 = mid day, 13.5 = 1:30pm)</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-13</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-13</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>TimeOfDay-2003-06-13</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>StartTimeOfDay2008-11-19, EndTimeOfDay-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/DateTime/TimeOfDayBegin</TD></TR>
|
||||
<TR><TH colspan="2"><A name="TimeZone-2005-07-10">Term Name: TimeZone</A></TH></TR> <TR><TD>URI:</TD><TD>http://www.iobis.org/obis/TimeZone</TD></TR> <TR><TD>Namespace:</TD><TD>http://www.iobis.org/obis/</TD></TR> <TR><TD>Label:</TD><TD>TimeZone</TD></TR> <TR><TD>Definition:</TD><TD>Indicates the time zone for the Time of Day measurements.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2005-07-10</TD></TR> <TR><TD>Date Modified:</TD><TD>2005-07-10</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>TimeZone-2005-07-10</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>StartTimeOfDay-2008-11-19, EndTimeOfDay-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/DateTime/TimeZone</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Tissues-2003-06-17">Term Name: Tissues</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/Tissues</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>Tissues</TD></TR> <TR><TD>Definition:</TD><TD>A concatenated list of tissues and preservation methods (whole (frozen), liver (EDTA), etc.) for the cataloged item.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Tissues-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>Preparations-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/SpecimenUnit/Preparations/PreparationsText</TD></TR>
|
||||
<TR><TH colspan="2"><A name="TypeStatus-2003-06-13">Term Name: TypeStatus</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/TypeStatus</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>TypeStatus</TD></TR> <TR><TD>Definition:</TD><TD>Indicates the kind of nomenclatural type that a specimen represents. (This is incomplete because type status actually describes the relationship between a name and a specimen [or ternary relatiohnship between a specimen, name, and publication].) In particular, the type status may not apply to the name listed in the scientific name, i.e., current identification. In rare cases, a single specimen may be the type of more than one name.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-13</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-13</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>TypeStatus-2003-06-13</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>TypeStatus-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeText</TD></TR>
|
||||
<TR><TH colspan="2"><A name="TypeStatus-2003-06-17">Term Name: TypeStatus</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/TypeStatus</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>TypeStatus</TD></TR> <TR><TD>Definition:</TD><TD>A list of one or more nomenclatural types that the cataloged item represents (e.g., "holotype of Ctenomys sociabilis. Pearson O. P., and M. I. Christie. 1985. Historia Natural, 5(37):388.").</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>TypeStatus-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#TypeStatus-2003-06-17">TypeStatus</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>TypeStatus-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeText</TD></TR>
|
||||
<TR><TH colspan="2"><A name="TypeStatus-2007-04-17">Term Name: TypeStatus</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/curatorial/TypeStatus</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/curatorial/</TD></TR> <TR><TD>Label:</TD><TD>TypeStatus</TD></TR> <TR><TD>Definition:</TD><TD>A list of one or more nomenclatural types (including type status and typified taxonomic name) represented by the object. Example: "holotype of Ctenomys sociabilis. Pearson O. P., and M. I. Christie. 1985. Historia Natural, 5(37):388".</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>TypeStatus-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#TypeStatus-2007-04-17">TypeStatus</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>TypeStatus-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeText</TD></TR>
|
||||
<TR><TH colspan="2"><A name="TypeStatus-2008-11-19">Term Name: TypeStatus</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/TypeStatus</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>TypeStatus</TD></TR> <TR><TD>Definition:</TD><TD>A list (concatenated and separated) of nomenclatural types (type status, typified ScientificName, publication) applied to the sample.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "holotype of Ctenomys sociabilis. Pearson O. P., and M. I. Christie. 1985. Historia Natural, 5(37):388". See <a href="http://code.google.com/p/darwincore/wiki/TypeStatus">http://code.google.com/p/darwincore/wiki/TypeStatus</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Identification</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>TypeStatus-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#TypeStatus-2008-11-19">TypeStatus</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeText</TD></TR>
|
||||
<TR><TH colspan="2"><A name="ValidDistributionFlag-2007-04-17">Term Name: ValidDistributionFlag</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwcore/ValidDistributionFlag</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwcore/</TD></TR> <TR><TD>Label:</TD><TD>ValidDistributionFlag</TD></TR> <TR><TD>Definition:</TD><TD>A flag ("true" or "false") that indicates whether the locality information represents a valid distribution occurrence for a specimen. Specimens taken from captivity and showing the captive location should use the value "false".</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>ValidDistributionFlag-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>SamplingProtocol-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/ValidDistributionFlag</TD></TR>
|
||||
<TR><TH colspan="2"><A name="VerbatimCollectingDate-2003-06-17">Term Name: VerbatimCollectingDate</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/VerbatimCollectingDate</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>VerbatimCollectingDate</TD></TR> <TR><TD>Definition:</TD><TD>The verbatim original representation of the date information for the collecting event.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>VerbatimCollectingDate-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>VerbatimCollectingDate-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/DateTime/DateText</TD></TR>
|
||||
<TR><TH colspan="2"><A name="VerbatimCollectingDate-2007-04-17">Term Name: VerbatimCollectingDate</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/curatorial/VerbatimCollectingDate</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/curatorial/</TD></TR> <TR><TD>Label:</TD><TD>VerbatimCollectingDate</TD></TR> <TR><TD>Definition:</TD><TD>The verbatim original representation of the date (and time) information for the collecting event. Example: "spring 1910".</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>VerbatimCollectingDate-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#VerbatimCollectingDate-2007-04-17">VerbatimCollectingDate</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>VerbatimCollectingDate-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/DateTime/DateText</TD></TR>
|
||||
<TR><TH colspan="2"><A name="VerbatimCollectingDate-2008-11-19">Term Name: VerbatimCollectingDate</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/VerbatimCollectingDate</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>VerbatimCollectingDate</TD></TR> <TR><TD>Definition:</TD><TD>The verbatim original representation of the date (and time) information for the sampling event.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "spring 1910". See <a href="http://code.google.com/p/darwincore/wiki/VerbatimCollectingDate">http://code.google.com/p/darwincore/wiki/VerbatimCollectingDate</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEvent</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>VerbatimCollectingDate-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#VerbatimCollectingDate-2008-11-19">VerbatimCollectingDate</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/DateTime/DateText</TD></TR>
|
||||
<TR><TH colspan="2"><A name="VerbatimCoordinates-2007-04-17">Term Name: VerbatimCoordinates</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/geospatial/VerbatimCoordinates</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/geospatial/</TD></TR> <TR><TD>Label:</TD><TD>VerbatimCoordinates</TD></TR> <TR><TD>Definition:</TD><TD>A text representation of the coordinate data (Latitude/ Longitude, UTM, TRS, etc.) from its original source if it cannot be separated into its component parts. Example: "470999 1234300".</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>VerbatimCoordinates-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>VerbatimCoordinates-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>{DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/CoordinatesText or DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesUTM/UTMText}</TD></TR>
|
||||
<TR><TH colspan="2"><A name="VerbatimCoordinates-2008-11-19">Term Name: VerbatimCoordinates</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/VerbatimCoordinates</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>VerbatimCoordinates</TD></TR> <TR><TD>Definition:</TD><TD>The original spatial coordinates of the place where the sampling event occurred. The coordinate reference system (datum, ellipsoid) for these coordinates should be stored in GeodeticDatum and the coordinate system should be stored in VerbatimCoordinateSystem.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "41 05 54S 121 05 34W". See <a href="http://code.google.com/p/darwincore/wiki/VerbatimCoordinates">http://code.google.com/p/darwincore/wiki/VerbatimCoordinates</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>VerbatimCoordinates-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#VerbatimCoordinates-2008-11-19">VerbatimCoordinates</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>{DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/CoordinatesText or DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesUTM/UTMText}</TD></TR>
|
||||
<TR><TH colspan="2"><A name="VerbatimCoordinateSystem-2007-04-17">Term Name: VerbatimCoordinateSystem</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/geospatial/VerbatimCoordinateSystem</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/geospatial/</TD></TR> <TR><TD>Label:</TD><TD>VerbatimCoordinateSystem</TD></TR> <TR><TD>Definition:</TD><TD>The name of the system in which the verbatim geographic coordinates were recorded. Examples: "decimal degrees", "degrees minutes seconds", "degrees decimal minutes", "UTM"</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>VerbatimCoordinateSystem-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#VerbatimCoordinateSystem-2007-04-17">VerbatimCoordinateSystem</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>VerbatimCoordinateSystem-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>(partly) DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesGrid/GridCellSystem</TD></TR>
|
||||
<TR><TH colspan="2"><A name="VerbatimCoordinateSystem-2008-11-19">Term Name: VerbatimCoordinateSystem</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/VerbatimCoordinateSystem</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>VerbatimCoordinateSystem</TD></TR> <TR><TD>Definition:</TD><TD>The spatial coordinate system for the VerbatimLatitude and VerbatimLongitude or the VerbatimCoordinates of the place where the sampling event occurred. Recommended best practice is to use a controlled vocabulary.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "decimal degrees", "degrees decimal minutes", "degrees minutes seconds", "UTM", "Gauss-Kruger". See <a href="http://code.google.com/p/darwincore/wiki/VerbatimCoordinateSystem">http://code.google.com/p/darwincore/wiki/VerbatimCoordinateSystem</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>VerbatimCoordinateSystem-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#VerbatimCoordinateSystem-2008-11-19">VerbatimCoordinateSystem</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>(partly) DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesGrid/GridCellSystem</TD></TR>
|
||||
<TR><TH colspan="2"><A name="VerbatimDepth-2003-06-17">Term Name: VerbatimDepth</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/VerbatimDepth</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>VerbatimDepth</TD></TR> <TR><TD>Definition:</TD><TD>A text representation of the Depth in its original format in the source database.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>VerbatimDepth-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>VerbatimDepth-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactText</TD></TR>
|
||||
<TR><TH colspan="2"><A name="VerbatimDepth-2007-04-17">Term Name: VerbatimDepth</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/curatorial/VerbatimDepth</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/curatorial/</TD></TR> <TR><TD>Label:</TD><TD>VerbatimDepth</TD></TR> <TR><TD>Definition:</TD><TD>A text representation of the depth in its original format in the source database. Example: "100 to 200 ft below sea level".</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>VerbatimDepth-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#VerbatimDepth-2007-04-17">VerbatimDepth</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>VerbatimDepth-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactText</TD></TR>
|
||||
<TR><TH colspan="2"><A name="VerbatimDepth-2008-11-19">Term Name: VerbatimDepth</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/VerbatimDepth</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>VerbatimDepth</TD></TR> <TR><TD>Definition:</TD><TD>The original description of the depth (below the local surface) at which the sampling event occurred.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "100-200 m". See <a href="http://code.google.com/p/darwincore/wiki/VerbatimDepth">http://code.google.com/p/darwincore/wiki/VerbatimDepth</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>VerbatimDepth-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#VerbatimDepth-2008-11-19">VerbatimDepth</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactText</TD></TR>
|
||||
<TR><TH colspan="2"><A name="VerbatimElevation-2003-06-17">Term Name: VerbatimElevation</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/VerbatimElevation</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>VerbatimElevation</TD></TR> <TR><TD>Definition:</TD><TD>A text representation of the Elevation in its original format in the source database.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>VerbatimElevation-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>VerbatimElevation-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactText</TD></TR>
|
||||
<TR><TH colspan="2"><A name="VerbatimElevation-2007-04-17">Term Name: VerbatimElevation</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/curatorial/VerbatimElevation</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/curatorial/</TD></TR> <TR><TD>Label:</TD><TD>VerbatimElevation</TD></TR> <TR><TD>Definition:</TD><TD>A text representation of the altitude in its original format in the source database. Example: "1000+- meters".</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>VerbatimElevation-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#VerbatimElevation-2007-04-17">VerbatimElevation</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>VerbatimElevation-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactText</TD></TR>
|
||||
<TR><TH colspan="2"><A name="VerbatimElevation-2008-11-19">Term Name: VerbatimElevation</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/VerbatimElevation</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>VerbatimElevation</TD></TR> <TR><TD>Definition:</TD><TD>The original description of the elevation (altitude, usually above sea level) at which the sampling event occurred.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "100-200 m". See <a href="http://code.google.com/p/darwincore/wiki/VerbatimElevation">http://code.google.com/p/darwincore/wiki/VerbatimElevation</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>VerbatimElevation-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#VerbatimElevation-2008-11-19">VerbatimElevation</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactText</TD></TR>
|
||||
<TR><TH colspan="2"><A name="VerbatimLatitude-2003-06-17">Term Name: VerbatimLatitude</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/VerbatimLatitude</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>VerbatimLatitude</TD></TR> <TR><TD>Definition:</TD><TD>A text representation of the Latitude data in its original format in the source database.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>VerbatimLatitude-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>VerbatimLatitude-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/VerbatimLatitude</TD></TR>
|
||||
<TR><TH colspan="2"><A name="VerbatimLatitude-2007-04-17">Term Name: VerbatimLatitude</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/geospatial/VerbatimLatitude</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/geospatial/</TD></TR> <TR><TD>Label:</TD><TD>VerbatimLatitude</TD></TR> <TR><TD>Definition:</TD><TD>A text representation of the Latitude part of the coordinate data from its original source. Example: 47d09'99"N</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>VerbatimLatitude-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#VerbatimLatitude-2007-04-17">VerbatimLatitude</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>VerbatimLatitude-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/VerbatimLatitude</TD></TR>
|
||||
<TR><TH colspan="2"><A name="VerbatimLatitude-2008-11-19">Term Name: VerbatimLatitude</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/VerbatimLatitude</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>VerbatimLatitude</TD></TR> <TR><TD>Definition:</TD><TD>The verbatim original latitude of the place where the sampling event occurred. The coordinate reference system (datum, ellipsoid) for these coordinates should be stored in GeodeticDatum and the coordinate system should be stored in VerbatimCoordinateSystem.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "41 05 54.03S". See <a href="http://code.google.com/p/darwincore/wiki/VerbatimLatitude">http://code.google.com/p/darwincore/wiki/VerbatimLatitude</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>VerbatimLatitude-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#VerbatimLatitude-2008-11-19">VerbatimLatitude</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/VerbatimLatitude</TD></TR>
|
||||
<TR><TH colspan="2"><A name="VerbatimLocality-2008-11-19">Term Name: VerbatimLocality</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/VerbatimLocality</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>VerbatimLocality</TD></TR> <TR><TD>Definition:</TD><TD>The original description of the specific place where the sampling event occurred.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "25 km NNE Bariloche por R. Nac. 237". See <a href="http://code.google.com/p/darwincore/wiki/VerbatimLocality">http://code.google.com/p/darwincore/wiki/VerbatimLocality</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>VerbatimLocality-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName</TD></TR>
|
||||
<TR><TH colspan="2"><A name="VerbatimLongitude-2003-06-17">Term Name: VerbatimLongitude</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/VerbatimLongitude</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>VerbatimLongitude</TD></TR> <TR><TD>Definition:</TD><TD>A text representation of the Longitude data in its original format in the source database.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>VerbatimLongitude-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>VerbatimLongitude-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/VerbatimLongitude</TD></TR>
|
||||
<TR><TH colspan="2"><A name="VerbatimLongitude-2007-04-17">Term Name: VerbatimLongitude</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/geospatial/VerbatimLongitude</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/geospatial/</TD></TR> <TR><TD>Label:</TD><TD>VerbatimLongitude</TD></TR> <TR><TD>Definition:</TD><TD>A text representation of the Longitude part of the coordinate data from its original source. Example: -122.43254</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>VerbatimLongitude-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#VerbatimLongitude-2007-04-17">VerbatimLongitude</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>VerbatimLongitude-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/VerbatimLongitude</TD></TR>
|
||||
<TR><TH colspan="2"><A name="VerbatimLongitude-2008-11-19">Term Name: VerbatimLongitude</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/VerbatimLongitude</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>VerbatimLongitude</TD></TR> <TR><TD>Definition:</TD><TD>The verbatim original longitude of the place where the sampling event occurred. The coordinate reference system (datum, ellipsoid) for these coordinates should be stored in GeodeticDatum and the coordinate system should be stored in VerbatimCoordinateSystem.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "121d 10' 34" W". See <a href="http://code.google.com/p/darwincore/wiki/VerbatimLongitude">http://code.google.com/p/darwincore/wiki/VerbatimLongitude</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>VerbatimLongitude-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#VerbatimLongitude-2008-11-19">VerbatimLongitude</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/VerbatimLongitude</TD></TR>
|
||||
<TR><TH colspan="2"><A name="WaterBody-2007-04-17">Term Name: WaterBody</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwcore/WaterBody</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/dwcore/</TD></TR> <TR><TD>Label:</TD><TD>WaterBody</TD></TR> <TR><TD>Definition:</TD><TD>The full, unabbreviated name of the body of water in or over which the organism was collected or observed.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2007-04-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2007-04-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>WaterBody-2007-04-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#WaterBody-2007-04-17">WaterBody</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>WaterBody-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Water body</TD></TR>
|
||||
<TR><TH colspan="2"><A name="Waterbody-2008-11-19">Term Name: Waterbody</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Waterbody</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>Waterbody</TD></TR> <TR><TD>Definition:</TD><TD>The full, unabbreviated name of the water body in which the sampling event occurred. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Indian Ocean", "Baltic Sea". See <a href="http://code.google.com/p/darwincore/wiki/Waterbody">http://code.google.com/p/darwincore/wiki/Waterbody</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>Waterbody-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#Waterbody-2008-11-19">Waterbody</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Water body</TD></TR>
|
||||
<TR><TH colspan="2"><A name="YearCollected-2003-06-13">Term Name: YearCollected</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/YearCollected</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>YearCollected</TD></TR> <TR><TD>Definition:</TD><TD>The year (expressed as an integer) in which the specimen was collected. The full year should be expressed (e.g. 1972 must be expressed as "1972" not "72"). Must always be a four digit integer [-9999..9999]</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-13</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-13</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>YearCollected-2003-06-13</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>YearSampled-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin</TD></TR>
|
||||
<TR><TH colspan="2"><A name="YearCollected-2003-06-17">Term Name: YearCollected</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/YearCollected</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>YearCollected</TD></TR> <TR><TD>Definition:</TD><TD>The four digit year in the Common Era calendar in which the cataloged item was collected.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>YearCollected-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#YearCollected-2003-06-17">YearCollected</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>YearCollected-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin</TD></TR>
|
||||
<TR><TH colspan="2"><A name="YearIdentified-2003-06-13">Term Name: YearIdentified</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/YearIdentified</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>YearIdentified</TD></TR> <TR><TD>Definition:</TD><TD>The year portion of the date when the Collection Item was identified; as four digits [-9999..9999], e.g., 1906, 2002.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-13</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-13</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>YearIdentified-2003-06-13</TD></TR> <TR><TD>Replaces:</TD><TD></TD></TR> <TR><TD>Is Replaced By:</TD><TD>DateIdentified-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>accessible from DataSets/DataSet/Units/Unit/Identifications/Identification/Date/DateText</TD></TR>
|
||||
<TR><TH colspan="2"><A name="YearIdentified-2003-06-17">Term Name: YearIdentified</A></TH></TR> <TR><TD>URI:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/YearIdentified</TD></TR> <TR><TD>Namespace:</TD><TD>http://digir.net/schema/conceptual/darwin/2003/1.0/</TD></TR> <TR><TD>Label:</TD><TD>YearIdentified</TD></TR> <TR><TD>Definition:</TD><TD>The four digit year in the Common Era calendar in which the cataloged item was identified as having the ScientificName.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>historical</TD></TR> <TR><TD>Date Issued:</TD><TD>2003-06-17</TD></TR> <TR><TD>Date Modified:</TD><TD>2003-06-17</TD></TR> <TR><TD>Has Domain:</TD><TD></TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>YearIdentified-2003-06-17</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#YearIdentified-2003-06-17">YearIdentified</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD>DateIdentified-2008-11-19</TD></TR> <TR><TD>ABCD 2.06:</TD><TD>accessible from DataSets/DataSet/Units/Unit/Identifications/Identification/Date/DateText</TD></TR>
|
||||
<TR><TH colspan="2"><A name="YearSampled-2008-11-19">Term Name: YearSampled</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/YearSampled</TD></TR> <TR><TD>Namespace:</TD><TD>http://rs.tdwg.org/dwc/terms/</TD></TR> <TR><TD>Label:</TD><TD>YearSampled</TD></TR> <TR><TD>Definition:</TD><TD>The four-digit year in which the sampling event occurred, according to the Common Era Calendar.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "2008". See <a href="http://code.google.com/p/darwincore/wiki/YearSampled">http://code.google.com/p/darwincore/wiki/YearSampled</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/1999/02/22-rdf-syntax-ns#Property</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Status:</TD><TD>recommended</TD></TR> <TR><TD>Date Issued:</TD><TD>2008-11-19</TD></TR> <TR><TD>Date Modified:</TD><TD>2008-11-19</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEvent</TD></TR> <TR><TD>Has Range:</TD><TD></TD></TR> <TR><TD>Version:</TD><TD>YearSampled-2008-11-19</TD></TR> <TR><TD>Replaces:</TD><TD><a href="./index.htm#YearSampled-2008-11-19">YearSampled</a></TD></TR> <TR><TD>Is Replaced By:</TD><TD></TD></TR> <TR><TD>ABCD 2.06:</TD><TD>accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin</TD></TR>
|
||||
|
||||
<!-- End Term Table -->
|
||||
|
||||
</TBODY></TABLE>
|
||||
|
||||
<!-- Footer -->
|
||||
<hr>
|
||||
<p><a rel="license" href="http://creativecommons.org/licenses/by/3.0/us/">
|
||||
<img alt="Creative Commons License" id="creative_commons_icon" src="http://i.creativecommons.org/l/by/3.0/88x31.png" /></a>
|
||||
Copyright 2009 - Biodiversity Information Standards - TDWG - <a href="http://www.tdwg.org/about-tdwg/contact-us/">Contact Us</a><br/>
|
||||
<p>Except where otherwise noted, content on this site is licensed under a
|
||||
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/us/"> Creative Commons
|
||||
Attribution 3.0 United States License</a>.</p>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
|
@ -0,0 +1,451 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<HTML xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<HEAD>
|
||||
<META http-equiv="Content-Type" content="text/html; charset=US-ASCII"/>
|
||||
<TITLE>Darwin Core Versions</TITLE>
|
||||
<LINK rel="schema.DwC" href="http://rs.tdwg.org/dwc/terms/history/versions.htm"/>
|
||||
<META name="DC.title" content="Darwin Core Terms Versions"/>
|
||||
<META name="DC.description" content="The quick reference guide to mappings from pre-standard Darwin Core versions to the recommended Darwin Core terms."/>
|
||||
<META name="DC.subject" content="biodiversity, standards"/>
|
||||
<META name="DC.creator" content="Darwin Core Task Group"/>
|
||||
<META name="DC.contributor" content="John Wieczorek (MVZ) <tuco@berkeley.edu>"/>
|
||||
<META name="DC.contributor" content="Markus Döring (GBIF) <mdoering@gbif.org>"/>
|
||||
<META name="DC.contributor" content="Renato De Giovanni (CRIA) <renato@cria.org.br>"/>
|
||||
<META name="DC.contributor" content="Tim Robertson (GBIF) <trobertson@gbif.org>"/>
|
||||
<META name="DC.contributor" content="Dave Vieglais (KUNHM) <vieglais@ku.edu>"/>
|
||||
<META name="DC.contributor" content="Stan Blum (CAS) <sblum@calacademy.org>"/>
|
||||
<META name="DC.modified" content="2009-02-12"/>
|
||||
<META name="DC.dateAccepted" content="2009-02-12"/>
|
||||
<META name="DC.format" content="text/html"/>
|
||||
<META name="DC.identifier" content="http://rs.tdwg.org/dwc/terms/history/versions/2009-02-12"/>
|
||||
<META name="DC.publisher" content="Biodiversity Information Standards TDWG"/>
|
||||
<META name="DC.rights" content=""/>
|
||||
<META name="DC.accessRights" content="public"/>
|
||||
<META name="DC.bibliographicCitation" content="Darwin Core Standard. 2009"/>
|
||||
<META name="DC.isReplacedBy" content=""/>
|
||||
<META name="DC.replaces" content="http://wiki.tdwg.org/twiki/bin/view/DarwinCore/DarwinCoreVersions"/>
|
||||
<META name="DC.language" content="en"/>
|
||||
<LINK rel="meta" href="http://www.tdwg.org/"/>
|
||||
<LINK rel="stylesheet" href="../../../DarwinCore_files/default.css" type="text/css"/>
|
||||
<SCRIPT src="../../../DarwinCore_files/default.js" type="text/javascript"></SCRIPT>
|
||||
</HEAD>
|
||||
<BODY>
|
||||
<DIV class="header">
|
||||
|
||||
<TABLE width="100%" cellspacing="0" cellpadding="0" bgcolor="#617394">
|
||||
<TBODY><TR>
|
||||
<TD width="70"><A href="http://www.tdwg.org"><IMG src="../../../DarwinCore_files/TDWGlogo_Twiki.gif" width="150" height="70" alt="Biodiversity Information Standards (TDWG) logo"></A></TD>
|
||||
<TD width="100%" height="70" align="right" valign="top">
|
||||
</TABLE>
|
||||
|
||||
<H1>Darwin Core Versions</H1>
|
||||
<TABLE cellspacing="0" class="docinfo">
|
||||
<TBODY>
|
||||
<TR>
|
||||
<TH>Title:</TH>
|
||||
<TD>Darwin Core Versions</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Date Issued:</TH>
|
||||
<TD>2009-02-12</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Abstract:</TH>
|
||||
<TD>This document is a quick reference for mappings between elements in pre-standard Darwin Core
|
||||
versions and the current Darwin Core terms. For complete historical
|
||||
term information, including version changes and details on pre-standard terms, see [<A href="../index.htm">HISTORY</A>].
|
||||
For a quick reference guide to the current recommended Darwin Core terms, see [<a href="../../index.htm">TERMS</A>].</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Contributors:</TH>
|
||||
<TD>John Wieczorek (MVZ)<tuco@berkeley.edu>, Markus Döring (GBIF)<mdoering@gbif.org>, Renato De Giovanni (CRIA)<renato@cria.org.br>, Tim Robertson (GBIF)<trobertson@gbif.org>, Dave Vieglais (KUNHM)<vieglais@ku.edu>, Stan Blum (CAS)<sblum@calacademy.org></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Legal:</TH>
|
||||
<TD>This document is governed by the standard legal, copyright, licensing provisions and disclaimers issued by the Taxonomic Databases Working Group.</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Part of TDWG Standard:</TH>
|
||||
<TD>***URL to DwC Standard*** goes here</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Creator:</TH>
|
||||
<TD>Darwin Core Task Group</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Identifier:</TH>
|
||||
<TD><A href="http://rs.tdwg.org/dwc/terms/history/versions/2009-02-12/">http://rs.tdwg.org/dwc/terms/history/versions/2009-02-12/</A></TD>
|
||||
</TR>
|
||||
<TR><TH>Latest Version:</TH>
|
||||
<TD><A href="http://rs.tdwg.org/dwc/terms/history/versions/">http://rs.tdwg.org/dwc/terms/history/versions/</A></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Replaces:</TH>
|
||||
<TD><A href="http://wiki.tdwg.org/twiki/bin/view/DarwinCore/DarwinCoreVersions">http://wiki.tdwg.org/twiki/bin/view/DarwinCore/DarwinCoreVersions</A></TD>
|
||||
</TR>
|
||||
<TR><TH>Replaced By:</TH>
|
||||
<TD>Not applicable</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Translations:</TH>
|
||||
<TD><A href="http://rs.tdwg.org/dwc/translations/">http://rs.tdwg.org/dwc/translations/</A></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Document Status:</TH>
|
||||
<TD>This is a TDWG Request for Comment.</TD>
|
||||
</TR>
|
||||
</TBODY></TABLE>
|
||||
|
||||
<H2>Table of Contents</H2>
|
||||
</P><TABLE width="95%" border="0" align="center"><TBODY>
|
||||
<TR><TD width="100%">1. <a href="#introduction">Introduction</a>
|
||||
</TD></TR>
|
||||
<TR><TD width="100%">2. <a href="#references">References</a>
|
||||
</TD></TR>
|
||||
<TR><TD width="100%">3. <a href="#versioncomparison">Version Comparison</a>
|
||||
</TD></TR>
|
||||
</TBODY> </TABLE
|
||||
|
||||
<A name="introduction" id="introduction"></A>
|
||||
<H2>1. Introduction</H2>
|
||||
<P>Before becoming a TDWG standard, the Darwin Core was instantiated and deployed in many different
|
||||
application profiles, all of them based on XML schema. The openly developed and widely used versions
|
||||
of the Darwin Core ([<A href="http://digir.net/schema/conceptual/darwin/2003/1.0/darwin2.xsd">CLASSIC</A>],
|
||||
[<A href="http://digir.net/schema/conceptual/darwin/2003/1.21/darwin2.xsd">MANIS</A>],
|
||||
[<A href="http://iobis.org/obis/obis.xsd">OBIS</A>],
|
||||
[<A href="http://rs.tdwg.org/dwc/tdwg_dw_core.xsd">DRAFT14</A>],
|
||||
[<A href="http://rs.tdwg.org/dwc/tdwg_dw_curatorial.xsd">CURATORIAL</A>],
|
||||
[<A href="http://rs.tdwg.org/dwc/tdwg_dw_geospatial.xsd">GEOSPATIAL</A>]) are each compared (mapped conceptually) to the
|
||||
current recommended Darwin Core terms [<a href="../../index.htm">TERMS</a>] in this document. Each historical version is
|
||||
mapped in a separate table and can be referenced quickly from the index in <a href="#versioncomparison">Version Comparison</a>
|
||||
section.
|
||||
|
||||
<A name="references" id="references"></A>
|
||||
<H2>2. References</H2>
|
||||
<TABLE width="95%" border="0" align="center">
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="CLASSIC">[CLASSIC]</A></TD>
|
||||
<TD width="40%"><A href="http://digir.net/schema/conceptual/darwin/2003/1.0/darwin2.xsd">http://digir.net/schema/conceptual/darwin/2003/1.0/darwin2.xsd</A></TD>
|
||||
<TD width="50%">Darwin Core 1.2 (Classic) schema.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="CURATORIAL">[CURATORIAL]</A></TD>
|
||||
<TD width="40%"><A href="http://rs.tdwg.org/dwc/tdwg_dw_curatorial.xsd">http://rs.tdwg.org/dwc/tdwg_dw_curatorial.xsd</A></TD>
|
||||
<TD width="50%">Darwin Core 1.4 Curatorial Extension schema.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="DRAFT14">[DRAFT14]</A></TD>
|
||||
<TD width="40%"><A href="http://rs.tdwg.org/dwc/tdwg_dw_core.xsd">http://rs.tdwg.org/dwc/tdwg_dw_core.xsd</A></TD>
|
||||
<TD width="50%">Darwin Core 1.4 schema.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="DWC">[DWC]</A></TD>
|
||||
<TD width="40%"><A href="../../../index.htm">http://rs.tdwg.org/dwc/</A></TD>
|
||||
<TD width="50%">An introduction to the Darwin Core Standard.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="GEOSPATIAL">[GEOSPATIAL]</A></TD>
|
||||
<TD width="40%"><A href="http://rs.tdwg.org/dwc/tdwg_dw_geospatial.xsd">http://rs.tdwg.org/dwc/tdwg_dw_geospatial.xsd</A></TD>
|
||||
<TD width="50%">Darwin Core 1.4 Geospatial Extension schema.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="MANIS">[MANIS]</A></TD>
|
||||
<TD width="40%"><A href="http://digir.net/schema/conceptual/darwin/2003/1.21/darwin2.xsd">http://digir.net/schema/conceptual/darwin/2003/1.21/darwin2.xsd</A></TD>
|
||||
<TD width="50%">Darwin Core 1.21 (MaNIS/HerpNet/ORNIS/FishNet2) schema.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="OBIS">[OBIS]</A></TD>
|
||||
<TD width="40%"><A href="http://iobis.org/obis/obis.xsd">http://iobis.org/obis/obis.xsd</A></TD>
|
||||
<TD width="50%">OBIS additions to Darwin Core 1.2 (Classic).</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="TERMS">[TERMS]</A></TD>
|
||||
<TD width="40%"><A href="../../index.htm">http://rs.tdwg.org/dwc/terms/</A></TD>
|
||||
<TD width="50%">Quick reference to recommended Darwin Core terms.</TD>
|
||||
</TR>
|
||||
|
||||
</TBODY></TABLE>
|
||||
|
||||
<A name=versioncomparison" id="versioncomparison"></A>
|
||||
<H2>3. Version Comparison</H2>
|
||||
<P>
|
||||
3.1 <a href="#dwcclassic">Darwin Core 1.2 (Classic)</a><br>
|
||||
3.2 <a href="#dwcmanis">Darwin Core 1.21 (MaNIS/HerpNet/ORNIS/FishNet2)</a><br>
|
||||
3.3 <a href="#dwcobis">OBIS extension</a><br>
|
||||
3.4 <a href="#dwcdraft14">Darwin Core 1.4 (Draft Standard)</a><br>
|
||||
3.5 <a href="#dwccuratorial">Darwin Core 1.4 Curatorial extension</a><br>
|
||||
3.6 <a href="#dwcgeospatial">Darwin Core 1.4 Geospatial extension</a><br>
|
||||
<P>
|
||||
|
||||
<A name=dwcclassic" id="dwcclassic"></A>
|
||||
<H3>3.1 Darwin Core 1.2 (Classic)</H3>
|
||||
<TABLE class="border" cellspacing="0"><TBODY>
|
||||
<TR><TH colspan="1">Darwin Core 1.2 Element</TH><TH colspan="1">Recommended Term</TH></TR>
|
||||
|
||||
<TR><TD><a href="../index.htm#DateLastModified-2003-06-13">DateLastModified</a></TD> <TD><a href="../index.htm#http://dublincore.org/usage/terms/history/#modified-003">dcterms:modified</a></TD>
|
||||
<TR><TD><a href="../index.htm#InstitutionCode-2003-06-13">InstitutionCode</a></TD> <TD><a href="../index.htm#InstitutionCode-2008-11-19">InstitutionCode</a></TD>
|
||||
<TR><TD><a href="../index.htm#CollectionCode-2003-06-13">CollectionCode</a></TD> <TD><a href="../index.htm#CollectionCode-2008-11-19">CollectionCode</a></TD>
|
||||
<TR><TD><a href="../index.htm#CatalogNumber-2003-06-13">CatalogNumber</a></TD> <TD><a href="../index.htm#CatalogNumber-2008-11-19">CatalogNumber</a></TD>
|
||||
<TR><TD><a href="../index.htm#ScientificName-2003-06-13">ScientificName</a></TD> <TD><a href="../index.htm#ScientificName-2008-11-19">ScientificName</a></TD>
|
||||
<TR><TD><a href="../index.htm#BasisOfRecord-2003-06-13">BasisOfRecord</a></TD> <TD><a href="../index.htm#BasisOfRecord-2008-11-19">BasisOfRecord</a></TD>
|
||||
<TR><TD><a href="../index.htm#Kingdom-2003-06-13">Kingdom</a></TD> <TD><a href="../index.htm#Kingdom-2008-11-19">Kingdom</a></TD>
|
||||
<TR><TD><a href="../index.htm#Phylum-2003-06-13">Phylum</a></TD> <TD><a href="../index.htm#Phylum-2008-11-19">Phylum</a></TD>
|
||||
<TR><TD><a href="../index.htm#Class-2003-06-13">Class</a></TD> <TD><a href="../index.htm#Class-2008-11-19">Class</a></TD>
|
||||
<TR><TD><a href="../index.htm#Order-2003-06-13">Order</a></TD> <TD><a href="../index.htm#Order-2008-11-19">Order</a></TD>
|
||||
<TR><TD><a href="../index.htm#Family-2003-06-13">Family</a></TD> <TD><a href="../index.htm#Family-2008-11-19">Family</a></TD>
|
||||
<TR><TD><a href="../index.htm#Genus-2003-06-13">Genus</a></TD> <TD><a href="../index.htm#Genus-2008-11-19">Genus</a></TD>
|
||||
<TR><TD><a href="../index.htm#Species-2003-06-13">Species</a></TD> <TD><a href="../index.htm#SpecificEpithet-2008-11-19">SpecificEpithet</a></TD>
|
||||
<TR><TD><a href="../index.htm#Subspecies-2003-06-13">Subspecies</a></TD> <TD><a href="../index.htm#InfraspecificEpithet-2008-11-19">InfraspecificEpithet</a></TD>
|
||||
<TR><TD><a href="../index.htm#ScientificNameAuthor-2003-06-13">ScientificNameAuthor</a></TD> <TD><a href="../index.htm#ScientificNameAuthorship-2008-11-19">ScientificNameAuthorship</a></TD>
|
||||
<TR><TD><a href="../index.htm#IdentifiedBy-2003-06-13">IdentifiedBy</a></TD> <TD><a href="../index.htm#IdentifiedBy-2008-11-19">IdentifiedBy</a></TD>
|
||||
<TR><TD><a href="../index.htm#YearIdentified-2003-06-13">YearIdentified</a></TD> <TD><a href="../index.htm#DateIdentified-2008-11-19">DateIdentified</a></TD>
|
||||
<TR><TD><a href="../index.htm#MonthIdentified-2003-06-13">MonthIdentified</a></TD> <TD><a href="../index.htm#DateIdentified-2008-11-19">DateIdentified</a></TD>
|
||||
<TR><TD><a href="../index.htm#DayIdentified-2003-06-13">DayIdentified</a></TD> <TD><a href="../index.htm#DateIdentified-2008-11-19">DateIdentified</a></TD>
|
||||
<TR><TD><a href="../index.htm#TypeStatus-2003-06-13">TypeStatus</a></TD> <TD><a href="../index.htm#TypeStatus-2008-11-19">TypeStatus</a></TD>
|
||||
<TR><TD><a href="../index.htm#CollectorNumber-2003-06-13">CollectorNumber</a></TD> <TD><a href="../index.htm#CollectorNumber-2008-11-19">CollectorNumber</a></TD>
|
||||
<TR><TD><a href="../index.htm#FieldNumber-2003-06-13">FieldNumber</a></TD> <TD><a href="../index.htm#FieldNumber-2008-11-19">FieldNumber</a></TD>
|
||||
<TR><TD><a href="../index.htm#Collector-2003-06-13">Collector</a></TD> <TD><a href="../index.htm#Collector-2008-11-19">Collector</a></TD>
|
||||
<TR><TD><a href="../index.htm#YearCollected-2003-06-13">YearCollected</a></TD> <TD><a href="../index.htm#YearSampled-2008-11-19">YearSampled</a></TD>
|
||||
<TR><TD><a href="../index.htm#MonthCollected-2003-06-13">MonthCollected</a></TD> <TD><a href="../index.htm#MonthOfYear-2008-11-19">MonthOfYear</a></TD>
|
||||
<TR><TD><a href="../index.htm#DayCollected-2003-06-13">DayCollected</a></TD> <TD><a href="../index.htm#DayOfMonth-2008-11-19">DayOfMonth</a></TD>
|
||||
<TR><TD><a href="../index.htm#Country-2003-06-13">Country</a></TD> <TD><a href="../index.htm#Country-2008-11-19">Country</a></TD>
|
||||
<TR><TD><a href="../index.htm#StateProvince-2003-06-13">StateProvince</a></TD> <TD><a href="../index.htm#StateProvince-2008-11-19">StateProvince</a></TD>
|
||||
<TR><TD><a href="../index.htm#County-2003-06-13">County</a></TD> <TD><a href="../index.htm#County-2008-11-19">County</a></TD>
|
||||
<TR><TD><a href="../index.htm#Locality-2003-06-13">Locality</a></TD> <TD><a href="../index.htm#Locality-2008-11-19">Locality</a></TD>
|
||||
<TR><TD><a href="../index.htm#Longitude-2003-06-13">Longitude</a></TD> <TD><a href="../index.htm#DecimalLongitude-2008-11-19">DecimalLongitude</a></TD>
|
||||
<TR><TD><a href="../index.htm#Latitude-2003-06-13">Latitude</a></TD> <TD><a href="../index.htm#DecimalLatitude-2008-11-19">DecimalLatitude</a></TD>
|
||||
<TR><TD><a href="../index.htm#CoordinatePrecision-2003-06-13">CoordinatePrecision</a></TD> <TD><a href="../index.htm#CoordinatePrecision-2008-11-19">CoordinatePrecision</a></TD>
|
||||
<TR><TD><a href="../index.htm#BoundingBox-2003-06-13">BoundingBox</a></TD> <TD><a href="../index.htm#FootprintWKT-2008-11-19">FootprintWKT</a></TD>
|
||||
<TR><TD><a href="../index.htm#MinimumElevation-2003-06-13">MinimumElevation</a></TD> <TD><a href="../index.htm#MinimumElevationInMeters-2008-11-19">MinimumElevationInMeters</a></TD>
|
||||
<TR><TD><a href="../index.htm#MaximumElevation-2003-06-13">MaximumElevation</a></TD> <TD><a href="../index.htm#MaximumElevationInMeters-2008-11-19">MaximumElevationInMeters</a></TD>
|
||||
<TR><TD><a href="../index.htm#MinimumDepth-2003-06-13">MinimumDepth</a></TD> <TD><a href="../index.htm#MinimumDepthInMeters-2008-11-19">MinimumDepthInMeters</a></TD>
|
||||
<TR><TD><a href="../index.htm#MaximumDepth-2003-06-13">MaximumDepth</a></TD> <TD><a href="../index.htm#MaximumDepthInMeters-2008-11-19">MaximumDepthInMeters</a></TD>
|
||||
<TR><TD><a href="../index.htm#Sex-2003-06-13">Sex</a></TD> <TD><a href="../index.htm#Sex-2008-11-19">Sex</a></TD>
|
||||
<TR><TD><a href="../index.htm#PreparationType-2003-06-13">PreparationType</a></TD> <TD><a href="../index.htm#Preparations-2008-11-19">Preparations</a></TD>
|
||||
<TR><TD><a href="../index.htm#IndividualCount-2003-06-13">IndividualCount</a></TD> <TD><a href="../index.htm#IndividualCount-2008-11-19">IndividualCount</a></TD>
|
||||
<TR><TD><a href="../index.htm#PreviousCatalogNumber-2003-06-13">PreviousCatalogNumber</a></TD> <TD><a href="../index.htm#OtherCatalogNumbers-2008-11-19">OtherCatalogNumbers</a></TD>
|
||||
<TR><TD><a href="../index.htm#RelatedCatalogItem-2003-06-13">RelatedCatalogItem</a></TD> <TD><a href="../index.htm#AssociatedSamples-2008-11-19">AssociatedSamples</a></TD>
|
||||
<TR><TD><a href="../index.htm#Notes-2003-06-13">Notes</a></TD> <TD><a href="../index.htm#Remarks-2008-11-19">Remarks</a></TD>
|
||||
|
||||
</TBODY></TABLE>
|
||||
|
||||
<A name=dwcmanis" id="dwcmanis"></A>
|
||||
<H3>3.2 Darwin Core 1.21 (MaNIS/HerpNet/ORNIS/FishNet2)</H3>
|
||||
<TABLE class="border" cellspacing="0"><TBODY>
|
||||
<TR><TH colspan="1">Darwin Core 1.21 Element</TH><TH colspan="1">Recommended Term</TH></TR>
|
||||
|
||||
<TR><TD><a href="../index.htm#DateLastModified-2003-06-17">DateLastModified</a></TD> <TD><a href="../index.htm#http://dublincore.org/usage/terms/history/#modified-003">dcterms:modified</a></TD>
|
||||
<TR><TD><a href="../index.htm#BasisOfRecord-2003-06-17">BasisOfRecord</a></TD> <TD><a href="../index.htm#BasisOfRecord-2008-11-19">BasisOfRecord</a></TD>
|
||||
<TR><TD><a href="../index.htm#InstitutionCode-2003-06-17">InstitutionCode</a></TD> <TD><a href="../index.htm#InstitutionCode-2008-11-19">InstitutionCode</a></TD>
|
||||
<TR><TD><a href="../index.htm#CollectionCode-2003-06-17">CollectionCode</a></TD> <TD><a href="../index.htm#CollectionCode-2008-11-19">CollectionCode</a></TD>
|
||||
<TR><TD><a href="../index.htm#CatalogNumberText-2003-06-17">CatalogNumberText</a></TD> <TD><a href="../index.htm#CatalogNumber-2008-11-19">CatalogNumber</a></TD>
|
||||
<TR><TD><a href="../index.htm#CatalogNumberNumeric-2003-06-17">CatalogNumberNumeric</a></TD> <TD><a href="../index.htm#CatalogNumberNumeric-2008-11-19">CatalogNumberNumeric</a></TD>
|
||||
<TR><TD><a href="../index.htm#Collector-2003-06-17">Collector</a></TD> <TD><a href="../index.htm#Collector-2008-11-19">Collector</a></TD>
|
||||
<TR><TD><a href="../index.htm#CollectorNumber-2003-06-17">CollectorNumber</a></TD> <TD><a href="../index.htm#CollectorNumber-2008-11-19">CollectorNumber</a></TD>
|
||||
<TR><TD><a href="../index.htm#FieldNumber-2003-06-17">FieldNumber</a></TD> <TD><a href="../index.htm#FieldNumber-2008-11-19">FieldNumber</a></TD>
|
||||
<TR><TD><a href="../index.htm#MonthCollected-2003-06-17">MonthCollected</a></TD> <TD><a href="../index.htm#MonthOfYear-2008-11-19">MonthOfYear</a></TD>
|
||||
<TR><TD><a href="../index.htm#DayCollected-2003-06-17">DayCollected</a></TD> <TD><a href="../index.htm#DayOfMonth-2008-11-19">DayOfMonth</a></TD>
|
||||
<TR><TD><a href="../index.htm#VerbatimCollectingDate-2003-06-17">VerbatimCollectingDate</a></TD> <TD><a href="../index.htm#VerbatimCollectingDate-2008-11-19">VerbatimCollectingDate</a></TD>
|
||||
<TR><TD><a href="../index.htm#FieldNotes-2003-06-17">FieldNotes</a></TD> <TD><a href="../index.htm#FieldNotes-2008-11-19">FieldNotes</a></TD>
|
||||
<TR><TD><a href="../index.htm#HigherGeography-2003-06-17">HigherGeography</a></TD> <TD><a href="../index.htm#HigherGeography-2008-11-19">HigherGeography</a></TD>
|
||||
<TR><TD><a href="../index.htm#IslandGroup-2003-06-17">IslandGroup</a></TD> <TD><a href="../index.htm#IslandGroup-2008-11-19">IslandGroup</a></TD>
|
||||
<TR><TD><a href="../index.htm#Island-2003-06-17">Island</a></TD> <TD><a href="../index.htm#Island-2008-11-19">Island</a></TD>
|
||||
<TR><TD><a href="../index.htm#Country-2003-06-17">Country</a></TD> <TD><a href="../index.htm#Country-2008-11-19">Country</a></TD>
|
||||
<TR><TD><a href="../index.htm#StateProvince-2003-06-17">StateProvince</a></TD> <TD><a href="../index.htm#StateProvince-2008-11-19">StateProvince</a></TD>
|
||||
<TR><TD><a href="../index.htm#County-2003-06-17">County</a></TD> <TD><a href="../index.htm#County-2008-11-19">County</a></TD>
|
||||
<TR><TD><a href="../index.htm#Locality-2003-06-17">Locality</a></TD> <TD><a href="../index.htm#Locality-2008-11-19">Locality</a></TD>
|
||||
<TR><TD><a href="../index.htm#DecimalLatitude-2003-06-17">DecimalLatitude</a></TD> <TD><a href="../index.htm#DecimalLatitude-2008-11-19">DecimalLatitude</a></TD>
|
||||
<TR><TD><a href="../index.htm#DecimalLongitude-2003-06-17">DecimalLongitude</a></TD> <TD><a href="../index.htm#DecimalLongitude-2008-11-19">DecimalLongitude</a></TD>
|
||||
<TR><TD><a href="../index.htm#HorizontalDatum-2003-06-17">HorizontalDatum</a></TD> <TD><a href="../index.htm#GeodeticDatum-2008-11-19">GeodeticDatum</a></TD>
|
||||
<TR><TD><a href="../index.htm#OriginalCoordinateSystem-2003-06-17">OriginalCoordinateSystem</a></TD> <TD><a href="../index.htm#VerbatimCoordinateSystem-2008-11-19">VerbatimCoordinateSystem</a></TD>
|
||||
<TR><TD><a href="../index.htm#VerbatimLatitude-2003-06-17">VerbatimLatitude</a></TD> <TD><a href="../index.htm#VerbatimLatitude-2008-11-19">VerbatimLatitude</a></TD>
|
||||
<TR><TD><a href="../index.htm#VerbatimLongitude-2003-06-17">VerbatimLongitude</a></TD> <TD><a href="../index.htm#VerbatimLongitude-2008-11-19">VerbatimLongitude</a></TD>
|
||||
<TR><TD><a href="../index.htm#GeorefMethod-2003-06-17">GeorefMethod</a></TD> <TD><a href="../index.htm#GeoreferenceProtocol-2008-11-19">GeoreferenceProtocol</a></TD>
|
||||
<TR><TD><a href="../index.htm#CoordinateUncertaintyInMeters-2003-06-17">CoordinateUncertaintyInMeters</a></TD> <TD><a href="../index.htm#CoordinateUncertaintyInMeters-2008-11-19">CoordinateUncertaintyInMeters</a></TD>
|
||||
<TR><TD><a href="../index.htm#LatLongComments-2003-06-17">LatLongComments</a></TD> <TD><a href="../index.htm#GeoreferenceRemarks-2008-11-19">GeoreferenceRemarks</a></TD>
|
||||
<TR><TD><a href="../index.htm#BoundingBox-2003-06-17">BoundingBox</a></TD> <TD><a href="../index.htm#FootprintWKT-2008-11-19">FootprintWKT</a></TD>
|
||||
<TR><TD><a href="../index.htm#MinimumElevationInMeters-2003-06-17">MinimumElevationInMeters</a></TD> <TD><a href="../index.htm#MinimumElevationInMeters-2008-11-19">MinimumElevationInMeters</a></TD>
|
||||
<TR><TD><a href="../index.htm#MaximumElevationInMeters-2003-06-17">MaximumElevationInMeters</a></TD> <TD><a href="../index.htm#MaximumElevationInMeters-2008-11-19">MaximumElevationInMeters</a></TD>
|
||||
<TR><TD><a href="../index.htm#VerbatimElevation-2003-06-17">VerbatimElevation</a></TD> <TD><a href="../index.htm#VerbatimElevation-2008-11-19">VerbatimElevation</a></TD>
|
||||
<TR><TD><a href="../index.htm#MinimumDepthInMeters-2003-06-17">MinimumDepthInMeters</a></TD> <TD><a href="../index.htm#MinimumDepthInMeters-2008-11-19">MinimumDepthInMeters</a></TD>
|
||||
<TR><TD><a href="../index.htm#MaximumDepthInMeters-2003-06-17">MaximumDepthInMeters</a></TD> <TD><a href="../index.htm#MaximumDepthInMeters-2008-11-19">MaximumDepthInMeters</a></TD>
|
||||
<TR><TD><a href="../index.htm#VerbatimDepth-2003-06-17">VerbatimDepth</a></TD> <TD><a href="../index.htm#VerbatimDepth-2008-11-19">VerbatimDepth</a></TD>
|
||||
<TR><TD><a href="../index.htm#ScientificName-2003-06-17">ScientificName</a></TD> <TD><a href="../index.htm#ScientificName-2008-11-19">ScientificName</a></TD>
|
||||
<TR><TD><a href="../index.htm#HigherTaxon-2003-06-17">HigherTaxon</a></TD> <TD><a href="../index.htm#HigherTaxon-2008-11-19">HigherTaxon</a></TD>
|
||||
<TR><TD><a href="../index.htm#Kingdom-2003-06-17">Kingdom</a></TD> <TD><a href="../index.htm#Kingdom-2008-11-19">Kingdom</a></TD>
|
||||
<TR><TD><a href="../index.htm#Phylum-2003-06-17">Phylum</a></TD> <TD><a href="../index.htm#Phylum-2008-11-19">Phylum</a></TD>
|
||||
<TR><TD><a href="../index.htm#Class-2003-06-17">Class</a></TD> <TD><a href="../index.htm#Class-2008-11-19">Class</a></TD>
|
||||
<TR><TD><a href="../index.htm#Order-2003-06-17">Order</a></TD> <TD><a href="../index.htm#Order-2008-11-19">Order</a></TD>
|
||||
<TR><TD><a href="../index.htm#Family-2003-06-17">Family</a></TD> <TD><a href="../index.htm#Family-2008-11-19">Family</a></TD>
|
||||
<TR><TD><a href="../index.htm#Genus-2003-06-17">Genus</a></TD> <TD><a href="../index.htm#Genus-2008-11-19">Genus</a></TD>
|
||||
<TR><TD><a href="../index.htm#Species-2003-06-17">Species</a></TD> <TD><a href="../index.htm#SpecificEpithet-2008-11-19">SpecificEpithet</a></TD>
|
||||
<TR><TD><a href="../index.htm#Subspecies-2003-06-17">Subspecies</a></TD> <TD><a href="../index.htm#InfraspecificEpithet-2008-11-19">InfraspecificEpithet</a></TD>
|
||||
<TR><TD><a href="../index.htm#ScientificNameAuthor-2003-06-17">ScientificNameAuthor</a></TD> <TD><a href="../index.htm#ScientificNameAuthorship-2008-11-19">ScientificNameAuthorship</a></TD>
|
||||
<TR><TD><a href="../index.htm#IdentifiedBy-2003-06-17">IdentifiedBy</a></TD> <TD><a href="../index.htm#IdentifiedBy-2008-11-19">IdentifiedBy</a></TD>
|
||||
<TR><TD><a href="../index.htm#IdentificationModifier-2003-06-17">IdentificationModifier</a></TD> <TD><a href="../index.htm#IdentificationQualifier-2008-11-19">IdentificationQualifier</a></TD>
|
||||
<TR><TD><a href="../index.htm#YearIdentified-2003-06-17">YearIdentified</a></TD> <TD><a href="../index.htm#DateIdentified-2008-11-19">DateIdentified</a></TD>
|
||||
<TR><TD><a href="../index.htm#DayIdentified-2003-06-17">DayIdentified</a></TD> <TD><a href="../index.htm#DateIdentified-2008-11-19">DateIdentified</a></TD>
|
||||
<TR><TD><a href="../index.htm#TypeStatus-2003-06-17">TypeStatus</a></TD> <TD><a href="../index.htm#TypeStatus-2008-11-19">TypeStatus</a></TD>
|
||||
<TR><TD><a href="../index.htm#Sex-2003-06-17">Sex</a></TD> <TD><a href="../index.htm#Sex-2008-11-19">Sex</a></TD>
|
||||
<TR><TD><a href="../index.htm#Preparations-2003-06-17">Preparations</a></TD> <TD><a href="../index.htm#Preparations-2008-11-19">Preparations</a></TD>
|
||||
<TR><TD><a href="../index.htm#Tissues-2003-06-17">Tissues</a></TD> <TD><a href="../index.htm#Preparations-2008-11-19">Preparations</a></TD>
|
||||
<TR><TD><a href="../index.htm#IndividualCount-2003-06-17">IndividualCount</a></TD> <TD><a href="../index.htm#IndividualCount-2008-11-19">IndividualCount</a></TD>
|
||||
<TR><TD><a href="../index.htm#AgeClass-2003-06-17">AgeClass</a></TD> <TD><a href="../index.htm#LifeStage-2008-11-19">LifeStage</a></TD>
|
||||
<TR><TD><a href="../index.htm#GenBankNum-2003-06-17">GenBankNum</a></TD> <TD><a href="../index.htm#AssociatedSequences-2008-11-19">AssociatedSequences</a></TD>
|
||||
<TR><TD><a href="../index.htm#OtherCatalogNumbers-2003-06-17">OtherCatalogNumbers</a></TD> <TD><a href="../index.htm#OtherCatalogNumbers-2008-11-19">OtherCatalogNumbers</a></TD>
|
||||
<TR><TD><a href="../index.htm#RelatedCatalogedItems-2003-06-17">RelatedCatalogedItems</a></TD> <TD><a href="../index.htm#AssociatedSamples-2008-11-19">AssociatedSamples</a></TD>
|
||||
<TR><TD><a href="../index.htm#Remarks-2003-06-17">Remarks</a></TD> <TD><a href="../index.htm#Remarks-2008-11-19">Remarks</a></TD>
|
||||
|
||||
</TBODY></TABLE>
|
||||
|
||||
<A name=dwcobis" id="dwcobis"></A>
|
||||
<H3>3.3 OBIS extension</H3>
|
||||
<TABLE class="border" cellspacing="0"><TBODY>
|
||||
<TR><TH colspan="1">OBIS Element</TH><TH colspan="1">Recommended Term</TH></TR>
|
||||
|
||||
<TR><TD><a href="../index.htm#RecordURL-2005-07-10">RecordURL</a></TD> <TD><a href="../index.htm#SampleDetails-2008-11-19">SampleDetails</a></TD>
|
||||
<TR><TD><a href="../index.htm#Citation-2005-07-10">Citation</a></TD> <TD><a href="../index.htm#Citation-2008-11-19">Citation</a></TD>
|
||||
<TR><TD><a href="../index.htm#Subgenus-2005-07-10">Subgenus</a></TD> <TD><a href="../index.htm#Subgenus-2008-11-19">Subgenus</a></TD>
|
||||
<TR><TD><a href="../index.htm#StartYearCollected-2005-07-10">StartYearCollected</a></TD> <TD><a href="../index.htm#EarliestDateCollected-2008-11-19">EarliestDateCollected</a></TD>
|
||||
<TR><TD><a href="../index.htm#EndYearCollected-2005-07-10">EndYearCollected</a></TD> <TD><a href="../index.htm#LatestDateCollected-2008-11-19">LatestDateCollected</a></TD>
|
||||
<TR><TD><a href="../index.htm#StartMonthCollected-2005-07-10">StartMonthCollected</a></TD> <TD><a href="../index.htm#EarliestDateCollected-2008-11-19">EarliestDateCollected</a></TD>
|
||||
<TR><TD><a href="../index.htm#EndMonthCollected-2005-07-10">EndMonthCollected</a></TD> <TD><a href="../index.htm#LatestDateCollected-2008-11-19">LatestDateCollected</a></TD>
|
||||
<TR><TD><a href="../index.htm#StartDayCollected-2005-07-10">StartDayCollected</a></TD> <TD><a href="../index.htm#EarliestDateCollected-2008-11-19">EarliestDateCollected</a></TD>
|
||||
<TR><TD><a href="../index.htm#EndDayCollected-2005-07-10">EndDayCollected</a></TD> <TD><a href="../index.htm#LatestDateCollected-2008-11-19">LatestDateCollected</a></TD>
|
||||
<TR><TD><a href="../index.htm#StartJulianDay-2005-07-10">StartJulianDay</a></TD> <TD><a href="../index.htm#StartDayOfYear-2008-11-19">StartDayOfYear</a></TD>
|
||||
<TR><TD><a href="../index.htm#EndJulianDay-2005-07-10">EndJulianDay</a></TD> <TD><a href="../index.htm#EndDayOfYear-2008-11-19">EndDayOfYear</a></TD>
|
||||
<TR><TD><a href="../index.htm#StartTimeOfDay-2005-07-10">StartTimeOfDay</a></TD> <TD><a href="../index.htm#StartTimeOfDay-2008-11-19">StartTimeOfDay</a></TD>
|
||||
<TR><TD><a href="../index.htm#EndTimeOfDay-2005-07-10">EndTimeOfDay</a></TD> <TD><a href="../index.htm#EndTimeOfDay-2008-11-19">EndTimeOfDay</a></TD>
|
||||
<TR><TD><a href="../index.htm#StartLongitude-2005-07-10">StartLongitude</a></TD> <TD><a href="../index.htm#FootprintWKT-2008-11-19">FootprintWKT</a></TD>
|
||||
<TR><TD><a href="../index.htm#EndLongitude-2005-07-10">EndLongitude</a></TD> <TD><a href="../index.htm#FootprintWKT-2008-11-19">FootprintWKT</a></TD>
|
||||
<TR><TD><a href="../index.htm#StartLatitude-2005-07-10">StartLatitude</a></TD> <TD><a href="../index.htm#FootprintWKT-2008-11-19">FootprintWKT</a></TD>
|
||||
<TR><TD><a href="../index.htm#EndLatitude-2005-07-10">EndLatitude</a></TD> <TD><a href="../index.htm#FootprintWKT-2008-11-19">FootprintWKT</a></TD>
|
||||
<TR><TD><a href="../index.htm#Start_EndCoordinatePrecision-2005-07-10">Start_EndCoordinatePrecision</a></TD> <TD><a href="../index.htm#CoordinateUncertaintyInMeters-2008-11-19">CoordinateUncertaintyInMeters</a></TD>
|
||||
<TR><TD><a href="../index.htm#DepthRange-2005-07-10">DepthRange</a></TD> <TD><a href="../index.htm#VerbatimDepth-2008-11-19">VerbatimDepth</a></TD>
|
||||
<TR><TD><a href="../index.htm#Temperature-2005-07-10">Temperature</a></TD> <TD><a href="../index.htm#SamplingEventAttributes-2008-11-19">SamplingEventAttributes</a></TD>
|
||||
<TR><TD><a href="../index.htm#Lifestage-2005-07-10">Lifestage</a></TD> <TD><a href="../index.htm#Lifestage-2008-11-19">LifeStage</a></TD>
|
||||
<TR><TD><a href="../index.htm#ObservedIndividualCount-2005-07-10">ObservedIndividualCount</a></TD> <TD><a href="../index.htm#IndividualCount-2008-11-19">IndividualCount</a></TD>
|
||||
<TR><TD><a href="../index.htm#SampleSize-2005-07-10">SampleSize</a></TD> <TD><a href="../index.htm#SamplingEventAttributes-2008-11-19">SamplingEventAttributes</a></TD>
|
||||
<TR><TD><a href="../index.htm#ObservedWeight-2005-07-10">ObservedWeight</a></TD> <TD><a href="../index.htm#SampleAttributes-2008-11-19">SampleAttributes</a></TD>
|
||||
<TR><TD><a href="../index.htm#GMLFeature-2005-07-10">GMLFeature</a></TD> <TD><a href="../index.htm#FootprintWKT-2008-11-19">FootprintWKT</a></TD>
|
||||
|
||||
</TBODY></TABLE>
|
||||
|
||||
<A name=dwcdraft14" id="dwcdraft14"></A>
|
||||
<H3>3.4 Darwin Core 1.4 (Draft Standard)</H3>
|
||||
<TABLE class="border" cellspacing="0"><TBODY>
|
||||
<TR><TH colspan="1">Darwin Core 1.4 Element</TH><TH colspan="1">Recommended Term</TH></TR>
|
||||
|
||||
<TR><TD><a href="../index.htm#GlobalUniqueIdentifier-2007-04-17">GlobalUniqueIdentifier</a></TD> <TD><a href="../index.htm#SampleID-2008-11-19">SampleID</a></TD>
|
||||
<TR><TD><a href="../index.htm#DateLastModified-2007-04-17">DateLastModified</a></TD> <TD><a href="../index.htm#http://dublincore.org/usage/terms/history/#modified-003">dcterms:modified</a></TD>
|
||||
<TR><TD><a href="../index.htm#BasisOfRecord-2007-04-17">BasisOfRecord</a></TD> <TD><a href="../index.htm#BasisOfRecord-2008-11-19">BasisOfRecord</a></TD>
|
||||
<TR><TD><a href="../index.htm#InstitutionCode-2007-04-17">InstitutionCode</a></TD> <TD><a href="../index.htm#InstitutionCode-2008-11-19">InstitutionCode</a></TD>
|
||||
<TR><TD><a href="../index.htm#CollectionCode-2007-04-17">CollectionCode</a></TD> <TD><a href="../index.htm#CollectionCode-2008-11-19">CollectionCode</a></TD>
|
||||
<TR><TD><a href="../index.htm#CatalogNumber-2007-04-17">CatalogNumber</a></TD> <TD><a href="../index.htm#CatalogNumber-2008-11-19">CatalogNumber</a></TD>
|
||||
<TR><TD><a href="../index.htm#InformationWithheld-2007-04-17">InformationWithheld</a></TD> <TD><a href="../index.htm#InformationWithheld-2008-11-19">InformationWithheld</a></TD>
|
||||
<TR><TD><a href="../index.htm#Remarks-2007-04-17">Remarks</a></TD> <TD><a href="../index.htm#Remarks-2008-11-19">Remarks</a></TD>
|
||||
<TR><TD><a href="../index.htm#ScientificName-2007-04-17">ScientificName</a></TD> <TD><a href="../index.htm#ScientificName-2008-11-19">ScientificName</a></TD>
|
||||
<TR><TD><a href="../index.htm#HigherTaxon-2007-04-17">HigherTaxon</a></TD> <TD><a href="../index.htm#HigherTaxon-2008-11-19">HigherTaxon</a></TD>
|
||||
<TR><TD><a href="../index.htm#Kingdom-2007-04-17">Kingdom</a></TD> <TD><a href="../index.htm#Kingdom-2008-11-19">Kingdom</a></TD>
|
||||
<TR><TD><a href="../index.htm#Phylum-2007-04-17">Phylum</a></TD> <TD><a href="../index.htm#Phylum-2008-11-19">Phylum</a></TD>
|
||||
<TR><TD><a href="../index.htm#Class-2007-04-17">Class</a></TD> <TD><a href="../index.htm#Class-2008-11-19">Class</a></TD>
|
||||
<TR><TD><a href="../index.htm#Order-2007-04-17">Order</a></TD> <TD><a href="../index.htm#Order-2008-11-19">Order</a></TD>
|
||||
<TR><TD><a href="../index.htm#Family-2007-04-17">Family</a></TD> <TD><a href="../index.htm#Family-2008-11-19">Family</a></TD>
|
||||
<TR><TD><a href="../index.htm#Genus-2007-04-17">Genus</a></TD> <TD><a href="../index.htm#Genus-2008-11-19">Genus</a></TD>
|
||||
<TR><TD><a href="../index.htm#SpecificEpithet-2007-04-17">SpecificEpithet</a></TD> <TD><a href="../index.htm#SpecificEpithet-2008-11-19">SpecificEpithet</a></TD>
|
||||
<TR><TD><a href="../index.htm#InfraspecificRank-2007-04-17">InfraspecificRank</a></TD> <TD><a href="../index.htm#TaxonRank-2008-11-19">TaxonRank</a></TD>
|
||||
<TR><TD><a href="../index.htm#InfraspecificEpithet-2007-04-17">InfraspecificEpithet</a></TD> <TD><a href="../index.htm#InfraspecificEpithet-2008-11-19">InfraspecificEpithet</a></TD>
|
||||
<TR><TD><a href="../index.htm#AuthorYearOfScientificName-2007-04-17">AuthorYearOfScientificName</a></TD> <TD><a href="../index.htm#ScientificNameAuthorship-2008-11-19">ScientificNameAuthorship</a></TD>
|
||||
<TR><TD><a href="../index.htm#NomenclaturalCode-2007-04-17">NomenclaturalCode</a></TD> <TD><a href="../index.htm#NomenclaturalCode-2008-11-19">NomenclaturalCode</a></TD>
|
||||
<TR><TD><a href="../index.htm#IdentificationQualifier-2007-04-17">IdentificationQualifier</a></TD> <TD><a href="../index.htm#IdentificationQualifier-2008-11-19">IdentificationQualifier</a></TD>
|
||||
<TR><TD><a href="../index.htm#HigherGeography-2007-04-17">HigherGeography</a></TD> <TD><a href="../index.htm#HigherGeography-2008-11-19">HigherGeography</a></TD>
|
||||
<TR><TD><a href="../index.htm#Continent-2007-04-17">Continent</a></TD> <TD><a href="../index.htm#Continent-2008-11-19">Continent</a></TD>
|
||||
<TR><TD><a href="../index.htm#WaterBody-2007-04-17">WaterBody</a></TD> <TD><a href="../index.htm#WaterBody-2008-11-19">Waterbody</a></TD>
|
||||
<TR><TD><a href="../index.htm#IslandGroup-2007-04-17">IslandGroup</a></TD> <TD><a href="../index.htm#IslandGroup-2008-11-19">IslandGroup</a></TD>
|
||||
<TR><TD><a href="../index.htm#Island-2007-04-17">Island</a></TD> <TD><a href="../index.htm#Island-2008-11-19">Island</a></TD>
|
||||
<TR><TD><a href="../index.htm#Country-2007-04-17">Country</a></TD> <TD><a href="../index.htm#Country-2008-11-19">Country</a></TD>
|
||||
<TR><TD><a href="../index.htm#StateProvince-2007-04-17">StateProvince</a></TD> <TD><a href="../index.htm#StateProvince-2008-11-19">StateProvince</a></TD>
|
||||
<TR><TD><a href="../index.htm#County-2007-04-17">County</a></TD> <TD><a href="../index.htm#County-2008-11-19">County</a></TD>
|
||||
<TR><TD><a href="../index.htm#Locality-2007-04-17">Locality</a></TD> <TD><a href="../index.htm#Locality-2008-11-19">Locality</a></TD>
|
||||
<TR><TD><a href="../index.htm#MinimumElevationInMeters-2007-04-17">MinimumElevationInMeters</a></TD> <TD><a href="../index.htm#MinimumElevationInMeters-2008-11-19">MinimumElevationInMeters</a></TD>
|
||||
<TR><TD><a href="../index.htm#MaximumElevationInMeters-2007-04-17">MaximumElevationInMeters</a></TD> <TD><a href="../index.htm#MaximumElevationInMeters-2008-11-19">MaximumElevationInMeters</a></TD>
|
||||
<TR><TD><a href="../index.htm#MinimumDepthInMeters-2007-04-17">MinimumDepthInMeters</a></TD> <TD><a href="../index.htm#MinimumDepthInMeters-2008-11-19">MinimumDepthInMeters</a></TD>
|
||||
<TR><TD><a href="../index.htm#MaximumDepthInMeters-2007-04-17">MaximumDepthInMeters</a></TD> <TD><a href="../index.htm#MaximumDepthInMeters-2008-11-19">MaximumDepthInMeters</a></TD>
|
||||
<TR><TD><a href="../index.htm#CollectingMethod-2007-04-17">CollectingMethod</a></TD> <TD><a href="../index.htm#SamplingProtocol-2008-11-19">SamplingProtocol</a></TD>
|
||||
<TR><TD><a href="../index.htm#ValidDistributionFlag-2007-04-17">ValidDistributionFlag</a></TD> <TD><a href="../index.htm#SamplingProtocol-2008-11-19">SamplingProtocol</a></TD>
|
||||
<TR><TD><a href="../index.htm#EarliestDateCollected-2007-04-17">EarliestDateCollected</a></TD> <TD><a href="../index.htm#EarliestDateCollected-2008-11-19">EarliestDateCollected</a></TD>
|
||||
<TR><TD><a href="../index.htm#LatestDateCollected-2007-04-17">LatestDateCollected</a></TD> <TD><a href="../index.htm#LatestDateCollected-2008-11-19">LatestDateCollected</a></TD>
|
||||
<TR><TD><a href="../index.htm#Collector-2007-04-17">Collector</a></TD> <TD><a href="../index.htm#Collector-2008-11-19">Collector</a></TD>
|
||||
<TR><TD><a href="../index.htm#Sex-2007-04-17">Sex</a></TD> <TD><a href="../index.htm#Sex-2008-11-19">Sex</a></TD>
|
||||
<TR><TD><a href="../index.htm#LifeStage-2007-04-17">LifeStage</a></TD> <TD><a href="../index.htm#LifeStage-2008-11-19">LifeStage</a></TD>
|
||||
<TR><TD><a href="../index.htm#Attributes-2007-04-17">Attributes</a></TD> <TD><a href="../index.htm#SampleAttributes-2008-11-19">SampleAttributes</a></TD>
|
||||
<TR><TD><a href="../index.htm#ImageURL-2007-04-17">ImageURL</a></TD> <TD><a href="../index.htm#AssociatedMedia-2008-11-19">AssociatedMedia</a></TD>
|
||||
<TR><TD><a href="../index.htm#RelatedInformation-2007-04-17">RelatedInformation</a></TD> <TD><a href="../index.htm#SampleDetails-2008-11-19">SampleDetails</a></TD>
|
||||
|
||||
</TBODY></TABLE>
|
||||
|
||||
<A name=dwccuratorial" id="dwccuratorial"></A>
|
||||
<H3>3.5 Darwin Core 1.4 Curatorial extension</H3>
|
||||
<TABLE class="border" cellspacing="0"><TBODY>
|
||||
<TR><TH colspan="1">Darwin Core 1.4 Curatorial Element</TH><TH colspan="1">Recommended Term</TH></TR>
|
||||
|
||||
<TR><TD><a href="../index.htm#CatalogNumberNumeric-2007-04-17">CatalogNumberNumeric</a></TD> <TD><a href="../index.htm#CatalogNumberNumeric-2008-11-19">CatalogNumberNumeric</a></TD>
|
||||
<TR><TD><a href="../index.htm#IdentifiedBy-2007-04-17">IdentifiedBy</a></TD> <TD><a href="../index.htm#IdentifiedBy-2008-11-19">IdentifiedBy</a></TD>
|
||||
<TR><TD><a href="../index.htm#DateIdentified-2007-04-17">DateIdentified</a></TD> <TD><a href="../index.htm#DateIdentified-2008-11-19">DateIdentified</a></TD>
|
||||
<TR><TD><a href="../index.htm#CollectorNumber-2007-04-17">CollectorNumber</a></TD> <TD><a href="../index.htm#CollectorNumber-2008-11-19">CollectorNumber</a></TD>
|
||||
<TR><TD><a href="../index.htm#FieldNumber-2007-04-17">FieldNumber</a></TD> <TD><a href="../index.htm#FieldNumber-2008-11-19">FieldNumber</a></TD>
|
||||
<TR><TD><a href="../index.htm#FieldNotes-2007-04-17">FieldNotes</a></TD> <TD><a href="../index.htm#FieldNotes-2008-11-19">FieldNotes</a></TD>
|
||||
<TR><TD><a href="../index.htm#VerbatimCollectingDate-2007-04-17">VerbatimCollectingDate</a></TD> <TD><a href="../index.htm#VerbatimCollectingDate-2008-11-19">VerbatimCollectingDate</a></TD>
|
||||
<TR><TD><a href="../index.htm#VerbatimElevation-2007-04-17">VerbatimElevation</a></TD> <TD><a href="../index.htm#VerbatimElevation-2008-11-19">VerbatimElevation</a></TD>
|
||||
<TR><TD><a href="../index.htm#VerbatimDepth-2007-04-17">VerbatimDepth</a></TD> <TD><a href="../index.htm#VerbatimDepth-2008-11-19">VerbatimDepth</a></TD>
|
||||
<TR><TD><a href="../index.htm#Preparations-2007-04-17">Preparations</a></TD> <TD><a href="../index.htm#Preparations-2008-11-19">Preparations</a></TD>
|
||||
<TR><TD><a href="../index.htm#TypeStatus-2007-04-17">TypeStatus</a></TD> <TD><a href="../index.htm#TypeStatus-2008-11-19">TypeStatus</a></TD>
|
||||
<TR><TD><a href="../index.htm#GenBankNumber-2007-04-17">GenBankNumber</a></TD> <TD><a href="../index.htm#AssociatedSequences-2008-11-19">AssociatedSequences</a></TD>
|
||||
<TR><TD><a href="../index.htm#OtherCatalogNumbers-2007-04-17">OtherCatalogNumbers</a></TD> <TD><a href="../index.htm#OtherCatalogNumbers-2008-11-19">OtherCatalogNumbers</a></TD>
|
||||
<TR><TD><a href="../index.htm#RelatedCatalogedItems-2007-04-17">RelatedCatalogedItems</a></TD> <TD><a href="../index.htm#AssociatedSamples-2008-11-19">AssociatedSamples</a></TD>
|
||||
<TR><TD><a href="../index.htm#Disposition-2007-04-17">Disposition</a></TD> <TD><a href="../index.htm#Disposition-2008-11-19">Disposition</a></TD>
|
||||
<TR><TD><a href="../index.htm#IndividualCount-2007-04-17">IndividualCount</a></TD> <TD><a href="../index.htm#IndividualCount-2008-11-19">IndividualCount</a></TD>
|
||||
|
||||
</TBODY></TABLE>
|
||||
|
||||
<A name=dwcgeospatial" id="dwcgeospatial"></A>
|
||||
<H3>3.6 Darwin Core 1.4 Geospatial extension</H3>
|
||||
<TABLE class="border" cellspacing="0"><TBODY>
|
||||
<TR><TH colspan="1">Darwin Core 1.4 Geospatial Element</TH><TH colspan="1">Recommended Term</TH></TR>
|
||||
|
||||
<TR><TD><a href="../index.htm#DecimalLatitude-2007-04-17">DecimalLatitude</a></TD> <TD><a href="../index.htm#DecimalLatitude-2008-11-19">DecimalLatitude</a></TD>
|
||||
<TR><TD><a href="../index.htm#DecimalLongitude-2007-04-17">DecimalLongitude</a></TD> <TD><a href="../index.htm#DecimalLongitude-2008-11-19">DecimalLongitude</a></TD>
|
||||
<TR><TD><a href="../index.htm#GeodeticDatum-2007-04-17">GeodeticDatum</a></TD> <TD><a href="../index.htm#GeodeticDatum-2008-11-19">GeodeticDatum</a></TD>
|
||||
<TR><TD><a href="../index.htm#CoordinateUncertaintyInMeters-2007-04-17">CoordinateUncertaintyInMeters</a></TD> <TD><a href="../index.htm#CoordinateUncertaintyInMeters-2008-11-19">CoordinateUncertaintyInMeters</a></TD>
|
||||
<TR><TD><a href="../index.htm#PointRadiusSpatialFit-2007-04-17">PointRadiusSpatialFit</a></TD> <TD><a href="../index.htm#PointRadiusSpatialFit-2008-11-19">PointRadiusSpatialFit</a></TD>
|
||||
<TR><TD><a href="../index.htm#VerbatimCoordinates-2007-04-17">VerbatimCoordinates</a></TD> <TD><a href="../index.htm#VerbatimCoordinates-2008-11-19">VerbatimCoordinates</a></TD>
|
||||
<TR><TD><a href="../index.htm#VerbatimLatitude-2007-04-17">VerbatimLatitude</a></TD> <TD><a href="../index.htm#VerbatimLatitude-2008-11-19">VerbatimLatitude</a></TD>
|
||||
<TR><TD><a href="../index.htm#VerbatimLongitude-2007-04-17">VerbatimLongitude</a></TD> <TD><a href="../index.htm#VerbatimLongitude-2008-11-19">VerbatimLongitude</a></TD>
|
||||
<TR><TD><a href="../index.htm#VerbatimCoordinateSystem-2007-04-17">VerbatimCoordinateSystem</a></TD> <TD><a href="../index.htm#VerbatimCoordinateSystem-2008-11-19">VerbatimCoordinateSystem</a></TD>
|
||||
<TR><TD><a href="../index.htm#GeoreferenceProtocol-2007-04-17">GeoreferenceProtocol</a></TD> <TD><a href="../index.htm#GeoreferenceProtocol-2008-11-19">GeoreferenceProtocol</a></TD>
|
||||
<TR><TD><a href="../index.htm#GeoreferenceSources-2007-04-17">GeoreferenceSources</a></TD> <TD><a href="../index.htm#GeoreferenceSources-2008-11-19">GeoreferenceSources</a></TD>
|
||||
<TR><TD><a href="../index.htm#GeoreferenceVerificationStatus-2007-04-17">GeoreferenceVerificationStatus</a></TD> <TD><a href="../index.htm#GeoreferenceVerificationStatus-2008-11-19">GeoreferenceVerificationStatus</a></TD>
|
||||
<TR><TD><a href="../index.htm#GeoreferenceRemarks-2007-04-17">GeoreferenceRemarks</a></TD> <TD><a href="../index.htm#GeoreferenceRemarks-2008-11-19">GeoreferenceRemarks</a></TD>
|
||||
<TR><TD><a href="../index.htm#FootprintWKT-2007-04-17">FootprintWKT</a></TD> <TD><a href="../index.htm#FootprintWKT-2008-11-19">FootprintWKT</a></TD>
|
||||
<TR><TD><a href="../index.htm#FootprintSpatialFit-2007-04-17">FootprintSpatialFit</a></TD> <TD><a href="../index.htm#FootprintSpatialFit-2008-11-19">FootprintSpatialFit</a></TD>
|
||||
|
||||
</TBODY></TABLE>
|
||||
|
||||
<!-- Footer -->
|
||||
<hr>
|
||||
<p><a rel="license" href="http://creativecommons.org/licenses/by/3.0/us/">
|
||||
<img alt="Creative Commons License" id="creative_commons_icon" src="http://i.creativecommons.org/l/by/3.0/88x31.png" /></a>
|
||||
Copyright 2009 - Biodiversity Information Standards - TDWG - <a href="http://www.tdwg.org/about-tdwg/contact-us/">Contact Us</a><br/>
|
||||
<p>Except where otherwise noted, content on this site is licensed under a
|
||||
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/us/"> Creative Commons
|
||||
Attribution 3.0 United States License</a>.</p>
|
||||
|
||||
</BODY></HTML>
|
|
@ -0,0 +1,562 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<HTML xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<HEAD>
|
||||
<META http-equiv="Content-Type" content="text/html; charset=utf8"/>
|
||||
<TITLE>Darwin Core Terms: A quick reference guide</TITLE>
|
||||
<LINK rel="schema.DwC" href="http://rs.tdwg.org/dwc/terms/"/>
|
||||
|
||||
<META name="DC.title" content="Darwin Core Terms: A quick reference guide"/>
|
||||
<META name="DC.description" content="The quick reference guide to recommended Darwin Core terms."/>
|
||||
<META name="DC.subject" content="biodiversity, standards"/>
|
||||
<META name="DC.creator" content="Darwin Core Task Group"/>
|
||||
<META name="DC.contributor" content="John Wieczorek (MVZ) <tuco@berkeley.edu>"/>
|
||||
<META name="DC.contributor" content="Markus Döring (GBIF) <mdoering@gbif.org>"/>
|
||||
<META name="DC.contributor" content="Renato De Giovanni (CRIA) <renato@cria.org.br>"/>
|
||||
<META name="DC.contributor" content="Tim Robertson (GBIF) <trobertson@gbif.org>"/>
|
||||
<META name="DC.contributor" content="Dave Vieglais (KUNHM) <vieglais@ku.edu>"/>
|
||||
<META name="DC.contributor" content="Stan Blum (CAS) <sblum@calacademy.org>"/>
|
||||
<META name="DC.modified" content="2009-02-12"/>
|
||||
<META name="DC.dateAccepted" content="2009-02-12"/>
|
||||
<META name="DC.format" content="text/html"/>
|
||||
<META name="DC.identifier" content="http://rs.tdwg.org/dwc/2009-02-12"/>
|
||||
<META name="DC.publisher" content="Biodiversity Information Standards TDWG"/>
|
||||
<META name="DC.rights" content=""/>
|
||||
<META name="DC.accessRights" content="public"/>
|
||||
<META name="DC.bibliographicCitation" content="Darwin Core Terms: A quick reference guide. 2009"/>
|
||||
<META name="DC.isReplacedBy" content=""/>
|
||||
<META name="DC.replaces" content="http://wiki.tdwg.org/twiki/bin/view/DarwinCore/DarwinCoreDraftStandard"/>
|
||||
<META name="DC.language" content="en"/>
|
||||
<LINK rel="meta" href="http://www.tdwg.org/"/>
|
||||
<LINK rel="stylesheet" href="../DarwinCore_files/default.css" type="text/css"/>
|
||||
<SCRIPT src="../DarwinCore_files/default.js" type="text/javascript"></SCRIPT>
|
||||
</HEAD>
|
||||
<BODY>
|
||||
<DIV class="header">
|
||||
|
||||
<TABLE width="100%" cellspacing="0" cellpadding="0" bgcolor="#617394">
|
||||
<TBODY><TR>
|
||||
<TD width="70"><A href="http://www.tdwg.org"><IMG src="../DarwinCore_files/TDWGlogo_Twiki.gif" width="150" height="70" alt="Biodiversity Information Standards (TDWG) logo"></A></TD>
|
||||
<TD width="100%" height="70" align="right" valign="top">
|
||||
</TABLE>
|
||||
|
||||
<H1>Darwin Core Terms: A quick reference guide</H1>
|
||||
<TABLE cellspacing="0" class="docinfo">
|
||||
<TBODY>
|
||||
<TR>
|
||||
<TH>Title:</TH>
|
||||
<TD>Darwin Core Terms: A quick reference guide</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Date Issued:</TH>
|
||||
<TD>2009-02-12</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Abstract:</TH>
|
||||
<TD>This document is a quick reference for all recommended Darwin Core terms. For complete historical
|
||||
term information, including version changes and pre-standard terms, see [<A href="./history/index.htm">HISTORY</A>].
|
||||
For a comparative table of elements from pre-standard versions of Darwin Core to the current
|
||||
recommended terms in the standard, see [<a href="./history/versions/index.htm">VERSIONS</A>].</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Contributors:</TH>
|
||||
<TD>John Wieczorek (MVZ)<tuco@berkeley.edu>, Markus Döring (GBIF)<mdoering@gbif.org>, Renato De Giovanni (CRIA)<renato@cria.org.br>, Tim Robertson (GBIF)<trobertson@gbif.org>, Dave Vieglais (KUNHM)<vieglais@ku.edu>, Stan Blum (CAS)<sblum@calacademy.org></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Legal:</TH>
|
||||
<TD>This document is governed by the standard legal, copyright, licensing provisions and disclaimers issued by the Taxonomic Databases Working Group.</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Part of TDWG Standard:</TH>
|
||||
<TD>***URL to DwC Standard*** goes here</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Creator:</TH>
|
||||
<TD>Darwin Core Task Group</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Identifier:</TH>
|
||||
<TD><A href="http://rs.tdwg.org/dwc/terms/2009-02-12/">http://rs.tdwg.org/dwc/terms/2009-02-12/</A></TD>
|
||||
</TR>
|
||||
<TR><TH>Latest Version:</TH>
|
||||
<TD><A href="http://rs.tdwg.org/dwc/terms/">http://rs.tdwg.org/dwc/terms/</A></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Replaces:</TH>
|
||||
<TD><A href="http://wiki.tdwg.org/twiki/bin/view/DarwinCore/DarwinCoreDraftStandard">http://wiki.tdwg.org/twiki/bin/view/DarwinCore/DarwinCoreDraftStandard</A></TD>
|
||||
</TR>
|
||||
<TR><TH>Replaced By:</TH>
|
||||
<TD>Not applicable</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Translations:</TH>
|
||||
<TD><A href="http://rs.tdwg.org/dwc/translations/">http://rs.tdwg.org/dwc/translations/</A></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Document Status:</TH>
|
||||
<TD>This is a TDWG Request for Comment.</TD>
|
||||
</TR>
|
||||
</TBODY></TABLE>
|
||||
|
||||
<H2>Table of Contents</H2>
|
||||
<TABLE width="95%" border="0" align="center"><TBODY>
|
||||
<TR><TD width="100%">1. <a href="#introduction">Introduction</a>
|
||||
</TD></TR>
|
||||
<TR><TD width="100%">2. <a href="#references">References</a>
|
||||
</TD></TR>
|
||||
<TR><TD width="100%">3. <a href="#theterms">The Terms</a>
|
||||
</TD></TR>
|
||||
</TBODY></TABLE
|
||||
|
||||
<A name="introduction" id="introduction"></A>
|
||||
<H2>1. Introduction</H2>
|
||||
|
||||
<P><b>Definition</b>: The Darwin Core consists of a vocabulary of terms (properties, elements, fields, concepts) to
|
||||
facilitate the discovery, retrieval, and integration of information about organisms, their spatiotemporal occurrence,
|
||||
and the supporting evidence housed in collections.
|
||||
</P>
|
||||
<P><b>Context</b>: The terms described in this standard are a part of a larger set of metadata vocabularies and technical
|
||||
specifications maintained by the Biodiversity Information Standards (TDWG). The terms in Darwin Core are intended to refine,
|
||||
extend, and to be used in combination with terms from other, compatible vocabularies such as the Dublin Core
|
||||
[<a href="http://dublincore.org/">DCMI</a>].
|
||||
</P>
|
||||
<P><b>Design goals</b>: The Darwin Core terms are intended to facilitate data sharing by providing a
|
||||
standard core vocabulary with the purposes of minimizing the barriers for adoption and maximizing reusability.
|
||||
The framework for the Darwin Core is based on the Dublin Core and uses terms (properties, classes, and encoding schemes)
|
||||
in a similar fashion. Application profiles based on the Darwin Core are intended to use Dublin Core elements wherever
|
||||
feasible. Structures, data-typing, and content constraints are meant to be implemented using
|
||||
representation-specific application profiles, such as the Simple Darwin Core XML Schema
|
||||
[<A href="./xsd/tdwg_simpledarwincore.xsd">SIMPLEXMLSCHEMA</A>],
|
||||
based on the Darwin Core terms.
|
||||
</P>
|
||||
<P><b>Semantics</b>: Each term has a definition and commentaries that are meant to promote the consistent use
|
||||
of the terms across applications and disciplines. Evolving commentaries that discuss, refine, expand, or translate
|
||||
the definitions and examples are referred to through links in the Comments attribute of each term. This means of
|
||||
adaptive documentation allows the standard to adapt to new purposes without disrupting existing applications.
|
||||
Periodically the Technical Architecture Group may update a normative definition of a term
|
||||
based on the commentaries.
|
||||
</P>
|
||||
<P><b>Constraints</b>: The Darwin Core is minimally restrictive of information content by design so that it is
|
||||
possible to use the standard to build data quality improvement applications without restricting the content
|
||||
<i>a priori</i>. Necessary constraints for particular application should be implemented in the application profile.
|
||||
</P>
|
||||
<P><b>Vocabularies</b>: A recommendation to apply controlled vocabularies are made within the Definition of
|
||||
some terms. Formal vocabularies to be used in applications of the standard are maintained separately, and
|
||||
recommendations for use of specific vocabularies are made in the Comments of appropriate terms.
|
||||
</P>
|
||||
<P><b>Extensions</b>: The Darwin Core is expected to be insufficiently complete for the needs of some specialized
|
||||
disciplines. Adaptation to serve new purposes can be accomplished by extending the Darwin Core -
|
||||
by adding a group of entirely new terms as a mechanism to share additional information specific to a
|
||||
particular area of interest within the larger context of biotic occurrence. Before proposing a new term,
|
||||
consider the existing terms in this and other compatible standards to determine if the new concept can be
|
||||
accommodated by a simple revision of the description of an existing term, without losing the existing meaning of
|
||||
that term.
|
||||
</P>
|
||||
<P><b>Applications</b>: Application profiles that make use of Darwin Core terms can be created for use within
|
||||
a specialized community while maintaining interoperability with other application profiles based on the Darwin Core.
|
||||
The Simple Darwin Core Application Schema [<A href="./xsd/tdwg_simpledarwincore.xsd">SIMPLEXMLSCHEMA</A>]
|
||||
is an example of such an application profile.
|
||||
</P>
|
||||
<P><b>Limitations</b>: The Darwin Core is an unordered set of simple terms, most of which are properties related
|
||||
to one of a few specific classes, which are also terms. For example, the Locality term is a property of the
|
||||
SamplingLocation class, as shown through the value "SamplingLocation" for the "Has domain" attribute of the
|
||||
Locality term. These simple attributes suggest an ontology for the Darwin core, but the terms do not have formal
|
||||
data types. This simplicity makes the Darwin Core inadequate for some purposes, such as a being a sufficient model
|
||||
for managing primary data in a relational collection database.
|
||||
</P>
|
||||
<P><b>Maintenance</b>: Darwin Core terms are managed by the TDWG Architecture Group following
|
||||
the Darwin Core Namespace Policy [<A href="./namespace/index.htm">NAMESPACEPOLICY</A>]. The namespace
|
||||
policy describes how a term is a assigned Uniform Resource Identifier (URI) and how versioning is controlled based on
|
||||
the manner and range of editorial changes made to the labels, definitions, comments, and other attributes of the term.
|
||||
</P>
|
||||
|
||||
<A name="references" id="references"></A>
|
||||
<H2>2. References</H2>
|
||||
<TABLE width="95%" border="0" align="center">
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="DCMI">[DCMI]</A></TD>
|
||||
<TD width="40%"><A href="http://dublincore.org/">http://dublincore.org/</A></TD>
|
||||
<TD width="50%">Dublin Core Metadata Initiative Web site.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="DWC">[DWC]</A></TD>
|
||||
<TD width="40%"><A href="../index.htm">http://rs.tdwg.org/dwc/</A></TD>
|
||||
<TD width="50%">An introduction to the Darwin Core Standard.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="HISTORY">[HISTORY]</A></TD>
|
||||
<TD width="40%"><A href="./history/index.htm">http://rs.tdwg.org/dwc/terms/history/</A></TD>
|
||||
<TD width="50%">Complete historical reference to Darwin Core terms.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="NAMESPACEPOLICY">[NAMESPACEPOLICY]</A></TD>
|
||||
<TD width="40%"><A href="./namespace/index.htm">http://rs.tdwg.org/dwc/terms/namespace/</A></TD>
|
||||
<TD width="50%">Policy governing Darwin Core terms.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="SIMPLEXMLSCHEMA">[SIMPLEXMLSCHEMA]</A></TD>
|
||||
<TD width="40%"><A href="./xsd/tdwg_simpledarwincore.xsd">http://rs.tdwg.org/dwc/terms/xsd/tdwg_simpledarwincore.xsd</A></TD>
|
||||
<TD width="50%">Simple Darwin Core XML schema.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="VERSIONS"></A>[VERSIONS]</TD>
|
||||
<TD width="40%"><A href="./history/versions/index.htm">http://rs.tdwg.org/dwc/terms/history/versions/</A></TD>
|
||||
<TD width="50%">Reference for mapping historical Darwin Core terms to the current recommended terms.</TD>
|
||||
</TR>
|
||||
|
||||
</TBODY></TABLE>
|
||||
|
||||
<A name="theterms" id="theterms"></A>
|
||||
<H2>3. The Terms</H2>
|
||||
<TABLE class="border" cellspacing="0">
|
||||
<TBODY>
|
||||
|
||||
<!--
|
||||
<H3>Dublin Core</H3><P>
|
||||
<H3>Dataset</H3><P>
|
||||
<H3>Sample</H3><P>
|
||||
<H3>SamplingEvent</H3><P>
|
||||
<H3>SamplingLocation</H3><P>
|
||||
<H3>Identification</H3><P>
|
||||
<H3>Taxon</H3><P>
|
||||
<H3>RelatedResource</H3><P>
|
||||
<H3>SampleAttribute</H3><P>
|
||||
<H3>EventAttribute</H3><P>
|
||||
-->
|
||||
|
||||
<H3>Dublin Core</H3><P>
|
||||
<a href="http://dublincore.org/documents/dcmi-terms/#terms-modified">modified</a>
|
||||
<a href="http://dublincore.org/documents/dcmi-terms/#terms-language">language</a>
|
||||
<a href="http://dublincore.org/documents/dcmi-terms/#terms-rights">rights</a>
|
||||
<a href="http://dublincore.org/documents/dcmi-terms/#terms-rightsHolder">rightsHolder</a>
|
||||
<H3><a href="#Dataset">Dataset</a></H3><P>
|
||||
<a href="#DatasetID">DatasetID</a>
|
||||
<H3><a href="#Sample">Sample</a></H3><P>
|
||||
<a href="#SampleID">SampleID</a>
|
||||
<a href="#InstitutionCode">InstitutionCode</a>
|
||||
<a href="#CollectionCode">CollectionCode</a>
|
||||
<a href="#CollectionID">CollectionID</a>
|
||||
<a href="#BasisOfRecord">BasisOfRecord</a>
|
||||
<a href="#AccessConstraints">AccessConstraints</a>
|
||||
<a href="#InformationWithheld">InformationWithheld</a>
|
||||
<a href="#Generalizations">Generalizations</a>
|
||||
<a href="#SampleDetails">SampleDetails</a>
|
||||
<a href="#SampleRemarks">SampleRemarks</a>
|
||||
<a href="#CatalogNumber">CatalogNumber</a>
|
||||
<a href="#CatalogNumberNumeric">CatalogNumberNumeric</a>
|
||||
<a href="#IndividualID">IndividualID</a>
|
||||
<a href="#IndividualCount">IndividualCount</a>
|
||||
<a href="#Citation">Citation</a>
|
||||
<a href="#Sex">Sex</a>
|
||||
<a href="#LifeStage">LifeStage</a>
|
||||
<a href="#ReproductiveCondition">ReproductiveCondition</a>
|
||||
<a href="#EstablishmentMeans">EstablishmentMeans</a>
|
||||
<a href="#SampleAttributes">SampleAttributes</a>
|
||||
<a href="#Preparations">Preparations</a>
|
||||
<a href="#Disposition">Disposition</a>
|
||||
<a href="#OtherCatalogNumbers">OtherCatalogNumbers</a>
|
||||
<a href="#AssociatedMedia">AssociatedMedia</a>
|
||||
<a href="#AssociatedReferences">AssociatedReferences</a>
|
||||
<a href="#AssociatedSamples">AssociatedSamples</a>
|
||||
<a href="#AssociatedSequences">AssociatedSequences</a>
|
||||
<a href="#AssociatedTaxa">AssociatedTaxa</a>
|
||||
<H3><a href="#SamplingEvent">SamplingEvent</a></H3><P>
|
||||
<a href="#SamplingEventID">SamplingEventID</a>
|
||||
<a href="#SamplingProtocol">SamplingProtocol</a>
|
||||
<a href="#VerbatimCollectingDate">VerbatimCollectingDate</a>
|
||||
<a href="#EarliestDateCollected">EarliestDateCollected</a>
|
||||
<a href="#LatestDateCollected">LatestDateCollected</a>
|
||||
<a href="#StartDayOfYear">StartDayOfYear</a>
|
||||
<a href="#EndDayOfYear">EndDayOfYear</a>
|
||||
<a href="#StartTimeOfDay">StartTimeOfDay</a>
|
||||
<a href="#EndTimeOfDay">EndTimeOfDay</a>
|
||||
<a href="#YearSampled">YearSampled</a>
|
||||
<a href="#MonthOfYear">MonthOfYear</a>
|
||||
<a href="#DayOfMonth">DayOfMonth</a>
|
||||
<a href="#Habitat">Habitat</a>
|
||||
<a href="#Behavior">Behavior</a>
|
||||
<a href="#Collector">Collector</a>
|
||||
<a href="#CollectorNumber">CollectorNumber</a>
|
||||
<a href="#FieldNumber">FieldNumber</a>
|
||||
<a href="#FieldNotes">FieldNotes</a>
|
||||
<a href="#SamplingEventAttributes">SamplingEventAttributes</a>
|
||||
<a href="#SamplingEventRemarks">SamplingEventRemarks</a>
|
||||
<H3><a href="#SamplingLocation">SamplingLocation</a></H3><P>
|
||||
<a href="#SamplingLocationID">SamplingLocationID</a>
|
||||
<a href="#HigherGeographyID">HigherGeographyID</a>
|
||||
<a href="#HigherGeography">HigherGeography</a>
|
||||
<a href="#Continent">Continent</a>
|
||||
<a href="#Waterbody">Waterbody</a>
|
||||
<a href="#IslandGroup">IslandGroup</a>
|
||||
<a href="#Island">Island</a>
|
||||
<a href="#Country">Country</a>
|
||||
<a href="#CountryCode">CountryCode</a>
|
||||
<a href="#StateProvince">StateProvince</a>
|
||||
<a href="#County">County</a>
|
||||
<a href="#Locality">Locality</a>
|
||||
<a href="#VerbatimLocality">VerbatimLocality</a>
|
||||
<a href="#VerbatimElevation">VerbatimElevation</a>
|
||||
<a href="#MinimumElevationInMeters">MinimumElevationInMeters</a>
|
||||
<a href="#MaximumElevationInMeters">MaximumElevationInMeters</a>
|
||||
<a href="#VerbatimDepth">VerbatimDepth</a>
|
||||
<a href="#MinimumDepthInMeters">MinimumDepthInMeters</a>
|
||||
<a href="#MaximumDepthInMeters">MaximumDepthInMeters</a>
|
||||
<a href="#DistanceAboveSurfaceInMetersMinimum">DistanceAboveSurfaceInMetersMinimum</a>
|
||||
<a href="#DistanceAboveSurfaceInMetersMaximum">DistanceAboveSurfaceInMetersMaximum</a>
|
||||
<a href="#DecimalLatitude">DecimalLatitude</a>
|
||||
<a href="#DecimalLongitude">DecimalLongitude</a>
|
||||
<a href="#GeodeticDatum">GeodeticDatum</a>
|
||||
<a href="#CoordinateUncertaintyInMeters">CoordinateUncertaintyInMeters</a>
|
||||
<a href="#CoordinatePrecision">CoordinatePrecision</a>
|
||||
<a href="#PointRadiusSpatialFit">PointRadiusSpatialFit</a>
|
||||
<a href="#VerbatimCoordinates">VerbatimCoordinates</a>
|
||||
<a href="#VerbatimLatitude">VerbatimLatitude</a>
|
||||
<a href="#VerbatimLongitude">VerbatimLongitude</a>
|
||||
<a href="#GeoreferencedBy">GeoreferencedBy</a>
|
||||
<a href="#GeoreferenceProtocol">GeoreferenceProtocol</a>
|
||||
<a href="#VerbatimCoordinateSystem">VerbatimCoordinateSystem</a>
|
||||
<a href="#GeoreferenceSources">GeoreferenceSources</a>
|
||||
<a href="#GeoreferenceVerificationStatus">GeoreferenceVerificationStatus</a>
|
||||
<a href="#GeoreferenceRemarks">GeoreferenceRemarks</a>
|
||||
<a href="#FootprintWKT">FootprintWKT</a>
|
||||
<a href="#FootprintSpatialFit">FootprintSpatialFit</a>
|
||||
<a href="#SamplingLocationRemarks">SamplingLocationRemarks</a>
|
||||
<H3><a href="#Identification">Identification</a></H3><P>
|
||||
<a href="#IdentificationID">IdentificationID</a>
|
||||
<a href="#IdentifiedBy">IdentifiedBy</a>
|
||||
<a href="#DateIdentified">DateIdentified</a>
|
||||
<a href="#IdentificationReferences">IdentificationReferences</a>
|
||||
<a href="#IdentificationRemarks">IdentificationRemarks</a>
|
||||
<a href="#PreviousIdentifications">PreviousIdentifications</a>
|
||||
<a href="#IdentificationQualifier">IdentificationQualifier</a>
|
||||
<a href="#TypeStatus">TypeStatus</a>
|
||||
<H3><a href="#Taxon">Taxon</a></H3><P>
|
||||
<a href="#TaxonID">TaxonID</a>
|
||||
<a href="#ScientificName">ScientificName</a>
|
||||
<a href="#Binomial">Binomial</a>
|
||||
<a href="#HigherTaxonID">HigherTaxonID</a>
|
||||
<a href="#HigherTaxon">HigherTaxon</a>
|
||||
<a href="#Kingdom">Kingdom</a>
|
||||
<a href="#Phylum">Phylum</a>
|
||||
<a href="#Class">Class</a>
|
||||
<a href="#Order">Order</a>
|
||||
<a href="#Family">Family</a>
|
||||
<a href="#Genus">Genus</a>
|
||||
<a href="#Subgenus">Subgenus</a>
|
||||
<a href="#SpecificEpithet">SpecificEpithet</a>
|
||||
<a href="#TaxonRank">TaxonRank</a>
|
||||
<a href="#InfraspecificEpithet">InfraspecificEpithet</a>
|
||||
<a href="#ScientificNameAuthorship">ScientificNameAuthorship</a>
|
||||
<a href="#NomenclaturalCode">NomenclaturalCode</a>
|
||||
<a href="#TaxonAccordingTo">TaxonAccordingTo</a>
|
||||
<a href="#NamePublishedIn">NamePublishedIn</a>
|
||||
<a href="#TaxonomicStatus">TaxonomicStatus</a>
|
||||
<a href="#NomenclaturalStatus">NomenclaturalStatus</a>
|
||||
<a href="#AcceptedTaxonID">AcceptedTaxonID</a>
|
||||
<a href="#AcceptedTaxon">AcceptedTaxon</a>
|
||||
<a href="#BasionymID">BasionymID</a>
|
||||
<a href="#Basionym">Basionym</a>
|
||||
<H3><a href="#ResourceRelationship">ResourceRelationship</a></H3><P>
|
||||
<a href="#ResourceRelationshipID">ResourceRelationshipID</a>
|
||||
<a href="#RelatedResourceID">RelatedResourceID</a>
|
||||
<a href="#RelatedResourceType">RelatedResourceType</a>
|
||||
<a href="#RelatedBasisOfRecord">RelatedBasisOfRecord</a>
|
||||
<a href="#RelationshipOfResource">RelationshipOfResource</a>
|
||||
<a href="#RelationshipRemarks">RelationshipRemarks</a>
|
||||
<H3><a href="#SampleAttribute">SampleAttribute</a></H3><P>
|
||||
<a href="#SamplingAttributeID">SamplingAttributeID</a>
|
||||
<a href="#SampleAttributeType">SampleAttributeType</a>
|
||||
<a href="#SampleAttributeValue">SampleAttributeValue</a>
|
||||
<a href="#SampleAttributeAccuracy">SampleAttributeAccuracy</a>
|
||||
<a href="#SampleAttributeUnit">SampleAttributeUnit</a>
|
||||
<a href="#SampleAttributeDeterminedDate">SampleAttributeDeterminedDate</a>
|
||||
<a href="#SampleAttributeDeterminedBy">SampleAttributeDeterminedBy</a>
|
||||
<a href="#SampleAttibuteRemarks">SampleAttibuteRemarks</a>
|
||||
<H3><a href="#EventAttribute">EventAttribute</a></H3><P>
|
||||
<a href="#EventAttributeID">EventAttributeID</a>
|
||||
<a href="#EventAttributeType">EventAttributeType</a>
|
||||
<a href="#EventAttributeValue">EventAttributeValue</a>
|
||||
<a href="#EventAttributeAccuracy">EventAttributeAccuracy</a>
|
||||
<a href="#EventAttributeUnit">EventAttributeUnit</a>
|
||||
<a href="#EventAttributeDeterminedDate">EventAttributeDeterminedDate</a>
|
||||
<a href="#EventAttributeDeterminedBy">EventAttributeDeterminedBy</a>
|
||||
<a href="#EventAttributeRemarks">EventAttributeRemarks</a>
|
||||
|
||||
<!-- Begin Terms Table -->
|
||||
|
||||
<TR><TH colspan="2"><A name="modified">Term Name: modified</A></TH></TR> <TR><TD>URI:</TD><TD>http://purl.org/dc/terms/modified</TD></TR> <TR><TD>Has Domain:</TD><TD>none</TD></TR> <TR><TD>Definition:</TD><TD>Date on which the resource was changed.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#http://dublincore.org/usage/terms/history/#modified-003">modified</a></TD>
|
||||
<TR><TH colspan="2"><A name="Dataset">Term Name: Dataset</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Dataset</TD></TR> <TR><TD>Has Domain:</TD><TD>none</TD></TR> <TR><TD>Definition:</TD><TD>Container class for information about the set of data in which the record is included.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/Dataset">http://code.google.com/p/darwincore/wiki/Dataset</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#Dataset-2008-11-19">Dataset</a></TD>
|
||||
<TR><TH colspan="2"><A name="language">Term Name: language</A></TH></TR> <TR><TD>URI:</TD><TD>http://purl.org/dc/terms/language</TD></TR> <TR><TD>Has Domain:</TD><TD>none</TD></TR> <TR><TD>Definition:</TD><TD>A language of the resource.</TD></TR> <TR><TD>Comment:</TD><TD>Recommended best practice is to use a controlled vocabulary such as RFC 4646 [RFC4646].</TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#http://dublincore.org/usage/terms/history/#languageT-001">language</a></TD>
|
||||
<TR><TH colspan="2"><A name="Sample">Term Name: Sample</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Has Domain:</TD><TD>none</TD></TR> <TR><TD>Definition:</TD><TD>Container class for information about the results of a sampling event (specimen, observation, etc.)</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/Sample">http://code.google.com/p/darwincore/wiki/Sample</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#Sample-2008-11-19">Sample</a></TD>
|
||||
<TR><TH colspan="2"><A name="rights">Term Name: rights</A></TH></TR> <TR><TD>URI:</TD><TD>http://purl.org/dc/terms/rights</TD></TR> <TR><TD>Has Domain:</TD><TD>none</TD></TR> <TR><TD>Definition:</TD><TD>Information about rights held in and over the resource.</TD></TR> <TR><TD>Comment:</TD><TD>Typically, rights information includes a statement about various property rights associated with the resource, including intellectual property rights.</TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#http://dublincore.org/usage/terms/history/#rightsT-001">rights</a></TD>
|
||||
<TR><TH colspan="2"><A name="SamplingEvent">Term Name: SamplingEvent</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEvent</TD></TR> <TR><TD>Has Domain:</TD><TD>none</TD></TR> <TR><TD>Definition:</TD><TD>Container class for information about the conditions and methods of acquisition of samples.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/SamplingEvent">http://code.google.com/p/darwincore/wiki/SamplingEvent</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#SamplingEvent-2008-11-19">SamplingEvent</a></TD>
|
||||
<TR><TH colspan="2"><A name="SamplingLocation">Term Name: SamplingLocation</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Has Domain:</TD><TD>none</TD></TR> <TR><TD>Definition:</TD><TD>Container class for information about the location where a sampling event occurred.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/SamplingLocation">http://code.google.com/p/darwincore/wiki/SamplingLocation</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#SamplingLocation-2008-11-19">SamplingLocation</a></TD>
|
||||
<TR><TH colspan="2"><A name="rightsHolder">Term Name: rightsHolder</A></TH></TR> <TR><TD>URI:</TD><TD>http://purl.org/dc/terms/rightsHolder</TD></TR> <TR><TD>Has Domain:</TD><TD>none</TD></TR> <TR><TD>Definition:</TD><TD>A person or organization owning or managing rights over the resource.</TD></TR> <TR><TD>Comment:</TD><TD></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#http://dublincore.org/usage/terms/history/#rightsHolder-002">rightsHolder</a></TD>
|
||||
<TR><TH colspan="2"><A name="Identification">Term Name: Identification</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Identification</TD></TR> <TR><TD>Has Domain:</TD><TD>none</TD></TR> <TR><TD>Definition:</TD><TD>Container class for information about the taxonomic determination of the sample.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/Identification">http://code.google.com/p/darwincore/wiki/Identification</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#Identification-2008-11-19">Identification</a></TD>
|
||||
<TR><TH colspan="2"><A name="Taxon">Term Name: Taxon</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Has Domain:</TD><TD>none</TD></TR> <TR><TD>Definition:</TD><TD>Container class for information about the taxonomic name or concept referred to by an Identification.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/Taxon">http://code.google.com/p/darwincore/wiki/Taxon</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#Taxon-2008-11-19">Taxon</a></TD>
|
||||
<TR><TH colspan="2"><A name="ResourceRelationship">Term Name: ResourceRelationship</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/ResourceRelationship</TD></TR> <TR><TD>Has Domain:</TD><TD>none</TD></TR> <TR><TD>Definition:</TD><TD>Container class for information about a relationship between resources. May be any type of resource - Sample, SamplingEvent, Taxon, and other resources that are not Darwin Core classes.</TD></TR> <TR><TD>Comment:</TD><TD>To use ResourceRelationship properly in an application schema you must provide a container to avoid ambiguity about the resource being related, especially if you intend to allow ResourceRelationship to refer to more than one class. See <a href="http://code.google.com/p/darwincore/wiki/ResourceRelationship">http://code.google.com/p/darwincore/wiki/ResourceRelationship</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#ResourceRelationship-2009-01-21">ResourceRelationship</a></TD>
|
||||
<TR><TH colspan="2"><A name="DatasetID">Term Name: DatasetID</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/DatasetID</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Dataset</TD></TR> <TR><TD>Definition:</TD><TD>An identifier for the data set. May be a global unique identifier or an identifier specific to a collection or institution.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/DatasetID">http://code.google.com/p/darwincore/wiki/DatasetID</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#DatasetID-2008-11-19">DatasetID</a></TD>
|
||||
<TR><TH colspan="2"><A name="SampleID">Term Name: SampleID</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/SampleID</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Definition:</TD><TD>A Uniform Resource Name (URN) as a unique identifier for the sample (as opposed to a particular digital record of the sample). 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 SampleID globally unique and persistent.</TD></TR> <TR><TD>Comment:</TD><TD>For a specimen, for example, use the form: "urn:catalog:[InstitutionCode]:[CollectionCode]:[CatalogNumber]. Examples: 1) "urn:lsid:nhm.ku.edu:Herps:32", 2) "urn:catalog:FMNH:Mammal:145732". See <a href="http://code.google.com/p/darwincore/wiki/SampleID">http://code.google.com/p/darwincore/wiki/SampleID</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#SampleID-2008-11-19">SampleID</a></TD>
|
||||
<TR><TH colspan="2"><A name="InstitutionCode">Term Name: InstitutionCode</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/InstitutionCode</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Definition:</TD><TD>The code (or acronym) in use by the institution administering the collection or data set in which the sample is recorded.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "MVZ", "FMNH". See <a href="http://code.google.com/p/darwincore/wiki/InstitutionCode">http://code.google.com/p/darwincore/wiki/InstitutionCode</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#InstitutionCode-2008-11-19">InstitutionCode</a></TD>
|
||||
<TR><TH colspan="2"><A name="CollectionCode">Term Name: CollectionCode</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/CollectionCode</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Definition:</TD><TD>The code (or acronym) identifying the collection within the institution in which the sample is recorded.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Mammals", "Hildebrandt". See <a href="http://code.google.com/p/darwincore/wiki/CollectionCode">http://code.google.com/p/darwincore/wiki/CollectionCode</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#CollectionCode-2008-11-19">CollectionCode</a></TD>
|
||||
<TR><TH colspan="2"><A name="CollectionID">Term Name: CollectionID</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/CollectionID</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Definition:</TD><TD>The global unique identifier for the collection. Recommended best practice is to use the identifier in a collections registry such as the Biodiversity Collections Index.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/CollectionID">http://code.google.com/p/darwincore/wiki/CollectionID</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#CollectionID-2008-11-19">CollectionID</a></TD>
|
||||
<TR><TH colspan="2"><A name="BasisOfRecord">Term Name: BasisOfRecord</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/BasisOfRecord</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Definition:</TD><TD>The nature of the sample. Recommended best practice is to use a controlled vocabulary.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "HumanObservation". See <a href="http://code.google.com/p/darwincore/wiki/BasisOfRecord">http://code.google.com/p/darwincore/wiki/BasisOfRecord</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#BasisOfRecord-2008-11-19">BasisOfRecord</a></TD>
|
||||
<TR><TH colspan="2"><A name="SampleAttribute">Term Name: SampleAttribute</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/SampleAttribute</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Definition:</TD><TD>Container class for information about attributes related to a given sample.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/SampleAttribute">http://code.google.com/p/darwincore/wiki/SampleAttribute</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#SampleAttribute-2008-11-19">SampleAttribute</a></TD>
|
||||
<TR><TH colspan="2"><A name="AccessConstraints">Term Name: AccessConstraints</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/AccessConstraints</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Definition:</TD><TD>A description of constraints on the use of the data as shared or access to further data that is not shared.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "not-for-profit use only". See <a href="http://code.google.com/p/darwincore/wiki/AccessConstraints">http://code.google.com/p/darwincore/wiki/AccessConstraints</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#AccessConstraints-2008-11-19">AccessConstraints</a></TD>
|
||||
<TR><TH colspan="2"><A name="InformationWithheld">Term Name: InformationWithheld</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/InformationWithheld</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Definition:</TD><TD>Additional information that exists, but that has not been made public in the given record.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "specific locality information given only to nearest county", "ask about tissue samples", "georeferences given only to nearest degree". See <a href="http://code.google.com/p/darwincore/wiki/InformationWithheld">http://code.google.com/p/darwincore/wiki/InformationWithheld</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#InformationWithheld-2008-11-19">InformationWithheld</a></TD>
|
||||
<TR><TH colspan="2"><A name="Generalizations">Term Name: Generalizations</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Generalizations</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Definition:</TD><TD>Actions taken to make the data as shared less specific or complete than in its original form. Suggests that alternative data of highly quality may be available on request.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Coordinates generalized from original GPS coordinates to the nearest half degree grid cell". See <a href="http://code.google.com/p/darwincore/wiki/Generalizations">http://code.google.com/p/darwincore/wiki/Generalizations</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#Generalizations-2008-11-19">Generalizations</a></TD>
|
||||
<TR><TH colspan="2"><A name="SampleDetails">Term Name: SampleDetails</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/SampleDetails</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Definition:</TD><TD>A reference (publication, URL) to the most detailed information available about the sample.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/SampleDetails">http://code.google.com/p/darwincore/wiki/SampleDetails</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#SampleDetails-2008-11-19">SampleDetails</a></TD>
|
||||
<TR><TH colspan="2"><A name="SampleRemarks">Term Name: SampleRemarks</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/SampleRemarks</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Definition:</TD><TD>Comments or notes about the sample or record.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "found dead on road". See <a href="http://code.google.com/p/darwincore/wiki/SampleRemarks">http://code.google.com/p/darwincore/wiki/SampleRemarks</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#SampleRemarks-2009-01-18">SampleRemarks</a></TD>
|
||||
<TR><TH colspan="2"><A name="CatalogNumber">Term Name: CatalogNumber</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/CatalogNumber</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Definition:</TD><TD>An identifier (preferably unique) for the sample within the data set or collection.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "2008.1334", "145732a", "145732". See <a href="http://code.google.com/p/darwincore/wiki/CatalogNumber">http://code.google.com/p/darwincore/wiki/CatalogNumber</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#CatalogNumber-2008-11-19">CatalogNumber</a></TD>
|
||||
<TR><TH colspan="2"><A name="CatalogNumberNumeric">Term Name: CatalogNumberNumeric</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/CatalogNumberNumeric</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Definition:</TD><TD>The numeric value of the CatalogNumber, used to facilitate numerical sorting and searching by ranges.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "1334", "145732". See <a href="http://code.google.com/p/darwincore/wiki/CatalogNumberNumeric">http://code.google.com/p/darwincore/wiki/CatalogNumberNumeric</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#CatalogNumberNumeric-2008-11-19">CatalogNumberNumeric</a></TD>
|
||||
<TR><TH colspan="2"><A name="IndividualID">Term Name: IndividualID</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/IndividualID</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Definition:</TD><TD>An identifier for an individual or named group of individual organisms represented in the sample. Meant to accommodate resampling of the same individual or group for monitoring purposes. May be a global unique identifier or an identifier specific to a data set.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "U.amer. 44", "Smedley", "Orca J 23". See <a href="http://code.google.com/p/darwincore/wiki/IndividualID">http://code.google.com/p/darwincore/wiki/IndividualID</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#IndividualID-2008-11-19">IndividualID</a></TD>
|
||||
<TR><TH colspan="2"><A name="IndividualCount">Term Name: IndividualCount</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/IndividualCount</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Definition:</TD><TD>The number of individuals present in the sample or observed in the sampling event.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "1". See <a href="http://code.google.com/p/darwincore/wiki/IndividualCount">http://code.google.com/p/darwincore/wiki/IndividualCount</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#IndividualCount-2008-11-19">IndividualCount</a></TD>
|
||||
<TR><TH colspan="2"><A name="Citation">Term Name: Citation</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Citation</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Definition:</TD><TD>A statement indicating how this record should be cited (attributed) when used.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/Citation">http://code.google.com/p/darwincore/wiki/Citation</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#Citation-2008-11-19">Citation</a></TD>
|
||||
<TR><TH colspan="2"><A name="Sex">Term Name: Sex</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Sex</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Definition:</TD><TD>The sex of the biological individual represented by the sample. Recommended best practice is to use a controlled vocabulary.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "female", "hermaphrodite". See <a href="http://code.google.com/p/darwincore/wiki/Sex">http://code.google.com/p/darwincore/wiki/Sex</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#Sex-2008-11-19">Sex</a></TD>
|
||||
<TR><TH colspan="2"><A name="LifeStage">Term Name: LifeStage</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/LifeStage</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Definition:</TD><TD>The age class or life stage of the biological individual represented by the sample. Recommended best practice is to use a controlled vocabulary.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "egg", "eft", "juvenile", "adult". See <a href="http://code.google.com/p/darwincore/wiki/LifeStage">http://code.google.com/p/darwincore/wiki/LifeStage</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#LifeStage-2008-11-19">LifeStage</a></TD>
|
||||
<TR><TH colspan="2"><A name="ReproductiveCondition">Term Name: ReproductiveCondition</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/ReproductiveCondition</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Definition:</TD><TD>The reproductive condition of the biological individual represented by the sample. Recommended best practice is to use a controlled vocabulary.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/ReproductiveCondition">http://code.google.com/p/darwincore/wiki/ReproductiveCondition</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#ReproductiveCondition-2008-11-19">ReproductiveCondition</a></TD>
|
||||
<TR><TH colspan="2"><A name="EstablishmentMeans">Term Name: EstablishmentMeans</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/EstablishmentMeans</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Definition:</TD><TD>The process by which the the biological individual represented by the sample became established at the sampling location. Recommended best practice is to use a controlled vocabulary.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/EstablishmentMeans">http://code.google.com/p/darwincore/wiki/EstablishmentMeans</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#EstablishmentMeans-2008-11-19">EstablishmentMeans</a></TD>
|
||||
<TR><TH colspan="2"><A name="SampleAttributes">Term Name: SampleAttributes</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/SampleAttributes</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Definition:</TD><TD>A list (concatenated and separated) of additional measurements or characteristics of the sample.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "Tragus length: 14mm; Weight: 120g", "Height: 1-1.5 meters tall; flowers yellow; uncommon". See <a href="http://code.google.com/p/darwincore/wiki/SampleAttributes">http://code.google.com/p/darwincore/wiki/SampleAttributes</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#SampleAttributes-2008-11-19">SampleAttributes</a></TD>
|
||||
<TR><TH colspan="2"><A name="Preparations">Term Name: Preparations</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Preparations</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Definition:</TD><TD>A list (concatenated and separated) of preparations and preservation methods for a sample.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "skin", "skull", "skeleton", "whole animal (ETOH)", "tissue (EDTA)". See <a href="http://code.google.com/p/darwincore/wiki/Preparations">http://code.google.com/p/darwincore/wiki/Preparations</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#Preparations-2008-11-19">Preparations</a></TD>
|
||||
<TR><TH colspan="2"><A name="Disposition">Term Name: Disposition</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Disposition</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Definition:</TD><TD>The current disposition of the sample. Recommended best practice is to use a controlled vocabulary.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "in collection", "missing", "voucher elsewhere", "duplicates elsewhere". See <a href="http://code.google.com/p/darwincore/wiki/Disposition">http://code.google.com/p/darwincore/wiki/Disposition</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#Disposition-2008-11-19">Disposition</a></TD>
|
||||
<TR><TH colspan="2"><A name="OtherCatalogNumbers">Term Name: OtherCatalogNumbers</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/OtherCatalogNumbers</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Definition:</TD><TD>A list (concatenated and separated) of previous or alternate fully qualified catalog numbers for the same sample, whether in the current or any other data set or collection.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "FMNH:Mammal:1234". See <a href="http://code.google.com/p/darwincore/wiki/OtherCatalogNumbers">http://code.google.com/p/darwincore/wiki/OtherCatalogNumbers</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#OtherCatalogNumbers-2008-11-19">OtherCatalogNumbers</a></TD>
|
||||
<TR><TH colspan="2"><A name="AssociatedMedia">Term Name: AssociatedMedia</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/AssociatedMedia</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Definition:</TD><TD>A list (concatenated and separated) of identifiers (publication, global unique identifier, URL) of media associated with the sample.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/AssociatedMedia">http://code.google.com/p/darwincore/wiki/AssociatedMedia</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#AssociatedMedia-2008-11-19">AssociatedMedia</a></TD>
|
||||
<TR><TH colspan="2"><A name="AssociatedReferences">Term Name: AssociatedReferences</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/AssociatedReferences</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Definition:</TD><TD>A list (concatenated and separated) of identifiers (publication, global unique identifier, URL) of literature associated with the sample.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/AssociatedReferences">http://code.google.com/p/darwincore/wiki/AssociatedReferences</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#AssociatedReferences-2008-11-19">AssociatedReferences</a></TD>
|
||||
<TR><TH colspan="2"><A name="AssociatedSamples">Term Name: AssociatedSamples</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/AssociatedSamples</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Definition:</TD><TD>A list (concatenated and separated) of identifiers of other samples associated with the sample and their associations.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "sibling of FMNH:Mammal:1234". See <a href="http://code.google.com/p/darwincore/wiki/AssociatedSamples">http://code.google.com/p/darwincore/wiki/AssociatedSamples</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#AssociatedSamples-2008-11-19">AssociatedSamples</a></TD>
|
||||
<TR><TH colspan="2"><A name="AssociatedSequences">Term Name: AssociatedSequences</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/AssociatedSequences</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Definition:</TD><TD>A list (concatenated and separated) of identifiers (publication, global unique identifier, URL) of genetic sequence information associated with the sample.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/AssociatedSequences">http://code.google.com/p/darwincore/wiki/AssociatedSequences</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#AssociatedSequences-2008-11-19">AssociatedSequences</a></TD>
|
||||
<TR><TH colspan="2"><A name="AssociatedTaxa">Term Name: AssociatedTaxa</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/AssociatedTaxa</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Sample</TD></TR> <TR><TD>Definition:</TD><TD>A list (concatenated and separated) of identifiers or names of taxa associated with the sample and their associations.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "host: Quercus alba". See <a href="http://code.google.com/p/darwincore/wiki/AssociatedTaxa">http://code.google.com/p/darwincore/wiki/AssociatedTaxa</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#AssociatedTaxa-2008-11-19">AssociatedTaxa</a></TD>
|
||||
<TR><TH colspan="2"><A name="SamplingEventID">Term Name: SamplingEventID</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEventID</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEvent</TD></TR> <TR><TD>Definition:</TD><TD>An identifier for the sampling event. May be a global unique identifier or an identifier specific to the data set.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/SamplingEventID">http://code.google.com/p/darwincore/wiki/SamplingEventID</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#SamplingEventID-2008-11-19">SamplingEventID</a></TD>
|
||||
<TR><TH colspan="2"><A name="SamplingProtocol">Term Name: SamplingProtocol</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingProtocol</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEvent</TD></TR> <TR><TD>Definition:</TD><TD>The name of, reference to, or brief description of the method or protocol used for the sampling event.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "UV light trap", "mist net", "bottom trawl". See <a href="http://code.google.com/p/darwincore/wiki/SamplingProtocol">http://code.google.com/p/darwincore/wiki/SamplingProtocol</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#SamplingProtocol-2008-11-19">SamplingProtocol</a></TD>
|
||||
<TR><TH colspan="2"><A name="VerbatimCollectingDate">Term Name: VerbatimCollectingDate</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/VerbatimCollectingDate</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEvent</TD></TR> <TR><TD>Definition:</TD><TD>The verbatim original representation of the date (and time) information for the sampling event.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "spring 1910". See <a href="http://code.google.com/p/darwincore/wiki/VerbatimCollectingDate">http://code.google.com/p/darwincore/wiki/VerbatimCollectingDate</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#VerbatimCollectingDate-2008-11-19">VerbatimCollectingDate</a></TD>
|
||||
<TR><TH colspan="2"><A name="EarliestDateCollected">Term Name: EarliestDateCollected</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/EarliestDateCollected</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEvent</TD></TR> <TR><TD>Definition:</TD><TD>The earliest date-time in a period during which a sampling event occurred. If the event is recorded as occurring at a single date-time, populate both EarliestDateCollected and LatestDateCollected with the same value.</TD></TR> <TR><TD>Comment:</TD><TD>Date may be used to express temporal information at any level of granularity. Recommended best practice is to use an encoding scheme, such as the W3CDTF profile of ISO 8601 [W3CDTF]. See <a href="http://code.google.com/p/darwincore/wiki/EarliestDateCollected">http://code.google.com/p/darwincore/wiki/EarliestDateCollected</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#EarliestDateCollected-2008-11-19">EarliestDateCollected</a></TD>
|
||||
<TR><TH colspan="2"><A name="LatestDateCollected">Term Name: LatestDateCollected</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/LatestDateCollected</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEvent</TD></TR> <TR><TD>Definition:</TD><TD>The latest date-time in a period during which a sampling event occurred. If the event is recorded as occurring at a single date-time, populate both EarliestDateCollected and LatestDateCollected with the same value.</TD></TR> <TR><TD>Comment:</TD><TD>Date may be used to express temporal information at any level of granularity. Recommended best practice is to use an encoding scheme, such as the W3CDTF profile of ISO 8601 [W3CDTF]. See <a href="http://code.google.com/p/darwincore/wiki/LatestDateCollected">http://code.google.com/p/darwincore/wiki/LatestDateCollected</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#LatestDateCollected-2008-11-19">LatestDateCollected</a></TD>
|
||||
<TR><TH colspan="2"><A name="StartDayOfYear">Term Name: StartDayOfYear</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/StartDayOfYear</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEvent</TD></TR> <TR><TD>Definition:</TD><TD>The earliest ordinal day of the year on which the sampling 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>Comment:</TD><TD>Examples: "1" (=1 Jan), "366" (=31 Dec), "365" (=30 Dec in a leap year, 31 Dec in a non-leap year). See <a href="http://code.google.com/p/darwincore/wiki/StartDayOfYear">http://code.google.com/p/darwincore/wiki/StartDayOfYear</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#StartDayOfYear-2009-01-21">StartDayOfYear</a></TD>
|
||||
<TR><TH colspan="2"><A name="EndDayOfYear">Term Name: EndDayOfYear</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/EndDayOfYear</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEvent</TD></TR> <TR><TD>Definition:</TD><TD>The latest ordinal day of the year on which the sampling 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>Comment:</TD><TD>Examples: "1" (=1 Jan), "366" (=31 Dec), "365" (=30 Dec in a leap year, 31 Dec in a non-leap year). See <a href="http://code.google.com/p/darwincore/wiki/EndDayOfYear">http://code.google.com/p/darwincore/wiki/EndDayOfYear</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#EndDayOfYear-2009-01-21">EndDayOfYear</a></TD>
|
||||
<TR><TH colspan="2"><A name="StartTimeOfDay">Term Name: StartTimeOfDay</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/StartTimeOfDay</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEvent</TD></TR> <TR><TD>Definition:</TD><TD>The time of day when the sampling event began, expressed as decimal hours from midnight, local time.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "12.0" (= noon), "13.5" (= 1:30pm). See <a href="http://code.google.com/p/darwincore/wiki/StartTimeOfDay">http://code.google.com/p/darwincore/wiki/StartTimeOfDay</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#StartTimeOfDay-2008-11-19">StartTimeOfDay</a></TD>
|
||||
<TR><TH colspan="2"><A name="EndTimeOfDay">Term Name: EndTimeOfDay</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/EndTimeOfDay</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEvent</TD></TR> <TR><TD>Definition:</TD><TD>The time of day when the sampling event ended, expressed as decimal hours from midnight, local time.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "12.0" (= noon), "13.5" (= 1:30pm). See <a href="http://code.google.com/p/darwincore/wiki/EndTimeOfDay">http://code.google.com/p/darwincore/wiki/EndTimeOfDay</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#EndTimeOfDay-2008-11-19">EndTimeOfDay</a></TD>
|
||||
<TR><TH colspan="2"><A name="EventAttribute">Term Name: EventAttribute</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/EventAttribute</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEvent</TD></TR> <TR><TD>Definition:</TD><TD>Container class for information about attributes related to a given sampling event.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/EventAttribute">http://code.google.com/p/darwincore/wiki/EventAttribute</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#EventAttribute-2008-11-19">EventAttribute</a></TD>
|
||||
<TR><TH colspan="2"><A name="YearSampled">Term Name: YearSampled</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/YearSampled</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEvent</TD></TR> <TR><TD>Definition:</TD><TD>The four-digit year in which the sampling event occurred, according to the Common Era Calendar.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "2008". See <a href="http://code.google.com/p/darwincore/wiki/YearSampled">http://code.google.com/p/darwincore/wiki/YearSampled</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#YearSampled-2008-11-19">YearSampled</a></TD>
|
||||
<TR><TH colspan="2"><A name="MonthOfYear">Term Name: MonthOfYear</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/MonthOfYear</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEvent</TD></TR> <TR><TD>Definition:</TD><TD>The ordinal month in which the sampling event occurred.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "10" (=October). See <a href="http://code.google.com/p/darwincore/wiki/MonthOfYear">http://code.google.com/p/darwincore/wiki/MonthOfYear</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#MonthOfYear-2008-11-19">MonthOfYear</a></TD>
|
||||
<TR><TH colspan="2"><A name="DayOfMonth">Term Name: DayOfMonth</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/DayOfMonth</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEvent</TD></TR> <TR><TD>Definition:</TD><TD>The two-digit day of the month in which the sampling event occurred.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "28". See <a href="http://code.google.com/p/darwincore/wiki/DayOfMonth">http://code.google.com/p/darwincore/wiki/DayOfMonth</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#DayOfMonth-2008-11-19">DayOfMonth</a></TD>
|
||||
<TR><TH colspan="2"><A name="Habitat">Term Name: Habitat</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Habitat</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEvent</TD></TR> <TR><TD>Definition:</TD><TD>A description of the habitat in which the sampling event occurred.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "oak savanna". See <a href="http://code.google.com/p/darwincore/wiki/Habitat">http://code.google.com/p/darwincore/wiki/Habitat</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#Habitat-2008-11-19">Habitat</a></TD>
|
||||
<TR><TH colspan="2"><A name="Behavior">Term Name: Behavior</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Behavior</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEvent</TD></TR> <TR><TD>Definition:</TD><TD>A description of the behavior shown by the sampled subject during the sampling event. Recommended best practice is to use a controlled vocabulary.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "roosting", "foraging", "running". See <a href="http://code.google.com/p/darwincore/wiki/Behavior">http://code.google.com/p/darwincore/wiki/Behavior</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#Behavior-2009-01-18">Behavior</a></TD>
|
||||
<TR><TH colspan="2"><A name="Collector">Term Name: Collector</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Collector</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEvent</TD></TR> <TR><TD>Definition:</TD><TD>A list (concatenated and separated) of names of people, groups, or organizations responsible for the collection of the sample. The primary collector or observer, especially one whose CollectorNumber is also provided, should be listed first.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Oliver P. Pearson, Anita K. Pearson" where the value in CollectorNumber "OPP 7101" corresponds to the number for the specimen in the field catalog (collector number) of Oliver P. Pearson. See <a href="http://code.google.com/p/darwincore/wiki/Collector">http://code.google.com/p/darwincore/wiki/Collector</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#Collector-2008-11-19">Collector</a></TD>
|
||||
<TR><TH colspan="2"><A name="CollectorNumber">Term Name: CollectorNumber</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/CollectorNumber</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEvent</TD></TR> <TR><TD>Definition:</TD><TD>An identifier given to the sample at the time of the sampling event. Often serves as a link between field notes and the sample.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "OPP 7101". See <a href="http://code.google.com/p/darwincore/wiki/CollectorNumber">http://code.google.com/p/darwincore/wiki/CollectorNumber</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#CollectorNumber-2008-11-19">CollectorNumber</a></TD>
|
||||
<TR><TH colspan="2"><A name="FieldNumber">Term Name: FieldNumber</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/FieldNumber</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEvent</TD></TR> <TR><TD>Definition:</TD><TD>An identifier given to the sampling event in the field. Often serves as a link between field notes and the sampling event.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "RV Sol 87-03-08". See <a href="http://code.google.com/p/darwincore/wiki/FieldNumber">http://code.google.com/p/darwincore/wiki/FieldNumber</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#FieldNumber-2008-11-19">FieldNumber</a></TD>
|
||||
<TR><TH colspan="2"><A name="FieldNotes">Term Name: FieldNotes</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/FieldNotes</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEvent</TD></TR> <TR><TD>Definition:</TD><TD>One of a) an indicator of the existence of, b) a reference to (publication, URL), or c) the text of notes taken in the field about the sample.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "notes available in Grinnell-Miller Library". See <a href="http://code.google.com/p/darwincore/wiki/FieldNotes">http://code.google.com/p/darwincore/wiki/FieldNotes</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#FieldNotes-2009-01-21">FieldNotes</a></TD>
|
||||
<TR><TH colspan="2"><A name="SamplingEventAttributes">Term Name: SamplingEventAttributes</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEventAttributes</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEvent</TD></TR> <TR><TD>Definition:</TD><TD>A list (concatenated and separated) of additional measurements or characteristics of the sampling event.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Relative humidity: 28%; Temperature: 22 Celcius; Sample size: 10 kg". See <a href="http://code.google.com/p/darwincore/wiki/SamplingEventAttributes">http://code.google.com/p/darwincore/wiki/SamplingEventAttributes</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#SamplingEventAttributes-2008-11-19">SamplingEventAttributes</a></TD>
|
||||
<TR><TH colspan="2"><A name="SamplingEventRemarks">Term Name: SamplingEventRemarks</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEventRemarks</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingEvent</TD></TR> <TR><TD>Definition:</TD><TD>Comments or notes about the sampling event.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "found dead on road". See <a href="http://code.google.com/p/darwincore/wiki/SamplingEventRemarks">http://code.google.com/p/darwincore/wiki/SamplingEventRemarks</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#SamplingEventRemarks-2009-01-18">SamplingEventRemarks</a></TD>
|
||||
<TR><TH colspan="2"><A name="SamplingLocationID">Term Name: SamplingLocationID</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocationID</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Definition:</TD><TD>An identifier for the sampling location. May be a global unique identifier or an identifier specific to the data set.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "MVZ:LocID:12345". See <a href="http://code.google.com/p/darwincore/wiki/SamplingLocationID">http://code.google.com/p/darwincore/wiki/SamplingLocationID</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#SamplingLocationID-2008-11-19">SamplingLocationID</a></TD>
|
||||
<TR><TH colspan="2"><A name="HigherGeographyID">Term Name: HigherGeographyID</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/HigherGeographyID</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Definition:</TD><TD>A global unique identifier for the parent of the location.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/HigherGeographyID">http://code.google.com/p/darwincore/wiki/HigherGeographyID</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#HigherGeographyID-2009-01-21">HigherGeographyID</a></TD>
|
||||
<TR><TH colspan="2"><A name="HigherGeography">Term Name: HigherGeography</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/HigherGeography</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Definition:</TD><TD>A list (concatenated and separated) of geographic names less specific than the information in the Locality term. "LIKE" or "contains" substring query operations can be used with this element to find matching geographic names. This can be useful if it is unclear in which atomized term a name might be found, and in cases where there is no other appropriate geographic element.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "South America, Argentina, Patagonia, Parque Nacional Nahuel Huapi, Neuquén, Los Lagos" with accompanying values "South America" in Continent, "Argentina" in Country, "Neuquén" in StateProvince, and Los Lagos in County. See <a href="http://code.google.com/p/darwincore/wiki/HigherGeography">http://code.google.com/p/darwincore/wiki/HigherGeography</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#HigherGeography-2009-01-21">HigherGeography</a></TD>
|
||||
<TR><TH colspan="2"><A name="Continent">Term Name: Continent</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Continent</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Definition:</TD><TD>The full, unabbreviated name of the continent on which the sampling event occurred. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Antarctica". See <a href="http://code.google.com/p/darwincore/wiki/Continent">http://code.google.com/p/darwincore/wiki/Continent</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#Continent-2008-11-19">Continent</a></TD>
|
||||
<TR><TH colspan="2"><A name="Waterbody">Term Name: Waterbody</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Waterbody</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Definition:</TD><TD>The full, unabbreviated name of the water body in which the sampling event occurred. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Indian Ocean", "Baltic Sea". See <a href="http://code.google.com/p/darwincore/wiki/Waterbody">http://code.google.com/p/darwincore/wiki/Waterbody</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#Waterbody-2008-11-19">Waterbody</a></TD>
|
||||
<TR><TH colspan="2"><A name="IslandGroup">Term Name: IslandGroup</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/IslandGroup</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Definition:</TD><TD>The full, unabbreviated name of the island group in which the sampling event occurred. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Alexander Archipelago". See <a href="http://code.google.com/p/darwincore/wiki/IslandGroup">http://code.google.com/p/darwincore/wiki/IslandGroup</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#IslandGroup-2008-11-19">IslandGroup</a></TD>
|
||||
<TR><TH colspan="2"><A name="Island">Term Name: Island</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Island</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Definition:</TD><TD>The full, unabbreviated name of the island in which the sampling event occurred. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Isla Victoria". See <a href="http://code.google.com/p/darwincore/wiki/Island">http://code.google.com/p/darwincore/wiki/Island</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#Island-2008-11-19">Island</a></TD>
|
||||
<TR><TH colspan="2"><A name="Country">Term Name: Country</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Country</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Definition:</TD><TD>The full, unabbreviated name of the country or major political unit in which the sampling event occurred. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "Denmark", "Colombia", "España". See <a href="http://code.google.com/p/darwincore/wiki/Country">http://code.google.com/p/darwincore/wiki/Country</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#Country-2008-11-19">Country</a></TD>
|
||||
<TR><TH colspan="2"><A name="CountryCode">Term Name: CountryCode</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/CountryCode</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Definition:</TD><TD>The standard code for the country in which the sampling event occurred. Recommended best practice is to used ISO 3166 3-letter country code.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "ARG" (=Argentina), "SLV" (=El Salvador). See <a href="http://code.google.com/p/darwincore/wiki/CountryCode">http://code.google.com/p/darwincore/wiki/CountryCode</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#CountryCode-2008-11-19">CountryCode</a></TD>
|
||||
<TR><TH colspan="2"><A name="StateProvince">Term Name: StateProvince</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/StateProvince</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Definition:</TD><TD>The full, unabbreviated name of the next smaller political region than Country (state, province, canton, department, region, etc.) in which sampling event occurred.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "Montana", "Minas Gerais", "Córdoba". See <a href="http://code.google.com/p/darwincore/wiki/StateProvince">http://code.google.com/p/darwincore/wiki/StateProvince</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#StateProvince-2008-11-19">StateProvince</a></TD>
|
||||
<TR><TH colspan="2"><A name="County">Term Name: County</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/County</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Definition:</TD><TD>The full, unabbreviated name of the next smaller political region than StateProvince (county, shire, municipality, etc.) in which the sampling event occurred.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "Missoula", "Los Lagos", "Mataró". See <a href="http://code.google.com/p/darwincore/wiki/County">http://code.google.com/p/darwincore/wiki/County</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#County-2008-11-19">County</a></TD>
|
||||
<TR><TH colspan="2"><A name="Locality">Term Name: Locality</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Locality</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Definition:</TD><TD>The specific place where the sampling event occurred. More general geographic information can be provided in other geographic terms (HigherGeography, Continent, Country, StateProvince, County, WaterBody, Island, IslandGroup). This term may contain a description modified from the the original to correct perceived errors or standardize the description.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Bariloche, 25 km NNE via Ruta Nacional 40 (=Ruta 237)". See <a href="http://code.google.com/p/darwincore/wiki/Locality">http://code.google.com/p/darwincore/wiki/Locality</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#Locality-2008-11-19">Locality</a></TD>
|
||||
<TR><TH colspan="2"><A name="VerbatimLocality">Term Name: VerbatimLocality</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/VerbatimLocality</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Definition:</TD><TD>The original description of the specific place where the sampling event occurred.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "25 km NNE Bariloche por R. Nac. 237". See <a href="http://code.google.com/p/darwincore/wiki/VerbatimLocality">http://code.google.com/p/darwincore/wiki/VerbatimLocality</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#VerbatimLocality-2008-11-19">VerbatimLocality</a></TD>
|
||||
<TR><TH colspan="2"><A name="VerbatimElevation">Term Name: VerbatimElevation</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/VerbatimElevation</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Definition:</TD><TD>The original description of the elevation (altitude, usually above sea level) at which the sampling event occurred.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "100-200 m". See <a href="http://code.google.com/p/darwincore/wiki/VerbatimElevation">http://code.google.com/p/darwincore/wiki/VerbatimElevation</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#VerbatimElevation-2008-11-19">VerbatimElevation</a></TD>
|
||||
<TR><TH colspan="2"><A name="MinimumElevationInMeters">Term Name: MinimumElevationInMeters</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/MinimumElevationInMeters</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Definition:</TD><TD>The lower limit of the range of elevation (altitude, usually above sea level), in meters, at which the sampling event occurred.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "100". See <a href="http://code.google.com/p/darwincore/wiki/MinimumElevationInMeters">http://code.google.com/p/darwincore/wiki/MinimumElevationInMeters</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#MinimumElevationInMeters-2008-11-19">MinimumElevationInMeters</a></TD>
|
||||
<TR><TH colspan="2"><A name="MaximumElevationInMeters">Term Name: MaximumElevationInMeters</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/MaximumElevationInMeters</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Definition:</TD><TD>The upper limit of the range of elevation (altitude, usually above sea level), in meters, at which the sampling event occurred.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "200". See <a href="http://code.google.com/p/darwincore/wiki/MaximumElevationInMeters">http://code.google.com/p/darwincore/wiki/MaximumElevationInMeters</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#MaximumElevationInMeters-2008-11-19">MaximumElevationInMeters</a></TD>
|
||||
<TR><TH colspan="2"><A name="VerbatimDepth">Term Name: VerbatimDepth</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/VerbatimDepth</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Definition:</TD><TD>The original description of the depth (below the local surface) at which the sampling event occurred.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "100-200 m". See <a href="http://code.google.com/p/darwincore/wiki/VerbatimDepth">http://code.google.com/p/darwincore/wiki/VerbatimDepth</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#VerbatimDepth-2008-11-19">VerbatimDepth</a></TD>
|
||||
<TR><TH colspan="2"><A name="MinimumDepthInMeters">Term Name: MinimumDepthInMeters</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/MinimumDepthInMeters</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Definition:</TD><TD>The lesser depth in meters of a range of depth (below the local surface) at with the sampling event occurred.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "100". See <a href="http://code.google.com/p/darwincore/wiki/MinimumDepthInMeters">http://code.google.com/p/darwincore/wiki/MinimumDepthInMeters</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#MinimumDepthInMeters-2008-11-19">MinimumDepthInMeters</a></TD>
|
||||
<TR><TH colspan="2"><A name="MaximumDepthInMeters">Term Name: MaximumDepthInMeters</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/MaximumDepthInMeters</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Definition:</TD><TD>The greater depth in meters of a range of depth (below the local surface) at with the sampling event occurred.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "200". See <a href="http://code.google.com/p/darwincore/wiki/MaximumDepthInMeters">http://code.google.com/p/darwincore/wiki/MaximumDepthInMeters</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#MaximumDepthInMeters-2008-11-19">MaximumDepthInMeters</a></TD>
|
||||
<TR><TH colspan="2"><A name="DistanceAboveSurfaceInMetersMinimum">Term Name: DistanceAboveSurfaceInMetersMinimum</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/DistanceAboveSurfaceInMetersMinimum</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Definition:</TD><TD>The lesser distance in meters in a range of distance (from the nearest surface in the vertical direction; positive for above, negative for below) at which the sampling event occurred.</TD></TR> <TR><TD>Comment:</TD><TD>Example: 1.5 meter sediment core from the bottom of a lake (at depth 20m) at 300m elevation; VerbatimElevation: "300m" MinimumElevationInMeters: "300", MaximumElevationInMeters: "300", VerbatimDepth: "20m", MinumumDepthInMeters: "20", MaximumDepthInMeters: "20", DistanceAboveSurfaceInMetersMinimum: "0", DistanceAboveSurfaceInMetersMaximum: "-1.5". See <a href="http://code.google.com/p/darwincore/wiki/DistanceAboveSurfaceInMetersMinimum">http://code.google.com/p/darwincore/wiki/DistanceAboveSurfaceInMetersMinimum</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#DistanceAboveSurfaceInMetersMinimum-2008-11-19">DistanceAboveSurfaceInMetersMinimum</a></TD>
|
||||
<TR><TH colspan="2"><A name="DistanceAboveSurfaceInMetersMaximum">Term Name: DistanceAboveSurfaceInMetersMaximum</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/DistanceAboveSurfaceInMetersMaximum</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Definition:</TD><TD>The greater distance in meters in a range of distance (from the nearest surface in the vertical direction; positive for above, negative for below) at which the sampling event occurred.</TD></TR> <TR><TD>Comment:</TD><TD>Example: 1.5 meter sediment core from the bottom of a lake (at depth 20m) at 300m elevation; VerbatimElevation: "300m" MinimumElevationInMeters: "300", MaximumElevationInMeters: "300", VerbatimDepth: "20m", MinumumDepthInMeters: "20", MaximumDepthInMeters: "20", DistanceAboveSurfaceInMetersMinimum: "0", DistanceAboveSurfaceInMetersMaximum: "-1.5". See <a href="http://code.google.com/p/darwincore/wiki/DistanceAboveSurfaceInMetersMaximum">http://code.google.com/p/darwincore/wiki/DistanceAboveSurfaceInMetersMaximum</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#DistanceAboveSurfaceInMetersMaximum-2008-11-19">DistanceAboveSurfaceInMetersMaximum</a></TD>
|
||||
<TR><TH colspan="2"><A name="DecimalLatitude">Term Name: DecimalLatitude</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/DecimalLatitude</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Definition:</TD><TD>The geographic latitude (in decimal degrees, using the coordinate reference system given in GeodeticDatum) of the geographic center of a sampling location. Positive values are north of the Equator, negative values are south of it.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "-41.0983423". See <a href="http://code.google.com/p/darwincore/wiki/DecimalLatitude">http://code.google.com/p/darwincore/wiki/DecimalLatitude</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#DecimalLatitude-2008-11-19">DecimalLatitude</a></TD>
|
||||
<TR><TH colspan="2"><A name="DecimalLongitude">Term Name: DecimalLongitude</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/DecimalLongitude</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Definition:</TD><TD>The geographic longitude (in decimal degrees, using the coordinate reference system given in GeodeticDatum) of the geographic center of a sampling location. Positive values are east of the Greenwich Meridian, negative values are west of it.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "-121.1761111". See <a href="http://code.google.com/p/darwincore/wiki/DecimalLongitude">http://code.google.com/p/darwincore/wiki/DecimalLongitude</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#DecimalLongitude-2008-11-19">DecimalLongitude</a></TD>
|
||||
<TR><TH colspan="2"><A name="GeodeticDatum">Term Name: GeodeticDatum</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/GeodeticDatum</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Definition:</TD><TD>The geodetic datum (or ellipsoid) for the geographic coordinates in DecimalLatitude, DecimalLongitude, VerbatimCoordinates, VerbatimLatitude, and VerbatimLongitude. Recommended best practice is to use a controlled vocabulary.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "WGS84", "NAD27", "Campo Inchauspe", "European 1950", "Clarke 1866". See <a href="http://code.google.com/p/darwincore/wiki/GeodeticDatum">http://code.google.com/p/darwincore/wiki/GeodeticDatum</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#GeodeticDatum-2008-11-19">GeodeticDatum</a></TD>
|
||||
<TR><TH colspan="2"><A name="CoordinateUncertaintyInMeters">Term Name: CoordinateUncertaintyInMeters</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/CoordinateUncertaintyInMeters</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Definition:</TD><TD>The upper limit of the distance (in meters) from the given DecimalLatitude and DecimalLongitude describing a circle within which the whole of the sampling location is contained. 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.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "30" (reasonable lower limit of a GPS reading under good conditions if the actual precision was not recorded at the time). See <a href="http://code.google.com/p/darwincore/wiki/CoordinateUncertaintyInMeters">http://code.google.com/p/darwincore/wiki/CoordinateUncertaintyInMeters</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#CoordinateUncertaintyInMeters-2008-11-19">CoordinateUncertaintyInMeters</a></TD>
|
||||
<TR><TH colspan="2"><A name="CoordinatePrecision">Term Name: CoordinatePrecision</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/CoordinatePrecision</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Definition:</TD><TD>A decimal representation of the precision of the coordinates given in the DecimalLatitude and DecimalLongitude.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "0.00001" (normal GPS limit for decimal degrees), "0.000278" (nearest second), "0.01667" (nearest minute), "1.0" (nearest degree). See <a href="http://code.google.com/p/darwincore/wiki/CoordinatePrecision">http://code.google.com/p/darwincore/wiki/CoordinatePrecision</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#CoordinatePrecision-2008-11-19">CoordinatePrecision</a></TD>
|
||||
<TR><TH colspan="2"><A name="PointRadiusSpatialFit">Term Name: PointRadiusSpatialFit</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/PointRadiusSpatialFit</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></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 sampling 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>Comment:</TD><TD>Detailed explanations with graphical examples can be found in the "Guide to Best Practices for Georeferencing" (Chapman and Wieczorek, eds. 2006). See <a href="http://code.google.com/p/darwincore/wiki/PointRadiusSpatialFit">http://code.google.com/p/darwincore/wiki/PointRadiusSpatialFit</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#PointRadiusSpatialFit-2008-11-19">PointRadiusSpatialFit</a></TD>
|
||||
<TR><TH colspan="2"><A name="VerbatimCoordinates">Term Name: VerbatimCoordinates</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/VerbatimCoordinates</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Definition:</TD><TD>The original spatial coordinates of the place where the sampling event occurred. The coordinate reference system (datum, ellipsoid) for these coordinates should be stored in GeodeticDatum and the coordinate system should be stored in VerbatimCoordinateSystem.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "41 05 54S 121 05 34W". See <a href="http://code.google.com/p/darwincore/wiki/VerbatimCoordinates">http://code.google.com/p/darwincore/wiki/VerbatimCoordinates</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#VerbatimCoordinates-2008-11-19">VerbatimCoordinates</a></TD>
|
||||
<TR><TH colspan="2"><A name="VerbatimLatitude">Term Name: VerbatimLatitude</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/VerbatimLatitude</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Definition:</TD><TD>The verbatim original latitude of the place where the sampling event occurred. The coordinate reference system (datum, ellipsoid) for these coordinates should be stored in GeodeticDatum and the coordinate system should be stored in VerbatimCoordinateSystem.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "41 05 54.03S". See <a href="http://code.google.com/p/darwincore/wiki/VerbatimLatitude">http://code.google.com/p/darwincore/wiki/VerbatimLatitude</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#VerbatimLatitude-2008-11-19">VerbatimLatitude</a></TD>
|
||||
<TR><TH colspan="2"><A name="VerbatimLongitude">Term Name: VerbatimLongitude</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/VerbatimLongitude</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Definition:</TD><TD>The verbatim original longitude of the place where the sampling event occurred. The coordinate reference system (datum, ellipsoid) for these coordinates should be stored in GeodeticDatum and the coordinate system should be stored in VerbatimCoordinateSystem.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "121d 10' 34" W". See <a href="http://code.google.com/p/darwincore/wiki/VerbatimLongitude">http://code.google.com/p/darwincore/wiki/VerbatimLongitude</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#VerbatimLongitude-2008-11-19">VerbatimLongitude</a></TD>
|
||||
<TR><TH colspan="2"><A name="GeoreferencedBy">Term Name: GeoreferencedBy</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/GeoreferencedBy</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Definition:</TD><TD>The name(s) of the person(s) who applied the Georeference to the SampleLocation.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Heather Constable, Carol Spencer". See <a href="http://code.google.com/p/darwincore/wiki/GeoreferencedBy">http://code.google.com/p/darwincore/wiki/GeoreferencedBy</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#GeoreferencedBy-2009-01-21">GeoreferencedBy</a></TD>
|
||||
<TR><TH colspan="2"><A name="GeoreferenceProtocol">Term Name: GeoreferenceProtocol</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/GeoreferenceProtocol</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Definition:</TD><TD>A description or reference to the methods used to determine the spatial footprint, coordinates, and uncertainties.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "GBIF Best Practices for Georeferencing", "MaNIS/HerpNet/ORNIS Georeferencing Guidelines", "BioGeomancer". See <a href="http://code.google.com/p/darwincore/wiki/GeoreferenceProtocol">http://code.google.com/p/darwincore/wiki/GeoreferenceProtocol</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#GeoreferenceProtocol-2008-11-19">GeoreferenceProtocol</a></TD>
|
||||
<TR><TH colspan="2"><A name="VerbatimCoordinateSystem">Term Name: VerbatimCoordinateSystem</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/VerbatimCoordinateSystem</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Definition:</TD><TD>The spatial coordinate system for the VerbatimLatitude and VerbatimLongitude or the VerbatimCoordinates of the place where the sampling event occurred. Recommended best practice is to use a controlled vocabulary.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "decimal degrees", "degrees decimal minutes", "degrees minutes seconds", "UTM", "Gauss-Kruger". See <a href="http://code.google.com/p/darwincore/wiki/VerbatimCoordinateSystem">http://code.google.com/p/darwincore/wiki/VerbatimCoordinateSystem</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#VerbatimCoordinateSystem-2008-11-19">VerbatimCoordinateSystem</a></TD>
|
||||
<TR><TH colspan="2"><A name="GeoreferenceSources">Term Name: GeoreferenceSources</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/GeoreferenceSources</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Definition:</TD><TD>A list (concatenated and separated) of maps, gazetteers, or other resources used to georeference the locality, described specifically enough to allow anyone in the future to use the same resource to georeference the same locality.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "USGS 1:24000 Florence Montana Quad", "Terrametrics 2008 on Google Earth". See <a href="http://code.google.com/p/darwincore/wiki/GeoreferenceSources">http://code.google.com/p/darwincore/wiki/GeoreferenceSources</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#GeoreferenceSources-2008-11-19">GeoreferenceSources</a></TD>
|
||||
<TR><TH colspan="2"><A name="GeoreferenceVerificationStatus">Term Name: GeoreferenceVerificationStatus</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/GeoreferenceVerificationStatus</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Definition:</TD><TD>A categorical description of the extent to which the georeference has been verified to represent the location where the specimen or observation was collected. Recommended best practice is to use a controlled vocabulary.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "requires verification", "verified by collector", "verified by curator". See <a href="http://code.google.com/p/darwincore/wiki/GeoreferenceVerificationStatus">http://code.google.com/p/darwincore/wiki/GeoreferenceVerificationStatus</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#GeoreferenceVerificationStatus-2008-11-19">GeoreferenceVerificationStatus</a></TD>
|
||||
<TR><TH colspan="2"><A name="GeoreferenceRemarks">Term Name: GeoreferenceRemarks</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/GeoreferenceRemarks</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Definition:</TD><TD>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.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "assumed distance by road (Hwy. 101)". See <a href="http://code.google.com/p/darwincore/wiki/GeoreferenceRemarks">http://code.google.com/p/darwincore/wiki/GeoreferenceRemarks</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#GeoreferenceRemarks-2008-11-19">GeoreferenceRemarks</a></TD>
|
||||
<TR><TH colspan="2"><A name="FootprintWKT">Term Name: FootprintWKT</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/FootprintWKT</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Definition:</TD><TD>A Well-Known Text (WKT) representation of the the shape (footprint, geometry) that defines the location of the occurrence. The sampling location may have both a point-radius representation (see DecimalLatitude) and a footprint representation, and they may differ from each other for a given location.</TD></TR> <TR><TD>Comment:</TD><TD>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)). See <a href="http://code.google.com/p/darwincore/wiki/FootprintWKT">http://code.google.com/p/darwincore/wiki/FootprintWKT</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#FootprintWKT-2008-11-19">FootprintWKT</a></TD>
|
||||
<TR><TH colspan="2"><A name="FootprintSpatialFit">Term Name: FootprintSpatialFit</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/FootprintSpatialFit</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></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 sampling 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>Comment:</TD><TD>Detailed explanations with graphical examples can be found in the "Guide to Best Practices for Georeferencing" (Chapman and Wieczorek, eds. 2006). See <a href="http://code.google.com/p/darwincore/wiki/FootprintSpatialFit">http://code.google.com/p/darwincore/wiki/FootprintSpatialFit</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#FootprintSpatialFit-2008-11-19">FootprintSpatialFit</a></TD>
|
||||
<TR><TH colspan="2"><A name="SamplingLocationRemarks">Term Name: SamplingLocationRemarks</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocationRemarks</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingLocation</TD></TR> <TR><TD>Definition:</TD><TD>Comments or notes about the sampling location.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "under water since 2005". See <a href="http://code.google.com/p/darwincore/wiki/SamplingLocationRemarks">http://code.google.com/p/darwincore/wiki/SamplingLocationRemarks</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#SamplingLocationRemarks-2009-01-18">SamplingLocationRemarks</a></TD>
|
||||
<TR><TH colspan="2"><A name="IdentificationID">Term Name: IdentificationID</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/IdentificationID</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Identification</TD></TR> <TR><TD>Definition:</TD><TD>An identifier for the Identification. May be a global unique identifier or an identifier specific to the data set.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/IdentificationID">http://code.google.com/p/darwincore/wiki/IdentificationID</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#IdentificationID-2008-11-19">IdentificationID</a></TD>
|
||||
<TR><TH colspan="2"><A name="IdentifiedBy">Term Name: IdentifiedBy</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/IdentifiedBy</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Identification</TD></TR> <TR><TD>Definition:</TD><TD>The name(s) of the person(s) who applied the ScientificName to the sample.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "James L. Patton". See <a href="http://code.google.com/p/darwincore/wiki/IdentifiedBy">http://code.google.com/p/darwincore/wiki/IdentifiedBy</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#IdentifiedBy-2009-01-21">IdentifiedBy</a></TD>
|
||||
<TR><TH colspan="2"><A name="DateIdentified">Term Name: DateIdentified</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/DateIdentified</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Identification</TD></TR> <TR><TD>Definition:</TD><TD>The date on which the sample was identified as being a member of the taxon given in the ScientificName.</TD></TR> <TR><TD>Comment:</TD><TD>Date may be used to express temporal information at any level of granularity. Recommended best practice is to use an encoding scheme, such as the W3CDTF profile of ISO 8601 [W3CDTF]. See <a href="http://code.google.com/p/darwincore/wiki/DateIdentified">http://code.google.com/p/darwincore/wiki/DateIdentified</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#DateIdentified-2008-11-19">DateIdentified</a></TD>
|
||||
<TR><TH colspan="2"><A name="IdentificationReferences">Term Name: IdentificationReferences</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/IdentificationReferences</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Identification</TD></TR> <TR><TD>Definition:</TD><TD>A list (concatenated and separated) of identifiers (publication, global unique identifier, URL) of references used in the identification of the sample.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Aves del Noroeste Patagonico. Christie et al. 2004.". See <a href="http://code.google.com/p/darwincore/wiki/IdentificationReferences">http://code.google.com/p/darwincore/wiki/IdentificationReferences</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#IdentificationReferences-2008-11-19">IdentificationReferences</a></TD>
|
||||
<TR><TH colspan="2"><A name="IdentificationRemarks">Term Name: IdentificationRemarks</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/IdentificationRemarks</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Identification</TD></TR> <TR><TD>Definition:</TD><TD>Comments or notes about the identification of the sample.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Distinguished between Anthus correndera and Anthus hellmayri based on the comparative lengths of the uñas.". See <a href="http://code.google.com/p/darwincore/wiki/IdentificationRemarks">http://code.google.com/p/darwincore/wiki/IdentificationRemarks</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#IdentificationRemarks-2008-11-19">IdentificationRemarks</a></TD>
|
||||
<TR><TH colspan="2"><A name="PreviousIdentifications">Term Name: PreviousIdentifications</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/PreviousIdentifications</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Identification</TD></TR> <TR><TD>Definition:</TD><TD>A list (concatenated and separated) of previous ScientificNames to which the sample was identified.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Anthus correndera". See <a href="http://code.google.com/p/darwincore/wiki/PreviousIdentifications">http://code.google.com/p/darwincore/wiki/PreviousIdentifications</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#PreviousIdentifications-2008-11-19">PreviousIdentifications</a></TD>
|
||||
<TR><TH colspan="2"><A name="IdentificationQualifier">Term Name: IdentificationQualifier</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/IdentificationQualifier</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Identification</TD></TR> <TR><TD>Definition:</TD><TD>A brief phrase or a standard term ("cf.", "aff.") to express the identifier's doubts about the taxonomic identification of the sample.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: 1) For the determination "Quercus aff. agrifolia var. oxyadenia", IdentificationQualifier would be "aff. agrifolia var. oxyadenia" with accompanying values "Quercus" in Genus, "agrifolia" in SpecificEpithet, "oxyadenia" in InfraspecificEpithet, and "var." in InfraspecificRank. 2) For the determination "Quercus agrifolia cf. var. oxyadenia", IdentificationQualifier would be "cf. var. oxyadenia " with accompanying values "Quercus" in Genus, "agrifolia" in SpecificEpithet, "oxyadenia" in InfraspecificEpithet, and "var." in InfraspecificRank. See <a href="http://code.google.com/p/darwincore/wiki/IdentificationQualifier">http://code.google.com/p/darwincore/wiki/IdentificationQualifier</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#IdentificationQualifier-2008-11-19">IdentificationQualifier</a></TD>
|
||||
<TR><TH colspan="2"><A name="TypeStatus">Term Name: TypeStatus</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/TypeStatus</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Identification</TD></TR> <TR><TD>Definition:</TD><TD>A list (concatenated and separated) of nomenclatural types (type status, typified ScientificName, publication) applied to the sample.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "holotype of Ctenomys sociabilis. Pearson O. P., and M. I. Christie. 1985. Historia Natural, 5(37):388". See <a href="http://code.google.com/p/darwincore/wiki/TypeStatus">http://code.google.com/p/darwincore/wiki/TypeStatus</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#TypeStatus-2008-11-19">TypeStatus</a></TD>
|
||||
<TR><TH colspan="2"><A name="TaxonID">Term Name: TaxonID</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/TaxonID</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Definition:</TD><TD>A global unique identifier for the taxon (name in a classification).</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/TaxonID">http://code.google.com/p/darwincore/wiki/TaxonID</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#TaxonID-2008-11-19">TaxonID</a></TD>
|
||||
<TR><TH colspan="2"><A name="ScientificName">Term Name: ScientificName</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/ScientificName</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Definition:</TD><TD>The taxon name (with date and authorship information if applicable) of the lowest level taxonomic rank that can be applied. Identifier qualifications should be supplied in the IdentificationQualifier term rather than here.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "Coleoptera" (order), "Vespertilionidae" (family), "Manis" (genus), "Ctenomys sociabilis" (binomial), "Ambystoma tigrinum diaboli" (binomial + InfraspecificEpithet), "Quercus agrifolia var. oxyadenia (Torr.) J.T. Howell" (binomial + TaxonRank + InfraspecificEpithet + ScientificNameAuthorship). See <a href="http://code.google.com/p/darwincore/wiki/ScientificName">http://code.google.com/p/darwincore/wiki/ScientificName</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#ScientificName-2009-01-21">ScientificName</a></TD>
|
||||
<TR><TH colspan="2"><A name="Binomial">Term Name: Binomial</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Binomial</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Definition:</TD><TD>The combination of genus and first (species) epithet of the ScientificName.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Ctenomys sociabilis". See <a href="http://code.google.com/p/darwincore/wiki/Binomial">http://code.google.com/p/darwincore/wiki/Binomial</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#Binomial-2008-11-19">Binomial</a></TD>
|
||||
<TR><TH colspan="2"><A name="HigherTaxonID">Term Name: HigherTaxonID</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/HigherTaxonID</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Definition:</TD><TD>A global unique identifier for the parent to the taxon.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/HigherTaxonID">http://code.google.com/p/darwincore/wiki/HigherTaxonID</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#HigherTaxonID-2009-01-21">HigherTaxonID</a></TD>
|
||||
<TR><TH colspan="2"><A name="HigherTaxon">Term Name: HigherTaxon</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/HigherTaxon</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Definition:</TD><TD>A list (concatenated and separated) of the names for the taxonomic ranks less specific than the ScientificName.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Animalia, Chordata, Vertebrata, Mammalia, Theria, Eutheria, Rodentia, Hystricognatha, Hystricognathi, Ctenomyidae, Ctenomyini, Ctenomys". See <a href="http://code.google.com/p/darwincore/wiki/HigherTaxon">http://code.google.com/p/darwincore/wiki/HigherTaxon</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#HigherTaxon-2009-01-21">HigherTaxon</a></TD>
|
||||
<TR><TH colspan="2"><A name="Kingdom">Term Name: Kingdom</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Kingdom</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Definition:</TD><TD>The name of the kingdom in which the ScientificName is classified.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Animalia". See <a href="http://code.google.com/p/darwincore/wiki/Kingdom">http://code.google.com/p/darwincore/wiki/Kingdom</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#Kingdom-2008-11-19">Kingdom</a></TD>
|
||||
<TR><TH colspan="2"><A name="Phylum">Term Name: Phylum</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Phylum</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Definition:</TD><TD>The name of the phlyum (or division) in which the ScientificName is classified.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Chordata". See <a href="http://code.google.com/p/darwincore/wiki/Phylum">http://code.google.com/p/darwincore/wiki/Phylum</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#Phylum-2008-11-19">Phylum</a></TD>
|
||||
<TR><TH colspan="2"><A name="Class">Term Name: Class</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Class</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Definition:</TD><TD>The name of the class in which the ScientificName is classified.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Mammalia". See <a href="http://code.google.com/p/darwincore/wiki/Class">http://code.google.com/p/darwincore/wiki/Class</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#Class-2008-11-19">Class</a></TD>
|
||||
<TR><TH colspan="2"><A name="Order">Term Name: Order</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Order</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Definition:</TD><TD>The name of the order in which the ScientificName is classified.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Rodentia". See <a href="http://code.google.com/p/darwincore/wiki/Order">http://code.google.com/p/darwincore/wiki/Order</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#Order-2008-11-19">Order</a></TD>
|
||||
<TR><TH colspan="2"><A name="Family">Term Name: Family</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Family</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Definition:</TD><TD>The name of the family in which the ScientificName is classified.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Ctenomyidae". See <a href="http://code.google.com/p/darwincore/wiki/Family">http://code.google.com/p/darwincore/wiki/Family</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#Family-2008-11-19">Family</a></TD>
|
||||
<TR><TH colspan="2"><A name="Genus">Term Name: Genus</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Genus</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Definition:</TD><TD>The name of the genus in which the ScientificName is classified.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Quercus". See <a href="http://code.google.com/p/darwincore/wiki/Genus">http://code.google.com/p/darwincore/wiki/Genus</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#Genus-2008-11-19">Genus</a></TD>
|
||||
<TR><TH colspan="2"><A name="Subgenus">Term Name: Subgenus</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Subgenus</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Definition:</TD><TD>The name of the subgenus in which the ScientificName is classified.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/Subgenus">http://code.google.com/p/darwincore/wiki/Subgenus</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#Subgenus-2008-11-19">Subgenus</a></TD>
|
||||
<TR><TH colspan="2"><A name="SpecificEpithet">Term Name: SpecificEpithet</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/SpecificEpithet</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Definition:</TD><TD>The name of the first or species epithet of the ScientificName.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "agrifolia". See <a href="http://code.google.com/p/darwincore/wiki/SpecificEpithet">http://code.google.com/p/darwincore/wiki/SpecificEpithet</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#SpecificEpithet-2008-11-19">SpecificEpithet</a></TD>
|
||||
<TR><TH colspan="2"><A name="TaxonRank">Term Name: TaxonRank</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/TaxonRank</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Definition:</TD><TD>The taxonomic rank of the most specific name in the ScientificName. Recommended best practice is to use a controlled vocabulary.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "subsp.", "var.", "forma". See <a href="http://code.google.com/p/darwincore/wiki/TaxonRank">http://code.google.com/p/darwincore/wiki/TaxonRank</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#TaxonRank-2008-11-19">TaxonRank</a></TD>
|
||||
<TR><TH colspan="2"><A name="InfraspecificEpithet">Term Name: InfraspecificEpithet</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/InfraspecificEpithet</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Definition:</TD><TD>The name of the second or subspecies epithet of the ScientificName.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "oxyadenia". See <a href="http://code.google.com/p/darwincore/wiki/InfraspecificEpithet">http://code.google.com/p/darwincore/wiki/InfraspecificEpithet</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#InfraspecificEpithet-2008-11-19">InfraspecificEpithet</a></TD>
|
||||
<TR><TH colspan="2"><A name="ScientificNameAuthorship">Term Name: ScientificNameAuthorship</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/ScientificNameAuthorship</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Definition:</TD><TD>The authorship information for the ScientificName formatted according to the conventions of the applicable NomenclaturalCode.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "(Torr.) J.T. Howell". See <a href="http://code.google.com/p/darwincore/wiki/ScientificNameAuthorship">http://code.google.com/p/darwincore/wiki/ScientificNameAuthorship</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#ScientificNameAuthorship-2008-11-19">ScientificNameAuthorship</a></TD>
|
||||
<TR><TH colspan="2"><A name="NomenclaturalCode">Term Name: NomenclaturalCode</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/NomenclaturalCode</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Definition:</TD><TD>The nomenclatural code under which the ScientificName is constructed. Recommended best practice is to use a controlled vocabulary.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "ICBN", "ICZN", "BC", "ICNCP", "BioCode". See <a href="http://code.google.com/p/darwincore/wiki/NomenclaturalCode">http://code.google.com/p/darwincore/wiki/NomenclaturalCode</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#NomenclaturalCode-2008-11-19">NomenclaturalCode</a></TD>
|
||||
<TR><TH colspan="2"><A name="TaxonAccordingTo">Term Name: TaxonAccordingTo</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/TaxonAccordingTo</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Definition:</TD><TD>Information about the authorship of this taxon concept which uses the ScientificName in their sense (secundum, sensu). Could be a publication (identification key), institution or team of individuals.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/TaxonAccordingTo">http://code.google.com/p/darwincore/wiki/TaxonAccordingTo</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#TaxonAccordingTo-2009-01-21">TaxonAccordingTo</a></TD>
|
||||
<TR><TH colspan="2"><A name="NamePublishedIn">Term Name: NamePublishedIn</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/NamePublishedIn</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Definition:</TD><TD>A full literature reference to the first (original) valid publication of the ScientificName.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/NamePublishedIn">http://code.google.com/p/darwincore/wiki/NamePublishedIn</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#NamePublishedIn-2008-11-19">NamePublishedIn</a></TD>
|
||||
<TR><TH colspan="2"><A name="TaxonomicStatus">Term Name: TaxonomicStatus</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/TaxonomicStatus</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Definition:</TD><TD>The status of the use of the ScientificName as a label for a taxon. Requires taxonomic opinion to define the scope of a taxon. Rules of priority then are used to define the taxonomic status of the nomenclature contained in that scope, combined with the experts opinion. It must be linked to a specific taxonomic reference that defines the concept. Recommended best practice is to use a controlled vocabulary.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "invalid", "misapplied", "homotypic synonym", "accepted". See <a href="http://code.google.com/p/darwincore/wiki/TaxonomicStatus">http://code.google.com/p/darwincore/wiki/TaxonomicStatus</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#TaxonomicStatus-2008-11-19">TaxonomicStatus</a></TD>
|
||||
<TR><TH colspan="2"><A name="NomenclaturalStatus">Term Name: NomenclaturalStatus</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/NomenclaturalStatus</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Definition:</TD><TD>The status related to the original publication of the name and it's 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.</TD></TR> <TR><TD>Comment:</TD><TD>Examples: "nom. ambig.", "nom. illeg.", "nom. subnud.". See <a href="http://code.google.com/p/darwincore/wiki/NomenclaturalStatus">http://code.google.com/p/darwincore/wiki/NomenclaturalStatus</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#NomenclaturalStatus-2009-01-18">NomenclaturalStatus</a></TD>
|
||||
<TR><TH colspan="2"><A name="AcceptedTaxonID">Term Name: AcceptedTaxonID</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/AcceptedTaxonID</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Definition:</TD><TD>A global unique identifier for the parent to the AcceptedTaxon.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/AcceptedTaxonID">http://code.google.com/p/darwincore/wiki/AcceptedTaxonID</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#AcceptedTaxonID-2009-01-21">AcceptedTaxonID</a></TD>
|
||||
<TR><TH colspan="2"><A name="AcceptedTaxon">Term Name: AcceptedTaxon</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/AcceptedTaxon</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Definition:</TD><TD>The currently valid (zoological) or accepted (botanical) name for the ScientificName.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/AcceptedTaxon">http://code.google.com/p/darwincore/wiki/AcceptedTaxon</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#AcceptedTaxon-2008-11-19">AcceptedTaxon</a></TD>
|
||||
<TR><TH colspan="2"><A name="BasionymID">Term Name: BasionymID</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/BasionymID</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Definition:</TD><TD>A global unique identifier for the Basionym.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/BasionymID">http://code.google.com/p/darwincore/wiki/BasionymID</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#BasionymID-2009-01-21">BasionymID</a></TD>
|
||||
<TR><TH colspan="2"><A name="Basionym">Term Name: Basionym</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/Basionym</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/Taxon</TD></TR> <TR><TD>Definition:</TD><TD>The basionym of the ScientificName.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/Basionym">http://code.google.com/p/darwincore/wiki/Basionym</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#Basionym-2008-11-19">Basionym</a></TD>
|
||||
<TR><TH colspan="2"><A name="ResourceRelationshipID">Term Name: ResourceRelationshipID</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/ResourceRelationshipID</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/ResourceRelationship</TD></TR> <TR><TD>Definition:</TD><TD>A global unique identifier for an instance of relationship (not of a relationship type) between one resource and another.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/ResourceRelationshipID">http://code.google.com/p/darwincore/wiki/ResourceRelationshipID</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#ResourceRelationshipID-2008-11-19">ResourceRelationshipID</a></TD>
|
||||
<TR><TH colspan="2"><A name="RelatedResourceID">Term Name: RelatedResourceID</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/RelatedResourceID</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/ResourceRelationship</TD></TR> <TR><TD>Definition:</TD><TD>A global unique identifier to a related resource.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/RelatedResourceID">http://code.google.com/p/darwincore/wiki/RelatedResourceID</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#RelatedResourceID-2008-11-19">RelatedResourceID</a></TD>
|
||||
<TR><TH colspan="2"><A name="RelatedResourceType">Term Name: RelatedResourceType</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/RelatedResourceType</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/ResourceRelationship</TD></TR> <TR><TD>Definition:</TD><TD>The type of related resource. Recommended best practice is to use a controlled vocabulary.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Sample", "Taxon", "Publication". See <a href="http://code.google.com/p/darwincore/wiki/RelatedResourceType">http://code.google.com/p/darwincore/wiki/RelatedResourceType</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#RelatedResourceType-2009-01-23">RelatedResourceType</a></TD>
|
||||
<TR><TH colspan="2"><A name="RelatedBasisOfRecord">Term Name: RelatedBasisOfRecord</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/RelatedBasisOfRecord</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/ResourceRelationship</TD></TR> <TR><TD>Definition:</TD><TD>The nature of the related resource. Recommended best practice is to use the same controlled vocabulary as for BasisOfRecord.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "PreservedSpecimen". See <a href="http://code.google.com/p/darwincore/wiki/RelatedBasisOfRecord">http://code.google.com/p/darwincore/wiki/RelatedBasisOfRecord</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#RelatedBasisOfRecord-2008-11-19">RelatedBasisOfRecord</a></TD>
|
||||
<TR><TH colspan="2"><A name="RelationshipOfResource">Term Name: RelationshipOfResource</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/RelationshipOfResource</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/ResourceRelationship</TD></TR> <TR><TD>Definition:</TD><TD>The relationship of the related resource to this resource. Recommended best practice is to use a controlled vocabulary.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "mother". See <a href="http://code.google.com/p/darwincore/wiki/RelationshipOfResource">http://code.google.com/p/darwincore/wiki/RelationshipOfResource</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#RelationshipOfResource-2008-11-19">RelationshipOfResource</a></TD>
|
||||
<TR><TH colspan="2"><A name="RelationshipRemarks">Term Name: RelationshipRemarks</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/RelationshipRemarks</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/ResourceRelationship</TD></TR> <TR><TD>Definition:</TD><TD>Comments or notes about the relationship of the related resource to this resource.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "mother and offspring collected from the same nest". See <a href="http://code.google.com/p/darwincore/wiki/RelationshipRemarks">http://code.google.com/p/darwincore/wiki/RelationshipRemarks</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#RelationshipRemarks-2008-11-19">RelationshipRemarks</a></TD>
|
||||
<TR><TH colspan="2"><A name="SamplingAttributeID">Term Name: SamplingAttributeID</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/SamplingAttributeID</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SampleAttribute</TD></TR> <TR><TD>Definition:</TD><TD>An identifier for the sampling attribute. May be a global unique identifier or an identifier specific to the data set.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/SamplingAttributeID">http://code.google.com/p/darwincore/wiki/SamplingAttributeID</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#SamplingAttributeID-2008-11-19">SamplingAttributeID</a></TD>
|
||||
<TR><TH colspan="2"><A name="SampleAttributeType">Term Name: SampleAttributeType</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/SampleAttributeType</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SampleAttribute</TD></TR> <TR><TD>Definition:</TD><TD>The nature of the measurement or characteristic of the sample. Recommended best practice is to use a controlled vocabulary.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "tail length". See <a href="http://code.google.com/p/darwincore/wiki/SampleAttributeType">http://code.google.com/p/darwincore/wiki/SampleAttributeType</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#SampleAttributeType-2008-11-19">SampleAttributeType</a></TD>
|
||||
<TR><TH colspan="2"><A name="SampleAttributeValue">Term Name: SampleAttributeValue</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/SampleAttributeValue</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SampleAttribute</TD></TR> <TR><TD>Definition:</TD><TD>The value of the measurement or characteristic of the sample.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "45". See <a href="http://code.google.com/p/darwincore/wiki/SampleAttributeValue">http://code.google.com/p/darwincore/wiki/SampleAttributeValue</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#SampleAttributeValue-2008-11-19">SampleAttributeValue</a></TD>
|
||||
<TR><TH colspan="2"><A name="SampleAttributeAccuracy">Term Name: SampleAttributeAccuracy</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/SampleAttributeAccuracy</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SampleAttribute</TD></TR> <TR><TD>Definition:</TD><TD>The description of the error associated with the SampleAttributeValue.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "0.01", "normal distribution with variation of 2 m". See <a href="http://code.google.com/p/darwincore/wiki/SampleAttributeAccuracy">http://code.google.com/p/darwincore/wiki/SampleAttributeAccuracy</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#SampleAttributeAccuracy-2009-01-18">SampleAttributeAccuracy</a></TD>
|
||||
<TR><TH colspan="2"><A name="SampleAttributeUnit">Term Name: SampleAttributeUnit</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/SampleAttributeUnit</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SampleAttribute</TD></TR> <TR><TD>Definition:</TD><TD>The units for the value of the measurement or characteristic of the sample. Recommended best practice is to use International System of Units (SI) units.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "mm". See <a href="http://code.google.com/p/darwincore/wiki/SampleAttributeUnit">http://code.google.com/p/darwincore/wiki/SampleAttributeUnit</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#SampleAttributeUnit-2008-11-19">SampleAttributeUnit</a></TD>
|
||||
<TR><TH colspan="2"><A name="SampleAttributeDeterminedDate">Term Name: SampleAttributeDeterminedDate</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/SampleAttributeDeterminedDate</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SampleAttribute</TD></TR> <TR><TD>Definition:</TD><TD>The date on which the the measurement or characteristic of the sample was made.</TD></TR> <TR><TD>Comment:</TD><TD>Date may be used to express temporal information at any level of granularity. Recommended best practice is to use an encoding scheme, such as the W3CDTF profile of ISO 8601 [W3CDTF]. See <a href="http://code.google.com/p/darwincore/wiki/SampleAttributeDeterminedDate">http://code.google.com/p/darwincore/wiki/SampleAttributeDeterminedDate</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#SampleAttributeDeterminedDate-2009-01-23">SampleAttributeDeterminedDate</a></TD>
|
||||
<TR><TH colspan="2"><A name="SampleAttributeDeterminedBy">Term Name: SampleAttributeDeterminedBy</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/SampleAttributeDeterminedBy</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SampleAttribute</TD></TR> <TR><TD>Definition:</TD><TD>The agent responsible for having determined the value of the measurement or characteristic of the sample.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Javier de la Torre". See <a href="http://code.google.com/p/darwincore/wiki/SampleAttributeDeterminedBy">http://code.google.com/p/darwincore/wiki/SampleAttributeDeterminedBy</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#SampleAttributeDeterminedBy-2009-01-23">SampleAttributeDeterminedBy</a></TD>
|
||||
<TR><TH colspan="2"><A name="SampleAttibuteRemarks">Term Name: SampleAttibuteRemarks</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/SampleAttibuteRemarks</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/SampleAttribute</TD></TR> <TR><TD>Definition:</TD><TD>Comments or notes accompanying the measurement or characteristic of the sample.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "tip of tail missing". See <a href="http://code.google.com/p/darwincore/wiki/SampleAttibuteRemarks">http://code.google.com/p/darwincore/wiki/SampleAttibuteRemarks</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#SampleAttibuteRemarks-2008-11-19">SampleAttibuteRemarks</a></TD>
|
||||
<TR><TH colspan="2"><A name="EventAttributeID">Term Name: EventAttributeID</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/EventAttributeID</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/EventAttribute</TD></TR> <TR><TD>Definition:</TD><TD>An identifier for the event attribute. May be a global unique identifier or an identifier specific to the data set.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/EventAttributeID">http://code.google.com/p/darwincore/wiki/EventAttributeID</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#EventAttributeID-2008-11-19">EventAttributeID</a></TD>
|
||||
<TR><TH colspan="2"><A name="EventAttributeType">Term Name: EventAttributeType</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/EventAttributeType</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/EventAttribute</TD></TR> <TR><TD>Definition:</TD><TD>The nature of the measurement or characteristic of the sampling event. Recommended best practice is to use a controlled vocabulary.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Temperature". See <a href="http://code.google.com/p/darwincore/wiki/EventAttributeType">http://code.google.com/p/darwincore/wiki/EventAttributeType</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#EventAttributeType-2008-11-19">EventAttributeType</a></TD>
|
||||
<TR><TH colspan="2"><A name="EventAttributeValue">Term Name: EventAttributeValue</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/EventAttributeValue</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/EventAttribute</TD></TR> <TR><TD>Definition:</TD><TD>The value of the measurement or characteristic of the sampling event.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "22". See <a href="http://code.google.com/p/darwincore/wiki/EventAttributeValue">http://code.google.com/p/darwincore/wiki/EventAttributeValue</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#EventAttributeValue-2008-11-19">EventAttributeValue</a></TD>
|
||||
<TR><TH colspan="2"><A name="EventAttributeAccuracy">Term Name: EventAttributeAccuracy</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/EventAttributeAccuracy</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/EventAttribute</TD></TR> <TR><TD>Definition:</TD><TD>The description of the error associated with the EventAttributeValue.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "0.01", "normal distribution with variation of 2 m". See <a href="http://code.google.com/p/darwincore/wiki/EventAttributeAccuracy">http://code.google.com/p/darwincore/wiki/EventAttributeAccuracy</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#EventAttributeAccuracy-2009-01-18">EventAttributeAccuracy</a></TD>
|
||||
<TR><TH colspan="2"><A name="EventAttributeUnit">Term Name: EventAttributeUnit</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/EventAttributeUnit</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/EventAttribute</TD></TR> <TR><TD>Definition:</TD><TD>The units for the value of the measurement or characteristic of the sampling event. Recommended best practice is to use International System of Units (SI) units.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Celcius". See <a href="http://code.google.com/p/darwincore/wiki/EventAttributeUnit">http://code.google.com/p/darwincore/wiki/EventAttributeUnit</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#EventAttributeUnit-2008-11-19">EventAttributeUnit</a></TD>
|
||||
<TR><TH colspan="2"><A name="EventAttributeDeterminedDate">Term Name: EventAttributeDeterminedDate</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/EventAttributeDeterminedDate</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/EventAttribute</TD></TR> <TR><TD>Definition:</TD><TD>The date on which the the measurement or characteristic of the sampling event was made.</TD></TR> <TR><TD>Comment:</TD><TD>Date may be used to express temporal information at any level of granularity. Recommended best practice is to use an encoding scheme, such as the W3CDTF profile of ISO 8601 [W3CDTF]. See <a href="http://code.google.com/p/darwincore/wiki/EventAttributeDeterminedDate">http://code.google.com/p/darwincore/wiki/EventAttributeDeterminedDate</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#EventAttributeDeterminedDate-2009-01-23">EventAttributeDeterminedDate</a></TD>
|
||||
<TR><TH colspan="2"><A name="EventAttributeDeterminedBy">Term Name: EventAttributeDeterminedBy</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/EventAttributeDeterminedBy</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/EventAttribute</TD></TR> <TR><TD>Definition:</TD><TD>The agent responsible for having determined the value of the measurement or characteristic of the sampling event.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "Robert Hijmans". See <a href="http://code.google.com/p/darwincore/wiki/EventAttributeDeterminedBy">http://code.google.com/p/darwincore/wiki/EventAttributeDeterminedBy</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#EventAttributeDeterminedBy-2009-01-23">EventAttributeDeterminedBy</a></TD>
|
||||
<TR><TH colspan="2"><A name="EventAttributeRemarks">Term Name: EventAttributeRemarks</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/terms/EventAttributeRemarks</TD></TR> <TR><TD>Has Domain:</TD><TD>http://rs.tdwg.org/dwc/terms/EventAttribute</TD></TR> <TR><TD>Definition:</TD><TD>Comments or notes accompanying the measurement or characteristic of the sampling event.</TD></TR> <TR><TD>Comment:</TD><TD>Example: "temperature taken at 15:00". See <a href="http://code.google.com/p/darwincore/wiki/EventAttributeRemarks">http://code.google.com/p/darwincore/wiki/EventAttributeRemarks</a></TD></TR> <TR><TD>Details:</TD><TD><a href="./history/index.htm#EventAttributeRemarks-2008-11-19">EventAttributeRemarks</a></TD>
|
||||
|
||||
<!-- End Terms Table -->
|
||||
|
||||
</TBODY></TABLE>
|
||||
|
||||
<!-- Footer -->
|
||||
<hr>
|
||||
<p><a rel="license" href="http://creativecommons.org/licenses/by/3.0/us/">
|
||||
<img alt="Creative Commons License" id="creative_commons_icon" src="http://i.creativecommons.org/l/by/3.0/88x31.png" /></a>
|
||||
Copyright 2009 - Biodiversity Information Standards - TDWG - <a href="http://www.tdwg.org/about-tdwg/contact-us/">Contact Us</a><br/>
|
||||
<p>Except where otherwise noted, content on this site is licensed under a
|
||||
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/us/"> Creative Commons
|
||||
Attribution 3.0 United States License</a>.</p>
|
||||
|
||||
</BODY></HTML>
|
|
@ -0,0 +1,341 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<HTML xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<HEAD>
|
||||
<META http-equiv="Content-Type" content="text/html; charset=utf8"/>
|
||||
<TITLE>Darwin Core Namespace Policy</TITLE>
|
||||
<LINK rel="schema.DwC" href="http://rs.tdwg.org/dwc/terms/namespacepolicy.htm"/>
|
||||
<META name="DC.title" content="Darwin Core Namespace Policy"/>
|
||||
<META name="DC.description" content="This document is most recent version of the Darwin Core Namespace Policy"/>
|
||||
<META name="DC.subject" content="biodiversity, standards"/>
|
||||
<META name="DC.creator" content="Darwin Core Task Group"/>
|
||||
<META name="DC.contributor" content="John Wieczorek (MVZ) <tuco@berkeley.edu>"/>
|
||||
<META name="DC.contributor" content="Markus Döring (GBIF) <mdoering@gbif.org>"/>
|
||||
<META name="DC.contributor" content="Renato De Giovanni (CRIA) <renato@cria.org.br>"/>
|
||||
<META name="DC.contributor" content="Tim Robertson (GBIF) <trobertson@gbif.org>"/>
|
||||
<META name="DC.contributor" content="Dave Vieglais (KUNHM) <vieglais@ku.edu>"/>
|
||||
<META name="DC.contributor" content="Stan Blum (CAS) <sblum@calacademy.org>"/>
|
||||
<META name="DC.modified" content="2009-02-12"/>
|
||||
<META name="DC.dateAccepted" content="2009-02-12"/>
|
||||
<META name="DC.format" content="text/html"/>
|
||||
<META name="DC.identifier" content="http://rs.tdwg.org/dwc/namespace/2009-02-12"/>
|
||||
<META name="DC.publisher" content="Biodiversity Information Standards TDWG"/>
|
||||
<META name="DC.rights" content=""/>
|
||||
<META name="DC.accessRights" content="public"/>
|
||||
<META name="DC.bibliographicCitation" content="Darwin Core Namespace Policy. 2009"/>
|
||||
<META name="DC.isReplacedBy" content=""/>
|
||||
<META name="DC.replaces" content=""/>
|
||||
<META name="DC.language" content="en"/>
|
||||
<LINK rel="meta" href="http://www.tdwg.org/"/>
|
||||
<LINK rel="stylesheet" href="../../DarwinCore_files/default.css" type="text/css"/>
|
||||
<SCRIPT src="../../DarwinCore_files/default.js" type="text/javascript"></SCRIPT>
|
||||
</HEAD>
|
||||
<BODY>
|
||||
<DIV class="header">
|
||||
|
||||
<TABLE width="100%" cellspacing="0" cellpadding="0" bgcolor="#617394">
|
||||
<TBODY><TR>
|
||||
<TD width="70"><A href="http://www.tdwg.org"><IMG src="../../DarwinCore_files/TDWGlogo_Twiki.gif" width="150" height="70" alt="Biodiversity Information Standards (TDWG) logo"></A></TD>
|
||||
<TD width="100%" height="70" align="right" valign="top">
|
||||
</TABLE>
|
||||
|
||||
<H1>Darwin Core Namespace Policy</H1>
|
||||
<TABLE cellspacing="0" class="docinfo">
|
||||
<TBODY>
|
||||
<TR>
|
||||
<TH>Title:</TH>
|
||||
<TD>Darwin Core Namespace Policy</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Date Issued:</TH>
|
||||
<TD>2009-02-12</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Abstract:</TH>
|
||||
<TD>
|
||||
All terms in the Darwin Core must be assigned a unique URI. For convenience, the term URIs that are
|
||||
assigned and managed by the Darwin Core Task Group are grouped into collections known as Darwin
|
||||
Core namespaces. This document describes how term URIs are allocated by the Darwin Core Task Group
|
||||
and the policies associated with Darwin Core namespaces.
|
||||
</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Contributors:</TH>
|
||||
<TD>John Wieczorek (MVZ)<tuco@berkeley.edu>, Markus Döring (GBIF)<mdoering@gbif.org>, Renato De Giovanni (CRIA)<renato@cria.org.br>, Tim Robertson (GBIF)<trobertson@gbif.org>, Dave Vieglais (KUNHM)<vieglais@ku.edu>, Stan Blum (CAS)<sblum@calacademy.org></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Legal:</TH>
|
||||
<TD>This document is governed by the standard legal, copyright, licensing provisions and disclaimers issued by the Taxonomic Databases Working Group.</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Part of TDWG Standard:</TH>
|
||||
<TD>***URL to DwC Standard*** goes here</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Creator:</TH>
|
||||
<TD>Darwin Core Task Group</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Identifier:</TH>
|
||||
<TD><A href="http://rs.tdwg.org/dwc/terms/namespace/2009-02-12/">http://rs.tdwg.org/dwc/terms/namespace/2009-02-12/</A></TD>
|
||||
</TR>
|
||||
<TR><TH>Latest Version:</TH>
|
||||
<TD><A href="http://rs.tdwg.org/dwc/terms/namespace/">http://rs.tdwg.org/dwc/terms/namespace/</A></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Replaces:</TH>
|
||||
<TD>Not applicable</TD>
|
||||
</TR>
|
||||
<TR><TH>Replaced By:</TH>
|
||||
<TD>Not applicable</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Translations:</TH>
|
||||
<TD><A href="http://rs.tdwg.org/dwc/translations/">http://rs.tdwg.org/dwc/translations/</A></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Document Status:</TH>
|
||||
<TD>This is a TDWG Request for Comment.</TD>
|
||||
</TR>
|
||||
</TBODY></TABLE>
|
||||
|
||||
<H2>Table of Contents</H2>
|
||||
</P><TABLE width="95%" border="0" align="center"><TBODY>
|
||||
<TR><TD width="100%">1. <a href="glossary">Glossary</a>
|
||||
</TD></TR>
|
||||
<TR><TD width="100%">2. <a href="#introduction">Introduction</a>
|
||||
</TD></TR>
|
||||
<TR><TD width="100%">3. <a href="#references">References</a>
|
||||
</TD></TR>
|
||||
<TR><TD width="100%">4. <a href="#namespaceuris">Darwin Core Namespace URIs</a>
|
||||
</TD></TR>
|
||||
<TR><TD width="100%">5. <a href="#classesofchanges">Policy concerning classes of changes to Darwin Core terms</a>
|
||||
</TD></TR>
|
||||
<TR><TD width="100%">6. <a href="#persistence">Persistence Policy</a>
|
||||
</TD></TR>
|
||||
</TBODY></TABLE
|
||||
|
||||
<A name="glossary" id="glossary"></A>
|
||||
<H2>1. Glossary</H2>
|
||||
<P>This document uses the following terminology:</P>
|
||||
<DL>
|
||||
|
||||
<DT><EM>term</EM></DT>
|
||||
<DD>A property (element), class, vocabulary encoding scheme, or syntax encoding scheme.</DD>
|
||||
|
||||
<DT><EM>URI</EM></DT>
|
||||
<DD>A Uniform Resource Identifier (<A href="http://www.ietf.org/rfc/rfc3986.txt">URI</A>) or Internationalized Resource Identifier (<A href="<A href="http://www.ietf.org/rfc/rfc3987.txt">IRI</A>).</DD>
|
||||
|
||||
<DT><EM>Darwin Core term</EM></DT>
|
||||
<DD>A <EM>term</EM> that is declared and maintained by Darwin Core Task Group.</DD>
|
||||
|
||||
<DT><EM>term URI</EM></DT>
|
||||
<DD>The <EM>URI</EM> that identifies a <EM>term</EM>.</DD>
|
||||
|
||||
<DT><EM>Darwin Core term URI</EM></DT>
|
||||
<DD>The <EM>URI</EM> for a <EM>term</EM> that is declared and managed by Darwin Core Task Group.</DD>
|
||||
|
||||
<DT><EM>term name</EM></DT>
|
||||
<DD>A unique token assigned to a <EM>term</EM>. For all <EM>Darwin Core terms</EM>, the <EM>term name</EM> is appended to a <EM>Darwin Core namespace URI</EM> to create the <EM>Darwin Core term URI</EM>.</DD>
|
||||
|
||||
<DT><EM>term label</EM></DT>
|
||||
<DD>A human-readable label assigned to a <EM>term</EM>.</DD>
|
||||
|
||||
<DT><EM>Darwin Core namespace</EM></DT>
|
||||
<DD>A collection of <EM>Darwin Core term URIs</EM> where each <EM>term</EM> is assigned a <EM>URI</EM> that starts with the same 'base URI'. The 'base URI' is known as the <EM>Darwin Core namespace URI</EM>. (Note that a <EM>Darwin Core namespace</EM> is not the same as an 'XML namespace').</DD>
|
||||
|
||||
<DT><EM>Darwin Core namespace URI</EM></DT>
|
||||
<DD>The <EM>URI</EM> that identifies a <EM>Darwin Core namespace</EM>.</DD>
|
||||
|
||||
<DT><EM>Darwin Core recommendation</EM></DT>
|
||||
<DD>A specification, approved through Darwin Core's formal process, which may define one or more <EM>Darwin Core terms</EM>.</DD>
|
||||
|
||||
<DT><EM>Darwin Core term declaration</EM></DT>
|
||||
<DD>A representation of one or more <EM>Darwin Core terms</EM>.</DD>
|
||||
|
||||
</DL>
|
||||
|
||||
<P><EM>Term URIs</EM> are grouped into <EM>Darwin Core namespaces</EM> in order to ease the assignment of <EM>URIs </EM>to <EM>terms</EM> and to streamline their use in particular encoding syntaxes. Note that the grouping of <EM>term URIs</EM> into <EM>Darwin Core namespaces</EM> is orthogonal to the grouping of <EM>terms</EM> into sets designed to meet other functional needs, e.g., as various types of vocabularies.</P>
|
||||
|
||||
<A name="introduction" id="introduction"></A>
|
||||
<H2>2. Introduction</H2>
|
||||
This document and the policies contained herein are modeled on the Dublin Core Metadata Initiative
|
||||
Namespace Policy [<a href="http://dublincore.org/documents/2007/07/02/dcmi-namespace/">DCMINAMESPACEPOLICY</a>].
|
||||
All terms in the Darwin Core must be assigned a unique URI. For convenience, the term URIs that are
|
||||
assigned and managed by the Darwin Core Task Group are grouped into collections known as Darwin
|
||||
Core namespaces. This document describes how term URIs are allocated by the Darwin Core Task Group
|
||||
and the policies associated with Darwin Core namespaces.
|
||||
|
||||
<A name="references" id="references"></A>
|
||||
<H2>3. References</H2>
|
||||
<TABLE width="95%" border="0" align="center">
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="DCMINAMESPACEPOLICY">[DCMINAMESPACEPOLICY]</A></TD>
|
||||
<TD width="40%"><A href="http://dublincore.org/documents/2007/07/02/dcmi-namespace/">http://dublincore.org/documents/2007/07/02/dcmi-namespace/</A></TD>
|
||||
<TD width="50%">DCMI Namespace Policy, 2 July 2007</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="DWC">[DWC]</A></TD>
|
||||
<TD width="40%"><A href="../../index.htm">http://rs.tdwg.org/dwc/</A></TD>
|
||||
<TD width="50%">An introduction to the Darwin Core Standard.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="DWC-MAIL">[DWC-MAIL]</A></TD>
|
||||
<TD width="40%"><A href="mailto:tdwg-content@lists.tdwg.org">tdwg-content@lists.tdwg.org</A></TD>
|
||||
<TD width="50%">Mailing list for commentary and discussion on Darwin Core.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="DWC-USAGE">[DWC-USAGE]</A></TD>
|
||||
<TD width="40%"><A href="mailto:tdwg-tag@lists.tdwg.org">tdwg-tag@lists.tdwg.org</A></TD>
|
||||
<TD width="50%">TDWG Architecture Mailing List.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="DWC-TYPE">[DWC-TYPE]</A></TD>
|
||||
<TD width="40%"><A href="../type-vocabulary/index.htm">http://rs.tdwg.org/dwc/terms/type-vocabulary/</A></TD>
|
||||
<TD width="50%">Darwin Core Type Vocabulary.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="DECISIONS">[DECISIONS]</A></TD>
|
||||
<TD width="40%"><A href="../history/decisions/index.htm">http://rs.tdwg.org/dwc/terms/history/decisions/</A></TD>
|
||||
<TD width="50%">A history of decisions resulting in changes to Darwin Core terms.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="HISTORY">[HISTORY]</A></TD>
|
||||
<TD width="40%"><A href="../history/index.htm">http://rs.tdwg.org/dwc/terms/history/</A></TD>
|
||||
<TD width="50%">Darwin Core Terms: A complete history.</TD>
|
||||
</TR>
|
||||
|
||||
</TBODY></TABLE>
|
||||
|
||||
<A name="namespaceuris" id="namespaceuris"></A>
|
||||
<H2>4. Darwin Core Namespace URIs</H2>
|
||||
|
||||
<P>The <EM>Darwin Core namespace URI</EM> for the collection of all Darwin Core properties, classes and encoding schemes is:</P>
|
||||
|
||||
<PRE class="example">http://rs.tdwg.org/dwc/terms/
|
||||
</PRE>
|
||||
|
||||
<P>The <EM>Darwin Core namespace URI</EM> for the collection of <EM>classes</EM> in the Darwin Core Type Vocabulary
|
||||
[<A href="../type-vocabulary/index.htm">DWC-TYPE</A>] is:</P>
|
||||
|
||||
<PRE class="example">http://rs.tdwg.org/dwc/dwctype/
|
||||
</PRE>
|
||||
|
||||
<P>All future <EM>Darwin Core namespace URIs</EM> (additional Darwin Core controlled vocabularies for example) will conform to
|
||||
this pattern:</P>
|
||||
|
||||
<PRE class="example">http://rs.tdwg.org/dwc/namespace_label/
|
||||
</PRE>
|
||||
|
||||
<P>All <EM>Darwin Core namespace URIs</EM> will dereference to a <EM>Darwin Core term declaration</EM> for all the
|
||||
<EM>terms</EM> with <EM>term URIs</EM> within that <EM>Darwin Core namespace</EM>. A machine-processable <EM>Darwin Core
|
||||
term declaration</EM> will be made available.</P>
|
||||
|
||||
<P>Some example <EM>Darwin Core term URIs</EM> follow:</P>
|
||||
|
||||
<PRE class="example">http://rs.tdwg.org/dwc/terms/ScientificName
|
||||
</PRE>
|
||||
|
||||
<P>is the <EM>Darwin Core term URI</EM> for the ScientificName <EM>property</EM>.</P>
|
||||
|
||||
<PRE class="example">http://rs.tdwg.org/dwc/dwctype/PreservedSpecimen
|
||||
</PRE>
|
||||
|
||||
<P>is the <EM>Darwin Core term URI</EM> for the PreservedSpecimen <EM>class</EM> in the Darwin Core Type Vocabulary.</P>
|
||||
|
||||
<P>Each <EM>Darwin Core term</EM> can be so identified.</P>
|
||||
|
||||
<P>All <EM>Darwin Core term URIs</EM> will dereference to a <EM>Darwin Core term declaration</EM> for the identified
|
||||
<EM>term</EM>. A machine-processable <EM>Darwin Core term declaration</EM> will be made available.
|
||||
|
||||
<A name="classesofchanges" id="classesofchanges"></A>
|
||||
<H2>5. Policy concerning classes of changes to Darwin Core terms</H2>
|
||||
|
||||
<P>Changes to <EM>Darwin Core terms</EM> or <EM>term declarations</EM> will occur from time to time for a variety of reasons.
|
||||
Such changes have varying implications for <EM>Darwin Core term URIs</EM> and <EM>Darwin Core namespaces</EM>. The following
|
||||
classes of changes are identified along with examples and associated implications.
|
||||
|
||||
<P>In all cases, any changes to <EM>Darwin Core terms</EM> or <EM>term declarations</EM> will result
|
||||
in an update to the versioning information carried in the <EM>Darwin Core recommendation</EM> and/or
|
||||
<EM>Darwin Core term declaration</EM> associated with that <EM>term</EM>. Specifically, a new version
|
||||
of the term will be created with appropriate information in the <i>Version</i>, <i>Replaces</i>, and
|
||||
<i>DateModified</i> attributes of the new term, and with the identifying version information of the
|
||||
new term in the <i>Is Replaced By</i> attribute of the term being updated.
|
||||
|
||||
<H3>5.1. Minor editorial errata</H3>
|
||||
|
||||
<P>Errors of spelling, punctuation, or other clerical mistakes discovered in <EM>Darwin Core recommendations</EM> and/or
|
||||
<EM>Darwin Core term declarations</EM> will be corrected without a comment period, following notification to the TDWG
|
||||
Architecture Group [<A href="mailto:tdwg-tag@lists.tdwg.org">DWC-USAGE</A>], as long as, in
|
||||
the judgment of the TDWG Architecture Group, there are no implications for negative impact on users or applications that rely
|
||||
on those <EM>Darwin Core term declarations</EM>. Minor editorial changes of this type will result in no changes to <EM>Darwin
|
||||
Core term URIs</EM>, will not undergo a request for comments, and will not result in a decision
|
||||
[<a href="../history/decisions/index.htm">DECISIONS</A>].
|
||||
|
||||
<H3>5.2. Substantive editorial errata</H3>
|
||||
|
||||
<P>Errors of substance discovered in <EM>Darwin Core recommendations</EM> and/or <EM>Darwin Core
|
||||
term declarations</EM> will trigger public notification of the correction to the Darwin Core mailing
|
||||
list [<A href="mailto:tdwg-content@lists.tdwg.org">DWC-MAIL</A>].
|
||||
Errors that, in the judgment of the TDWG Architecture Group, compromise the immediate usefulness or
|
||||
accuracy of systems based on Darwin Core will be corrected immediately (for example, an incorrect
|
||||
URL to a resource external to Darwin Core). Others will be corrected following a 30-day public
|
||||
comment period to assure that changes do not adversely effect systems or applications which rely on
|
||||
the <EM>Darwin Core namespace</EM> infrastructure. Substantive editorial changes of this type will
|
||||
result in no changes to <EM>Darwin Core term URIs</EM>, and will not result in a decision
|
||||
[<a href="../history/decisions/index.htm">DECISIONS</A>].
|
||||
|
||||
<H3>5.3. Semantic changes in Darwin Core terms</H3>
|
||||
|
||||
<P>Changes of definitions within <EM>Darwin Core recommendations</EM> and/or <EM>Darwin Core term
|
||||
declarations</EM> will be reflected in the affected <EM>Darwin Core recommendation</EM> and/or
|
||||
<EM>Darwin Core term declaration</EM>. Semantic changes of this type will, will
|
||||
undergo a request for comments, and will result in a decision
|
||||
[<a href="../history/decisions/index.htm">DECISIONS</A>]. If, in the judgment of the TDWG Architecture Group, such
|
||||
changes of meaning are likely to have substantial impact on either machine processing of
|
||||
<EM>Darwin Core terms</EM> or the functional semantics of the <EM>terms</EM>, then these changes
|
||||
will be reflected in a change of URI for the <EM>Darwin Core term</EM> or <EM>terms</EM> in question.
|
||||
The URIs for any new <EM>Darwin Core namespaces</EM> resulting from such changes will conform to
|
||||
the <EM>Darwin Core namespace URI</EM> pattern defined above.
|
||||
|
||||
<P>Requests for semantic changes to a term should be made to the Technical Architecture Group
|
||||
[<A href="mailto:tdwg-tag@lists.tdwg.org">DWC-USAGE</A>], and should consist of a complete list of attributes to be changed
|
||||
along with a statement of justification for the changes.
|
||||
|
||||
<H3>5.4. Addition of Darwin Core term declarations to existing Darwin Core namespaces</H3>
|
||||
|
||||
<P>New <EM>Darwin Core term URIs</EM> will occasionally be added to existing <EM>Darwin Core namespaces</EM> based on
|
||||
public demand. Addition of <EM>Darwin Core term URIs</EM> to existing <EM>Darwin Core namespaces</EM> will not trigger
|
||||
changes in <EM>Darwin Core namespace URIs</EM>. Additional term requests that are determined by the Technical Architecture
|
||||
Group to have merit will undergo a request for comments and will not result in a decision
|
||||
[<a href="../history/decisions/index.htm">DECISIONS</A>].
|
||||
|
||||
<P>Requests for additional terms should be made to the Technical Architecture Group
|
||||
[<A href="mailto:tdwg-tag@lists.tdwg.org">DWC-USAGE</A>], and should consist of a complete list of
|
||||
attributes as given in the introduction in the Darwin Core Terms history [<A href="../history/index.htm">HISTORY</A>] along
|
||||
with a statement of justification for the new term, including an explanation of why no existing term will suffice.
|
||||
|
||||
<A name="persistence" id="persistence"></A>
|
||||
<H2>6. Persistence Policy</H2>
|
||||
<P>
|
||||
TDWG recognizes that people and applications depend on the persistence of formal documents and machine processable schemas
|
||||
that have been made publicly available. In particular, the stability of <EM>Darwin Core term URIs</EM> and <EM>Darwin Core
|
||||
namespace URIs</EM> is critical to interoperability over time. Thus, the wide promulgation of this set of <EM>URIs</EM>
|
||||
dictates that they be maintained to support legacy applications that have adopted them.</P>
|
||||
|
||||
<!-- Footer -->
|
||||
<hr>
|
||||
<p><a rel="license" href="http://creativecommons.org/licenses/by/3.0/us/">
|
||||
<img alt="Creative Commons License" id="creative_commons_icon" src="http://i.creativecommons.org/l/by/3.0/88x31.png" /></a>
|
||||
Copyright 2009 - Biodiversity Information Standards - TDWG - <a href="http://www.tdwg.org/about-tdwg/contact-us/">Contact Us</a><br/>
|
||||
<p>Except where otherwise noted, content on this site is licensed under a
|
||||
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/us/"> Creative Commons
|
||||
Attribution 3.0 United States License</a>.</p>
|
||||
|
||||
</BODY></HTML>
|
|
@ -0,0 +1,199 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<HTML xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<HEAD>
|
||||
<META http-equiv="Content-Type" content="text/html; charset=US-ASCII"/>
|
||||
<TITLE>Darwin Core Type Vocabulary</TITLE>
|
||||
<LINK rel="schema.DwC" href="http://rs.tdwg.org/dwc/terms/"/>
|
||||
<META name="DC.title" content="Darwin Core Type vocabulary"/>
|
||||
<META name="DC.description" content="The list of Darwin Core terms to be used as values of the BasisOfRecord."/>
|
||||
<META name="DC.subject" content="biodiversity, standards"/>
|
||||
<META name="DC.creator" content="Darwin Core Task Group"/>
|
||||
<META name="DC.contributor" content="John Wieczorek (MVZ) <tuco@berkeley.edu>"/>
|
||||
<META name="DC.contributor" content="Markus Döring (GBIF) <mdoering@gbif.org>"/>
|
||||
<META name="DC.contributor" content="Renato De Giovanni (CRIA) <renato@cria.org.br>"/>
|
||||
<META name="DC.contributor" content="Tim Robertson (GBIF) <trobertson@gbif.org>"/>
|
||||
<META name="DC.contributor" content="Dave Vieglais (KUNHM) <vieglais@ku.edu>"/>
|
||||
<META name="DC.contributor" content="Stan Blum (CAS) <sblum@calacademy.org>"/>
|
||||
<META name="DC.modified" content="2009-02-12"/>
|
||||
<META name="DC.dateAccepted" content="2009-02-12"/>
|
||||
<META name="DC.format" content="text/html"/>
|
||||
<META name="DC.identifier" content="http://rs.tdwg.org/dwc/terms/type-vocabulary/2009-02-12"/>
|
||||
<META name="DC.publisher" content="Biodiversity Information Standards TDWG"/>
|
||||
<META name="DC.rights" content=""/>
|
||||
<META name="DC.accessRights" content="public"/>
|
||||
<META name="DC.bibliographicCitation" content="Darwin Core Type Vocabulary. 2009"/>
|
||||
<META name="DC.isReplacedBy" content=""/>
|
||||
<META name="DC.replaces" content=""/>
|
||||
<META name="DC.language" content="en"/>
|
||||
<LINK rel="meta" href="http://www.tdwg.org/"/>
|
||||
<LINK rel="stylesheet" href="../../DarwinCore_files/default.css" type="text/css"/>
|
||||
<SCRIPT src="../../DarwinCore_files/default.js" type="text/javascript"></SCRIPT>
|
||||
</HEAD>
|
||||
<BODY>
|
||||
<DIV class="header">
|
||||
|
||||
<TABLE width="100%" cellspacing="0" cellpadding="0" bgcolor="#617394">
|
||||
<TBODY><TR>
|
||||
<TD width="70"><A href="http://www.tdwg.org"><IMG src="../../DarwinCore_files/TDWGlogo_Twiki.gif" width="150" height="70" alt="Biodiversity Information Standards (TDWG) logo"></A></TD>
|
||||
<TD width="100%" height="70" align="right" valign="top">
|
||||
</TABLE>
|
||||
|
||||
<H1>Darwin Core Type Vocabulary</H1>
|
||||
<TABLE cellspacing="0" class="docinfo">
|
||||
<TBODY>
|
||||
<TR>
|
||||
<TH>Title:</TH>
|
||||
<TD>Darwin Core Type Vocabulary</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Date Issued:</TH>
|
||||
<TD>2009-02-12</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Abstract:</TH>
|
||||
<TD>The Darwin Core Type Vocabulary extends the DCMI Type Vocabulary
|
||||
[<A href="http://dublincore.org/documents/dcmi-type-vocabulary/">DCMI-TYPE</A>] and provides a list of approved terms that
|
||||
may be used as values for the BasisOfRecord term to identify the genre of a resource. The terms documented here are also
|
||||
included in the more comprehensive document "Darwin Core Terms: A complete history [<A href="../history/index.htm">HISTORY</A>].
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Contributors:</TH>
|
||||
<TD>John Wieczorek (MVZ)<tuco@berkeley.edu>, Markus Döring (GBIF)<mdoering@gbif.org>, Renato De Giovanni (CRIA)<renato@cria.org.br>, Tim Robertson (GBIF)<trobertson@gbif.org>, Dave Vieglais (KUNHM)<vieglais@ku.edu>, Stan Blum (CAS)<sblum@calacademy.org></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Legal:</TH>
|
||||
<TD>This document is governed by the standard legal, copyright, licensing provisions and disclaimers issued by the Taxonomic Databases Working Group.</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Part of TDWG Standard:</TH>
|
||||
<TD>***URL to DwC Standard*** goes here</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Creator:</TH>
|
||||
<TD>Darwin Core Task Group</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Identifier:</TH>
|
||||
<TD><A href="http://rs.tdwg.org/dwc/terms/type-vocabulary/2009-02-12/">http://rs.tdwg.org/dwc/terms/type-vocabulary/2009-02-12/</A></TD>
|
||||
</TR>
|
||||
<TR><TH>Latest Version:</TH>
|
||||
<TD><A href="http://rs.tdwg.org/dwc/terms/type-vocabulary/">http://rs.tdwg.org/dwc/terms/type-vocabulary/</A></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Replaces:</TH>
|
||||
<TD>Not applicable</TD>
|
||||
</TR>
|
||||
<TR><TH>Replaced By:</TH>
|
||||
<TD>Not applicable</TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Translations:</TH>
|
||||
<TD><A href="http://rs.tdwg.org/dwc/translations/">http://rs.tdwg.org/dwc/translations/</A></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TH>Document Status:</TH>
|
||||
<TD>This is a TDWG Request for Comment.</TD>
|
||||
</TR>
|
||||
</TBODY></TABLE>
|
||||
|
||||
<H2>Table of Contents</H2>
|
||||
<TABLE width="95%" border="0" align="center"><TBODY>
|
||||
<TR><TD width="100%">1. <a href="#introduction">Introduction</a>
|
||||
</TD></TR>
|
||||
<TR><TD width="100%">2. <a href="#references">References</a>
|
||||
</TD></TR>
|
||||
<TR><TD width="100%">3. <a href="#theterms">The Terms</a>
|
||||
</TD></TR>
|
||||
</TBODY></TABLE
|
||||
|
||||
<A name="introduction" id="introduction"></A>
|
||||
<H2>1. Introduction</H2>
|
||||
|
||||
The Darwin Core Type Vocabulary is a recommended controlled vocabulary for the description of a Darwin Core resource. It
|
||||
includes terms from the Dublin Core Type Vocabulary [<A href="http://dublincore.org/documents/dcmi-type-vocabulary/">DCMI-TYPE</A>]
|
||||
as well as other terms that expand upon or refine the terms found there. These terms are meant to be used as the values
|
||||
of the BasisOfRecord term in a Darwin Core resource.
|
||||
|
||||
<A name="references" id="references"></A>
|
||||
<H2>2. References</H2>
|
||||
<TABLE width="95%" border="0" align="center">
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="DCMI">[DCMI]</A></TD>
|
||||
<TD width="40%"><A href="http://dublincore.org/">http://dublincore.org/</A></TD>
|
||||
<TD width="50%">Dublin Core Metadata Initiative Web site.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="DCMI-TYPE">[DCMI-TYPE]</A></TD>
|
||||
<TD width="40%"><A href="http://dublincore.org/documents/dcmi-type-vocabulary/">http://dublincore.org/documents/dcmi-type-vocabulary/</A></TD>
|
||||
<TD width="50%">Dublin Core Metadata Initiative Type Vocabulary page.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="DWC">[DWC]</A></TD>
|
||||
<TD width="40%"><A href="../../index.htm">http://rs.tdwg.org/dwc/</A></TD>
|
||||
<TD width="50%">An introduction to the Darwin Core Standard.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="HISTORY">[HISTORY]</A></TD>
|
||||
<TD width="40%"><A href="../history/index.htm">http://rs.tdwg.org/dwc/terms/history/</A></TD>
|
||||
<TD width="50%">Complete historical reference to Darwin Core terms.</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD width="10%"><A name="TERMS">[TERMS]</A></TD>
|
||||
<TD width="40%"><A href="../index.htm">http://rs.tdwg.org/dwc/terms/</A></TD>
|
||||
<TD width="50%">Quick reference to recommended Darwin Core terms.</TD>
|
||||
</TR>
|
||||
|
||||
</TBODY></TABLE>
|
||||
|
||||
<A name="theterms" id="theterms"></A>
|
||||
<H2>3. The Terms</H2>
|
||||
<TABLE class="border" cellspacing="0">
|
||||
<TBODY>
|
||||
|
||||
<H3>Dublin Core</H3><P>
|
||||
<a href="http://dublincore.org/documents/dcmi-terms/#dcmitype-StillImage">StillImage</a>
|
||||
<a href="http://dublincore.org/documents/dcmi-terms/#dcmitype-MovingImage">MovingImage</a>
|
||||
<a href="http://dublincore.org/documents/dcmi-terms/#dcmitype-Sound">Sound</a>
|
||||
<a href="http://dublincore.org/documents/dcmi-terms/#dcmitype-PhysicalObject">PhysicalObject</a>
|
||||
|
||||
<!-- Darwin Core Index -->
|
||||
<H3>Darwin Core</H3><P>
|
||||
<a href="#PreservedSpecimen">PreservedSpecimen</a>
|
||||
<a href="#FossilSpecimen">FossilSpecimen</a>
|
||||
<a href="#LivingSpecimen">LivingSpecimen</a>
|
||||
<a href="#HumanObservation">HumanObservation</a>
|
||||
<a href="#MachineObservation">MachineObservation</a>
|
||||
<a href="#Location">Location</a>
|
||||
<a href="#Taxonomy">Taxonomy</a>
|
||||
<a href="#NomenclaturalChecklist">NomenclaturalChecklist</a>
|
||||
<p>
|
||||
|
||||
<!-- Begin Terms Table -->
|
||||
<TR><TH colspan="2"><A name="PreservedSpecimen">Term Name: PreservedSpecimen</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwctype/PreservedSpecimen</TD></TR> <TR><TD>Definition:</TD><TD>A resource describing a preserved specimen.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/PreservedSpecimen">http://code.google.com/p/darwincore/wiki/PreservedSpecimen</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/2000/01/rdf-schema#Class</TD></TR> <TR><TD>Member Of:</TD><TD>http://rs.tdwg.org/dwc/terms/DwCType</TD></TR> <TR><TD>Version:</TD><TD>PreservedSpecimen-2008-11-19</TD></TR> <TR><TD>Refines:</TD><TD>http://purl.org/dc/dcmitype/PhysicalObject</TD></TR> <TR><TD>Details:</TD><TD><a href="../history/index.htm#PreservedSpecimen-2008-11-19">PreservedSpecimen</a></TD>
|
||||
<TR><TH colspan="2"><A name="FossilSpecimen">Term Name: FossilSpecimen</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwctype/FossilSpecimen</TD></TR> <TR><TD>Definition:</TD><TD>A resource describing a fossilized specimen.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/FossilSpecimen">http://code.google.com/p/darwincore/wiki/FossilSpecimen</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/2000/01/rdf-schema#Class</TD></TR> <TR><TD>Member Of:</TD><TD>http://rs.tdwg.org/dwc/terms/DwCType</TD></TR> <TR><TD>Version:</TD><TD>FossilSpecimen-2008-11-19</TD></TR> <TR><TD>Refines:</TD><TD>http://rs.tdwg.org/dwc/dwctype/PreservedSpecimen</TD></TR> <TR><TD>Details:</TD><TD><a href="../history/index.htm#FossilSpecimen-2008-11-19">FossilSpecimen</a></TD>
|
||||
<TR><TH colspan="2"><A name="LivingSpecimen">Term Name: LivingSpecimen</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwctype/LivingSpecimen</TD></TR> <TR><TD>Definition:</TD><TD>A resource describing a living specimen.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/LivingSpecimen">http://code.google.com/p/darwincore/wiki/LivingSpecimen</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/2000/01/rdf-schema#Class</TD></TR> <TR><TD>Member Of:</TD><TD>http://rs.tdwg.org/dwc/terms/DwCType</TD></TR> <TR><TD>Version:</TD><TD>LivingSpecimen-2008-11-19</TD></TR> <TR><TD>Refines:</TD><TD>http://purl.org/dc/dcmitype/PhysicalObject</TD></TR> <TR><TD>Details:</TD><TD><a href="../history/index.htm#LivingSpecimen-2008-11-19">LivingSpecimen</a></TD>
|
||||
<TR><TH colspan="2"><A name="HumanObservation">Term Name: HumanObservation</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwctype/HumanObservation</TD></TR> <TR><TD>Definition:</TD><TD>A resource describing an observation made by one or more people without accompanying physical evidence.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/HumanObservation">http://code.google.com/p/darwincore/wiki/HumanObservation</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/2000/01/rdf-schema#Class</TD></TR> <TR><TD>Member Of:</TD><TD>http://rs.tdwg.org/dwc/terms/DwCType</TD></TR> <TR><TD>Version:</TD><TD>HumanObservation-2008-11-19</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Details:</TD><TD><a href="../history/index.htm#HumanObservation-2008-11-19">HumanObservation</a></TD>
|
||||
<TR><TH colspan="2"><A name="MachineObservation">Term Name: MachineObservation</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwctype/MachineObservation</TD></TR> <TR><TD>Definition:</TD><TD>A resource describing an observation made by a machine without accompanying physical evidence.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/MachineObservation">http://code.google.com/p/darwincore/wiki/MachineObservation</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/2000/01/rdf-schema#Class</TD></TR> <TR><TD>Member Of:</TD><TD>http://rs.tdwg.org/dwc/terms/DwCType</TD></TR> <TR><TD>Version:</TD><TD>MachineObservation-2008-11-19</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Details:</TD><TD><a href="../history/index.htm#MachineObservation-2008-11-19">MachineObservation</a></TD>
|
||||
<TR><TH colspan="2"><A name="Location">Term Name: Location</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwctype/Location</TD></TR> <TR><TD>Definition:</TD><TD>A resource describing a location.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/Location">http://code.google.com/p/darwincore/wiki/Location</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/2000/01/rdf-schema#Class</TD></TR> <TR><TD>Member Of:</TD><TD>http://rs.tdwg.org/dwc/terms/DwCType</TD></TR> <TR><TD>Version:</TD><TD>Location-2009-01-23</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Details:</TD><TD><a href="../history/index.htm#Location-2009-01-23">Location</a></TD>
|
||||
<TR><TH colspan="2"><A name="Taxonomy">Term Name: Taxonomy</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwctype/Taxonomy</TD></TR> <TR><TD>Definition:</TD><TD>A resource describing a taxon.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/Taxonomy">http://code.google.com/p/darwincore/wiki/Taxonomy</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/2000/01/rdf-schema#Class</TD></TR> <TR><TD>Member Of:</TD><TD>http://rs.tdwg.org/dwc/terms/DwCType</TD></TR> <TR><TD>Version:</TD><TD>Taxonomy-2009-01-23</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Details:</TD><TD><a href="../history/index.htm#Taxonomy-2009-01-23">Taxonomy</a></TD>
|
||||
<TR><TH colspan="2"><A name="NomenclaturalChecklist">Term Name: NomenclaturalChecklist</A></TH></TR> <TR><TD>URI:</TD><TD>http://rs.tdwg.org/dwc/dwctype/NomenclaturalChecklist</TD></TR> <TR><TD>Definition:</TD><TD>A resource describing a nomenclatural checklist.</TD></TR> <TR><TD>Comment:</TD><TD> See <a href="http://code.google.com/p/darwincore/wiki/NomenclaturalChecklist">http://code.google.com/p/darwincore/wiki/NomenclaturalChecklist</a></TD></TR> <TR><TD>Type of Term:</TD><TD>http://www.w3.org/2000/01/rdf-schema#Class</TD></TR> <TR><TD>Member Of:</TD><TD>http://rs.tdwg.org/dwc/terms/DwCType</TD></TR> <TR><TD>Version:</TD><TD>NomenclaturalChecklist-2009-01-23</TD></TR> <TR><TD>Refines:</TD><TD></TD></TR> <TR><TD>Details:</TD><TD><a href="../history/index.htm#NomenclaturalChecklist-2009-01-23">NomenclaturalChecklist</a></TD>
|
||||
|
||||
<!-- End Terms Table -->
|
||||
|
||||
</TBODY></TABLE>
|
||||
|
||||
<!-- Footer -->
|
||||
<hr>
|
||||
<p><a rel="license" href="http://creativecommons.org/licenses/by/3.0/us/">
|
||||
<img alt="Creative Commons License" id="creative_commons_icon" src="http://i.creativecommons.org/l/by/3.0/88x31.png" /></a>
|
||||
Copyright 2009 - Biodiversity Information Standards - TDWG - <a href="http://www.tdwg.org/about-tdwg/contact-us/">Contact Us</a><br/>
|
||||
<p>Except where otherwise noted, content on this site is licensed under a
|
||||
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/us/"> Creative Commons
|
||||
Attribution 3.0 United States License</a>.</p>
|
||||
|
||||
</BODY></HTML>
|
|
@ -0,0 +1,97 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<xs:schema version="0.1"
|
||||
xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
||||
xmlns="http://rs.tdwg.org/dwc/terms/xsd/archive/"
|
||||
xmlns:dwc="http://rs.tdwg.org/dwc/terms/"
|
||||
targetNamespace="http://rs.tdwg.org/dwc/terms/xsd/archive/"
|
||||
attributeFormDefault="unqualified"
|
||||
elementFormDefault="qualified">
|
||||
<xs:import namespace="http://www.w3.org/2001/XMLSchema" schemaLocation="http://www.w3.org/2001/XMLSchema.xsd"/>
|
||||
<xs:import namespace="http://rs.tdwg.org/dwc/terms/" schemaLocation="http://darwincore.googlecode.com/svn/trunk/xsd/tdwg_dwcterms.xsd"/>
|
||||
|
||||
<!-- The root element of the document is an archive -->
|
||||
<xs:element name="archive" type="archiveType"/>
|
||||
|
||||
<!-- Archives contain file defitions -->
|
||||
<xs:complexType name="archiveType">
|
||||
<xs:sequence>
|
||||
<xs:element name="file" type="fileType" maxOccurs="unbounded" minOccurs="1"/>
|
||||
</xs:sequence>
|
||||
<xs:attribute name="fileRoot" type="xs:string" use="required"/>
|
||||
<xs:element name="relationships" type="relationshipsType" maxOccurs="1" minOccurs="0"/>
|
||||
</xs:complexType>
|
||||
|
||||
<!-- The file within an archive defines the description and it's fields -->
|
||||
<xs:complexType name="fileType">
|
||||
<xs:sequence>
|
||||
<xs:element name="field" type="fieldType" minOccurs="1" maxOccurs="unbounded"/>
|
||||
</xs:sequence>
|
||||
<xs:attribute name="location" type="xs:string" use="required"/>
|
||||
<xs:attribute name="fieldsTerminatedBy" type="xs:string" use="optional" default=","/>
|
||||
<xs:attribute name="linesTerminatedBy" type="xs:string" use="optional" default="\n"/>
|
||||
<xs:attribute name="fieldsOptionallyEnclosedBy" type="xs:string" use="optional" default=""/>
|
||||
<xs:attribute name="compression" type="compressionEnum" use="optional"/>
|
||||
<xs:attribute name="encoding" type="encodingEnum" use="optional" default="ISO-8859-1"/>
|
||||
<xs:attribute name="ignoreHeaderLines" type="xs:integer" use="optional" default="0"/>
|
||||
<xs:attribute name="dateFormat" type="xs:string" use="optional"/>
|
||||
<xs:attribute name="rowType" type="xs:string" use="optional" default="http://rs.tdwg.org/dwc/terms/SimpleRecord"/>
|
||||
</xs:complexType>
|
||||
|
||||
<!-- A field represents a column within the file -->
|
||||
<xs:complexType name="fieldType">
|
||||
<xs:attribute name="index" type="xs:integer" use="optional"/>
|
||||
<xs:attribute name="term" type="dwc:DarwinCoreTermsEnum" use="required"/>
|
||||
<xs:attribute name="type" type="xs:anySimpleType" use="optional" default="xs:string"/>
|
||||
<xs:attribute name="default" type="xs:string" use="optional"/>
|
||||
</xs:complexType>
|
||||
|
||||
<!-- Relationships 'root' element -->
|
||||
<xs:complexType name="relationshipsType">
|
||||
<xs:sequence>
|
||||
<xs:element name="relationship" type="relationshipType" maxOccurs="unbounded" minOccurs="1"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
|
||||
<!-- A relationship within a relationships has 2 files always -->
|
||||
<xs:complexType name="relationshipType">
|
||||
<xs:sequence>
|
||||
<xs:element name="file" type="relationshipFileType" maxOccurs="2" minOccurs="2"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
|
||||
<!-- The file within a relationship definition specifies the location and the
|
||||
columns that define the 'join' between the files -->
|
||||
<xs:complexType name="relationshipFileType">
|
||||
<xs:attribute name="location" type="xs:string" use="required"/>
|
||||
<xs:attribute name="index" type="xs:integer" use="required"/>
|
||||
</xs:complexType>
|
||||
|
||||
<!-- Enumeration for supported compression types -->
|
||||
<xs:simpleType name="compressionEnum">
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:enumeration value="GZIP"/>
|
||||
<xs:enumeration value="ZIP"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
|
||||
<!-- Enumeration for supported encodings -->
|
||||
<xs:simpleType name="encodingEnum">
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:enumeration value="windows-1252"/>
|
||||
<xs:enumeration value="ISO-8859-1"/>
|
||||
<xs:enumeration value="UTF-8"/>
|
||||
<xs:enumeration value="UTF-16"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
|
||||
<!-- Enumeration for supported encodings -->
|
||||
<xs:simpleType name="typeEnum">
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:enumeration value="string"/>
|
||||
<xs:enumeration value="integer"/>
|
||||
<xs:enumeration value="decimal"/>
|
||||
<xs:enumeration value="date"/>
|
||||
<xs:enumeration value="time"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:schema>
|
|
@ -0,0 +1,66 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<xs:schema version="0.1" xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
||||
targetNamespace="http://purl.org/dc/terms/">
|
||||
|
||||
<!-- This schema has been created to avoid the original substitutionGroup
|
||||
mechanism which is extensively used in the official XSD and makes
|
||||
things very complicated for Full TAPIR providers to figure out the types
|
||||
NOTE: the types here were not thoroughly checked! -->
|
||||
|
||||
<xs:element name="title" type="xs:string"/>
|
||||
<xs:element name="creator" type="xs:string"/>
|
||||
<xs:element name="subject" type="xs:string"/>
|
||||
<xs:element name="description" type="xs:string"/>
|
||||
<xs:element name="publisher" type="xs:string"/>
|
||||
<xs:element name="contributor" type="xs:string"/>
|
||||
<xs:element name="date" type="xs:date"/>
|
||||
<xs:element name="type" type="xs:string"/>
|
||||
<xs:element name="format" type="xs:string"/>
|
||||
<xs:element name="identifier" type="xs:string"/>
|
||||
<xs:element name="source" type="xs:string"/>
|
||||
<xs:element name="language" type="xs:string"/>
|
||||
<xs:element name="relation" type="xs:string"/>
|
||||
<xs:element name="coverage" type="xs:string"/>
|
||||
<xs:element name="rights" type="xs:string"/>
|
||||
<xs:element name="alternative" type="xs:string"/>
|
||||
<xs:element name="tableOfContents" type="xs:string"/>
|
||||
<xs:element name="abstract" type="xs:string"/>
|
||||
<xs:element name="created" type="xs:date"/>
|
||||
<xs:element name="valid" type="xs:date"/>
|
||||
<xs:element name="available" type="xs:date"/>
|
||||
<xs:element name="issued" type="xs:date"/>
|
||||
<xs:element name="modified" type="xs:dateTime"/>
|
||||
<xs:element name="dateAccepted" type="xs:date"/>
|
||||
<xs:element name="dateCopyrighted" type="xs:date"/>
|
||||
<xs:element name="dateSubmitted" type="xs:date"/>
|
||||
<xs:element name="extent" type="xs:string"/>
|
||||
<xs:element name="medium" type="xs:string"/>
|
||||
<xs:element name="isVersionOf" type="xs:string"/>
|
||||
<xs:element name="hasVersion" type="xs:string"/>
|
||||
<xs:element name="isReplacedBy" type="xs:string"/>
|
||||
<xs:element name="replaces" type="xs:string"/>
|
||||
<xs:element name="isRequiredBy" type="xs:string"/>
|
||||
<xs:element name="requires" type="xs:string"/>
|
||||
<xs:element name="isPartOf" type="xs:string"/>
|
||||
<xs:element name="hasPart" type="xs:string"/>
|
||||
<xs:element name="isReferencedBy" type="xs:string"/>
|
||||
<xs:element name="references" type="xs:string"/>
|
||||
<xs:element name="isFormatOf" type="xs:string"/>
|
||||
<xs:element name="hasFormat" type="xs:string"/>
|
||||
<xs:element name="conformsTo" type="xs:string"/>
|
||||
<xs:element name="spatial" type="xs:string"/>
|
||||
<xs:element name="temporal" type="xs:string"/>
|
||||
<xs:element name="audience" type="xs:string"/>
|
||||
<xs:element name="accrualMethod" type="xs:string"/>
|
||||
<xs:element name="accrualPeriodicity" type="xs:string"/>
|
||||
<xs:element name="accrualPolicy" type="xs:string"/>
|
||||
<xs:element name="instructionalMethod" type="xs:string"/>
|
||||
<xs:element name="provenance" type="xs:string"/>
|
||||
<xs:element name="rightsHolder" type="xs:string"/>
|
||||
<xs:element name="mediator" type="xs:string"/>
|
||||
<xs:element name="educationLevel" type="xs:string"/>
|
||||
<xs:element name="accessRights" type="xs:string"/>
|
||||
<xs:element name="license" type="xs:string"/>
|
||||
<xs:element name="bibliographicCitation" type="xs:string"/>
|
||||
|
||||
</xs:schema>
|
|
@ -0,0 +1,352 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<xs:schema version="0.1" xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
||||
targetNamespace="http://rs.tdwg.org/dwc/terms/germplasm/"
|
||||
xmlns:dwc="http://rs.tdwg.org/dwc/terms/"
|
||||
xmlns:gr="http://rs.tdwg.org/dwc/terms/germplasm/"
|
||||
attributeFormDefault="qualified"
|
||||
elementFormDefault="qualified"
|
||||
>
|
||||
|
||||
<!--
|
||||
WARNING! DRAFT SCHEMA!
|
||||
UNDER DEVELOPEMENT
|
||||
NOT FOR PRODUCTION!
|
||||
-->
|
||||
|
||||
<!--
|
||||
Darwin Core Extension for genetic resources, germplasm
|
||||
Draft version 2009, January
|
||||
-->
|
||||
|
||||
<!--
|
||||
What would be the most reasonable namespace to use...?
|
||||
Suggestion: http://rs.tdwg.org/dwc/terms/germplasm/
|
||||
Alternative example: http://www.bioversityinternational.org/dwc/terms/germplasm/
|
||||
|
||||
Current GCP_Passport (1.05); ns: http://generationcp.org/schemas/gcp_passport/1.05
|
||||
Previous GCP_Passport, ns: http://www.ipgri.org/schemas/gcp_pass/1.03
|
||||
MCPD namespace: http://www.ipgri.cgiar.org/schemas/mcpd/1.00 (NB! IPGRI is now Bioversity)
|
||||
|
||||
Relevant further information:
|
||||
http://gcpcr.grinfo.net/include/webservices/schema-documentation.php
|
||||
See: http://www.generationcp.org/schemas/documentation/gcp_passport_1.05.xsd.html
|
||||
See: http://chm.grinfo.net/index.php?app=data_schema&inc=schema_list
|
||||
See: http://wwwdev.ngb.se/portal/index.php?app=data_schema&inc=schema_list
|
||||
-->
|
||||
|
||||
<xs:import namespace="http://rs.tdwg.org/dwc/terms/" schemaLocation="http://darwincore.googlecode.com/svn/trunk/xsd/tdwg_dwcterms.xsd"/>
|
||||
<!-- ANY GENETIC RESOURCES IDENTIFIER -->
|
||||
<xs:element name="anyIdentifier" abstract="true" substitutionGroup="dwc:anyIdentifier"/>
|
||||
<!-- ANY GENETIC RESOURCES PROPERTY -->
|
||||
<xs:element name="anyProperty" abstract="true" substitutionGroup="dwc:anyProperty"/>
|
||||
<!-- ANY GENETIC RESOURCES CLASS TERM -->
|
||||
<xs:element name="anyClass" abstract="true" substitutionGroup="dwc:anyClass"/>
|
||||
|
||||
<!--
|
||||
Additional terms for the darwin core sample class
|
||||
-->
|
||||
|
||||
<!--
|
||||
Note that the Enumeration defined below is not used as type definition for the relevant terms yet.
|
||||
Conflicing with default type for generic Darwin Core schema...?
|
||||
-->
|
||||
<xs:simpleType name="BiologicalStatusCodeEnum">
|
||||
<xs:restriction base="xs:int">
|
||||
<xs:enumeration value="100"><xs:annotation><xs:documentation>Wild</xs:documentation></xs:annotation></xs:enumeration>
|
||||
<xs:enumeration value="110"><xs:annotation><xs:documentation>Natural wild</xs:documentation></xs:annotation></xs:enumeration>
|
||||
<xs:enumeration value="120"><xs:annotation><xs:documentation>Semi-matural/wild</xs:documentation></xs:annotation></xs:enumeration>
|
||||
<xs:enumeration value="200"><xs:annotation><xs:documentation>Weedy</xs:documentation></xs:annotation></xs:enumeration>
|
||||
<xs:enumeration value="300"><xs:annotation><xs:documentation>Traditional cultivar/landrace</xs:documentation></xs:annotation></xs:enumeration>
|
||||
<xs:enumeration value="400"><xs:annotation><xs:documentation>Breeding/research material</xs:documentation></xs:annotation></xs:enumeration>
|
||||
<xs:enumeration value="410"><xs:annotation><xs:documentation>Breeders line</xs:documentation></xs:annotation></xs:enumeration>
|
||||
<xs:enumeration value="411"><xs:annotation><xs:documentation>Syntetic population</xs:documentation></xs:annotation></xs:enumeration>
|
||||
<xs:enumeration value="412"><xs:annotation><xs:documentation>Hybrid</xs:documentation></xs:annotation></xs:enumeration>
|
||||
<xs:enumeration value="413"><xs:annotation><xs:documentation>Founder stock/base population</xs:documentation></xs:annotation></xs:enumeration>
|
||||
<xs:enumeration value="414"><xs:annotation><xs:documentation>Inbred line (parent of hybrid cultivar)</xs:documentation></xs:annotation></xs:enumeration>
|
||||
<xs:enumeration value="415"><xs:annotation><xs:documentation>Segregating population</xs:documentation></xs:annotation></xs:enumeration>
|
||||
<xs:enumeration value="420"><xs:annotation><xs:documentation>Genetic stock</xs:documentation></xs:annotation></xs:enumeration>
|
||||
<xs:enumeration value="500"><xs:annotation><xs:documentation>Advanced/improved cultivar</xs:documentation></xs:annotation></xs:enumeration>
|
||||
<xs:enumeration value="999"><xs:annotation><xs:documentation>Other (elaborate in remarks)</xs:documentation></xs:annotation></xs:enumeration>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
<xs:simpleType name="SampleAcquisitionEnum">
|
||||
<xs:restriction base="xs:int">
|
||||
<xs:enumeration value="10"><xs:annotation><xs:documentation>Wild habitat</xs:documentation></xs:annotation></xs:enumeration>
|
||||
<xs:enumeration value="11"><xs:annotation><xs:documentation>Forest/woodland</xs:documentation></xs:annotation></xs:enumeration>
|
||||
<xs:enumeration value="12"><xs:annotation><xs:documentation>Shrubland</xs:documentation></xs:annotation></xs:enumeration>
|
||||
<xs:enumeration value="13"><xs:annotation><xs:documentation>Grassland</xs:documentation></xs:annotation></xs:enumeration>
|
||||
<xs:enumeration value="14"><xs:annotation><xs:documentation>Desert/tundra</xs:documentation></xs:annotation></xs:enumeration>
|
||||
<xs:enumeration value="15"><xs:annotation><xs:documentation>Aquatic habitat</xs:documentation></xs:annotation></xs:enumeration>
|
||||
<xs:enumeration value="20"><xs:annotation><xs:documentation>Farm or cultivated habitat</xs:documentation></xs:annotation></xs:enumeration>
|
||||
<xs:enumeration value="21"><xs:annotation><xs:documentation>Field</xs:documentation></xs:annotation></xs:enumeration>
|
||||
<xs:enumeration value="22"><xs:annotation><xs:documentation>Orchard</xs:documentation></xs:annotation></xs:enumeration>
|
||||
<xs:enumeration value="23"><xs:annotation><xs:documentation>Backyard, kitchen or home garden</xs:documentation></xs:annotation></xs:enumeration>
|
||||
<xs:enumeration value="24"><xs:annotation><xs:documentation>Fallow land</xs:documentation></xs:annotation></xs:enumeration>
|
||||
<xs:enumeration value="25"><xs:annotation><xs:documentation>Pasture</xs:documentation></xs:annotation></xs:enumeration>
|
||||
<xs:enumeration value="26"><xs:annotation><xs:documentation>Farm store</xs:documentation></xs:annotation></xs:enumeration>
|
||||
<xs:enumeration value="27"><xs:annotation><xs:documentation>Threshing floor</xs:documentation></xs:annotation></xs:enumeration>
|
||||
<xs:enumeration value="28"><xs:annotation><xs:documentation>Park</xs:documentation></xs:annotation></xs:enumeration>
|
||||
<xs:enumeration value="30"><xs:annotation><xs:documentation>Market or shop</xs:documentation></xs:annotation></xs:enumeration>
|
||||
<xs:enumeration value="40"><xs:annotation><xs:documentation>Institute, experimental station, research organization, genebank</xs:documentation></xs:annotation></xs:enumeration>
|
||||
<xs:enumeration value="50"><xs:annotation><xs:documentation>Seed company</xs:documentation></xs:annotation></xs:enumeration>
|
||||
<xs:enumeration value="60"><xs:annotation><xs:documentation>Weedy, distributed or ruderal habitat</xs:documentation></xs:annotation></xs:enumeration>
|
||||
<xs:enumeration value="61"><xs:annotation><xs:documentation>Roadside</xs:documentation></xs:annotation></xs:enumeration>
|
||||
<xs:enumeration value="62"><xs:annotation><xs:documentation>Field margin</xs:documentation></xs:annotation></xs:enumeration>
|
||||
<xs:enumeration value="99"><xs:annotation><xs:documentation>Other (elaborate in remarks)</xs:documentation></xs:annotation></xs:enumeration>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
<xs:simpleType name="TypeOfStorageEnum">
|
||||
<xs:restriction base="xs:int">
|
||||
<xs:enumeration value="10"><xs:annotation><xs:documentation>Seed collection</xs:documentation></xs:annotation></xs:enumeration>
|
||||
<xs:enumeration value="11"><xs:annotation><xs:documentation>Short term</xs:documentation></xs:annotation></xs:enumeration>
|
||||
<xs:enumeration value="12"><xs:annotation><xs:documentation>Medium term</xs:documentation></xs:annotation></xs:enumeration>
|
||||
<xs:enumeration value="13"><xs:annotation><xs:documentation>Long term</xs:documentation></xs:annotation></xs:enumeration>
|
||||
<xs:enumeration value="20"><xs:annotation><xs:documentation>Field collection</xs:documentation></xs:annotation></xs:enumeration>
|
||||
<xs:enumeration value="30"><xs:annotation><xs:documentation>In vitro collection (slow growth)</xs:documentation></xs:annotation></xs:enumeration>
|
||||
<xs:enumeration value="40"><xs:annotation><xs:documentation>Cryopreserved collection</xs:documentation></xs:annotation></xs:enumeration>
|
||||
<xs:enumeration value="99"><xs:annotation><xs:documentation>Other (elaborate in remarks)</xs:documentation></xs:annotation></xs:enumeration>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
|
||||
<xs:element name="BiologicalStatusOfSample" substitutionGroup="dwc:anySampleTerm">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
Biological status of sample
|
||||
Wild, Crop wild relative (CWR), Primitive, Traditional cultivar/landrace,
|
||||
Breeding line, Genetic stock, Modern cultivar
|
||||
(recommended to follow a regulated vocabulary, or preferable the SAMPSTAT code, MCPD term 20).
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element name="BiologicalStatusOfSampleCode" substitutionGroup="dwc:anySampleTerm">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
MCPD term 20, Biological status of sample, SAMPSTAT.
|
||||
SAMPSTAT codes distinguish wild and primitive cultivars
|
||||
from modern cultivars and breeding lines (material under development).
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element name="GermplasmIdentifier" substitutionGroup="dwc:anySampleTerm">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
MCPD term: 11, Accession name, ACCENAME.
|
||||
Either a registered or other formal designation given to the accession.
|
||||
For example: Rheinische Vorgebirgstrauben;Emma;Avlon
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element name="CollectingInstituteCode" substitutionGroup="dwc:anySamplingEventTerm">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
MCPD term 4, Collecting institute code, COLLCODE.
|
||||
FAO WIEWS institute code for the collecting/gathering institute.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element name="AncestralData" substitutionGroup="dwc:anySampleTerm">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
MCPD term 21, Ancestral data, ANCEST.
|
||||
Information about either pedigree or other description of ancestral information.
|
||||
For example a pedigree 'Hanna/7*Atlas//Turk/8*Atlas',
|
||||
or a description 'mutation found in Hanna', 'selection from Irene'.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element name="PurdyPedigree" substitutionGroup="dwc:anySampleTerm">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
Ancestral information following the purdy pedigree format.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<!-- Type of storage can be multiple instances, perhaps need to be separate class? -->
|
||||
<xs:element name="TypeOfStorage" substitutionGroup="dwc:anySampleTerm">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
MCPD term: 27, Type of germplasm storage, STORAGE.
|
||||
Refer to FAO/IPGRI Genebank Standards 1994 for details on storage type.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
|
||||
<!-- Location of Safety Duplicates as class, multiple instances -->
|
||||
<xs:element name="LocationOfSafetyDuplication" substitutionGroup="dwc:anyClass">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element ref="dwc:SampleID" minOccurs="1"/>
|
||||
<xs:element ref="gr:anySafetyDuplicationTerm" minOccurs="0" maxOccurs="unbounded"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="SampleID" substitutionGroup="dwc:anyIdentifier"/>
|
||||
<xs:element name="anySafetyDuplicationTerm" abstract="true" substitutionGroup="dwc:anyProperty"/>
|
||||
<xs:element name="SafetyDuplicationID" substitutionGroup="dwc:anyIdentifier"/>
|
||||
<xs:element name="SafetyDuplicationInstituteCode" substitutionGroup="gr:anySafetyDuplicationTerm">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
MCPD term: 26, Location of safety duplicates, DUPLSITE.
|
||||
FAO institute code of the institute where a safety duplicate
|
||||
of the accession is maintained.
|
||||
Example: For Svalbard Global Seed Vault (SGSV), use the FAO WIEWS institute code NOR051.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element name="SafetyDuplicationInstitute" substitutionGroup="gr:anySafetyDuplicationTerm"/>
|
||||
<xs:element name="SafetyDuplicationDate" substitutionGroup="gr:anySafetyDuplicationTerm"/>
|
||||
|
||||
<!--
|
||||
<xs:element name="SvalbardSafetyDuplicate" substitutionGroup="dwc:anySampleTerm">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
A flag to indicate safe duplication at the Svalbard Global Seeds Vault.
|
||||
The Svalbard Global Seed Vault (SGSV) is a second safety backup facility.
|
||||
Seeds in safety backup at SGSV is also safe duplicated at another location.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
-->
|
||||
|
||||
<!-- Treaties and regulations (for PGRFA) -->
|
||||
<!--
|
||||
List treaty/regulation name, and issuing body,
|
||||
and perhaps when sample was included under the regulations
|
||||
NB! This class desperatly need to be developed further...!
|
||||
Example: ITPGRFA, International Treaty for Plant Genetic Resources
|
||||
The ITPGRFA Annex 1 list the crops regulated by this treaty.
|
||||
-->
|
||||
<xs:element name="GermplasmTreatiesAndRegulations" substitutionGroup="dwc:anyClass">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element ref="dwc:SampleID" minOccurs="1"/>
|
||||
<xs:element ref="gr:anyGermplasmRegulationTerm" minOccurs="0" maxOccurs="unbounded"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="SampleID" substitutionGroup="dwc:anyIdentifier"/>
|
||||
<xs:element name="anyGermplasmRegulationTerm" abstract="true" substitutionGroup="dwc:anyProperty"/>
|
||||
<xs:element name="GermplasmRegulationID" substitutionGroup="dwc:anyIdentifier"/>
|
||||
<xs:element name="TreatyOrRegulationName" substitutionGroup="gr:anyGermplasmRegulationTerm"/>
|
||||
<xs:element name="TreatyOrRegulationGoverningBody" substitutionGroup="gr:anyGermplasmRegulationTerm">
|
||||
|
||||
|
||||
<!-- SAMPLE ACQUISITION (DONOR EVENT) -->
|
||||
<!--
|
||||
Will the donor/acquisition class also need the reference to the genebank institute
|
||||
receiving the sample to keep track of a chain of donor events
|
||||
proceeding the donation of the sample to the holding genebank...?
|
||||
-->
|
||||
<xs:element name="SampleAcquisition" substitutionGroup="dwc:anyClass">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element ref="dwc:SampleID" minOccurs="1"/>
|
||||
<!--
|
||||
<xs:element ref="dwc:SampleID" minOccurs="1"/>
|
||||
<xs:element ref="dwc:SampleID" minOccurs="1"/>
|
||||
<xs:any namespace="##other" maxOccurs="unbounded" minOccurs="0"/>
|
||||
-->
|
||||
<xs:element ref="gr:anySampleAcquisitionTerm" minOccurs="0" maxOccurs="unbounded"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="SampleID" substitutionGroup="dwc:anyIdentifier"/>
|
||||
<xs:element name="anySampleAcquisitionTerm" abstract="true" substitutionGroup="dwc:anyProperty"/>
|
||||
<xs:element name="SampleAcquisitionID" substitutionGroup="dwc:anyIdentifier"/>
|
||||
<xs:element name="DonorsSampleIdentifier" substitutionGroup="dwc:anyIdentificationTerm"/>
|
||||
<xs:element name="SampleAcquisitionSource" substitutionGroup="gr:anySampleAcquisitionTerm">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
MCPD term 22, Collecting/acquisition source, COLLSRC.
|
||||
Coded as integer value, defined enumeration.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element name="SampleAcquisitionDate" substitutionGroup="gr:anySampleAcquisitionTerm">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
MCPD term 12, Acquisition date, ACQDATE.
|
||||
Date when the germplasm sample (accession) entered the genebank collection.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element name="DonorInstituteCode" substitutionGroup="gr:anySampleAcquisitionTerm">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
MCPD term 23, Donor institute code, DONORCODE
|
||||
FAO WIEWS institute code for the donor institute.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element name="DonorInstitute" substitutionGroup="gr:anySampleAcquisitionTerm">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
Donor institute name.
|
||||
If the FAO WIEWS institute code is available, this term should not be reported.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element name="SampleAcquisitionRemarks" substitutionGroup="gr:anySampleAcquisitionTerm"/>
|
||||
|
||||
<!-- BREEDING EVENT (Cultivation event, "similar" but different from Sampling Event) -->
|
||||
<!-- These breeder terms may not need a separate class, only one instance per sample -->
|
||||
<xs:element name="BreedingEventGroup" substitutionGroup="dwc:anyClass">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element ref="dwc:SampleID" minOccurs="1"/>
|
||||
<!--
|
||||
<xs:element ref="dwc:SampleID" minOccurs="1"/>
|
||||
<xs:element ref="gr:BreedingEventID" minOccurs="1"/>
|
||||
<xs:element ref="gr:etc..." minOccurs="1"/>
|
||||
<xs:any namespace="##other" maxOccurs="unbounded" minOccurs="0"/>
|
||||
-->
|
||||
<xs:element ref="gr:anyBreedingEventTerm" minOccurs="0" maxOccurs="unbounded"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="anyBreedingEventTerm" abstract="true" substitutionGroup="gr:anyProperty"/>
|
||||
<xs:element name="BreedingEventID" substitutionGroup="gr:anyIdentifier"/>
|
||||
<xs:element name="BreedersSampleIdentifier" substitutionGroup="gr:anyIdentificationTerm"/>
|
||||
<xs:element name="BreedingYear" substitutionGroup="gr:anyBreedingEventTerm"/>
|
||||
<xs:element name="BreederPerson" substitutionGroup="gr:anyBreedingEventTerm"/>
|
||||
<xs:element name="BreederInstituteCode" substitutionGroup="gr:anyBreedingEventTerm">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
MCPD term 19, Breeding institute code, BREDCODE
|
||||
FAO WIEWS institute code for the breeding institute.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element name="BreederInstitute" substitutionGroup="gr:anyBreedingEventTerm">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
Breeder institute name.
|
||||
If the FAO WIEWS institute code is available, this term should not be reported.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element name="BreedingCountry" substitutionGroup="gr:anyBreedingEventTerm"/>
|
||||
<xs:element name="BreedingCountryCode" substitutionGroup="gr:anyBreedingEventTerm"/>
|
||||
<xs:element name="BreedingEventRemarks" substitutionGroup="gr:anyBreedingEventTerm"/>
|
||||
|
||||
|
||||
<!-- Cultivar domain -->
|
||||
<!-- FAO have developed a cultivar database -->
|
||||
<!-- NB! Probably much better to take this out in separate extension...! -->
|
||||
<!-- FAO to develop this extension...? -->
|
||||
<!--
|
||||
<xs:group name="CultivarGroup">
|
||||
<xs:sequence>
|
||||
<xs:choice maxOccurs="unbounded">
|
||||
<xs:element ref="dwc:anyIdentifier"/>
|
||||
<xs:element ref="dwc:anyClass"/>
|
||||
<xs:element ref="gr:anyCultivarTerm" minOccurs="0" maxOccurs="unbounded"/>
|
||||
</xs:choice>
|
||||
</xs:sequence>
|
||||
</xs:group>
|
||||
<xs:element name="anyCultivarTerm" abstract="true" substitutionGroup="cultivar:anyProperty"/>
|
||||
<xs:element name="CultivarID" substitutionGroup="cultivar:anyIdentifier"/>
|
||||
<xs:element name="CultivarName" substitutionGroup="cultivar:anyIdentificationTerm"/>
|
||||
-->
|
||||
|
||||
</xs:schema>
|
|
@ -0,0 +1,39 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<xs:schema version="0.1" xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
||||
targetNamespace="http://rs.tdwg.org/dwc/dwcrecord/"
|
||||
xmlns:dwr="http://rs.tdwg.org/dwc/dwcrecord/"
|
||||
xmlns:dwc="http://rs.tdwg.org/dwc/terms/">
|
||||
<xs:import namespace="http://rs.tdwg.org/dwc/terms/" schemaLocation="http://darwincore.googlecode.com/svn/trunk/xsd/tdwg_dwcclasses.xsd"/>
|
||||
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
This schema defines a classic darwin core record using the new terms from namespace http://rs.tdwg.org/dwc/terms/
|
||||
It allows every term including extensions to appear as often as needed and in any order.
|
||||
In addition to the standard classic schema it also allows classes to appear at the end of each record.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
|
||||
|
||||
<xs:element name="DarwinRecordSet" >
|
||||
<xs:annotation>
|
||||
<xs:documentation>Simple container to encode multiple darwin core records that have no notion of which class they are.
|
||||
They can therefore represent a taxon, an observation or just a locality</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element ref="dwr:DarwinRecord" maxOccurs="unbounded" minOccurs="0"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<!-- SAMPLE domain -->
|
||||
<xs:element name="DarwinRecord">
|
||||
<xs:complexType>
|
||||
<xs:choice maxOccurs="unbounded">
|
||||
<xs:element ref="dwc:any"/>
|
||||
<xs:group ref="dwc:DublinCoreTerms"/>
|
||||
</xs:choice>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
</xs:schema>
|
|
@ -0,0 +1,89 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- ==================================================================== -->
|
||||
<!-- Introduction -->
|
||||
<!-- ==================================================================== -->
|
||||
<!-- Schema for a type library for darwin and extension data types. -->
|
||||
<!-- History: -->
|
||||
<!-- version 0.5 2007-02-14 John Wieczorek -->
|
||||
<!-- Status: -->
|
||||
<!-- Ready for testing. -->
|
||||
<!-- Should be placed in a tdwg shared data types library. -->
|
||||
<!-- See http://wiki.tdwg.org for current status of this standard -->
|
||||
|
||||
<!-- ==================================================================== -->
|
||||
<!-- Schema -->
|
||||
<!-- ==================================================================== -->
|
||||
<xs:schema
|
||||
xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
||||
elementFormDefault="unqualified" version="0.5">
|
||||
|
||||
<!-- ============================================================== -->
|
||||
<!-- Types -->
|
||||
<!-- ============================================================== -->
|
||||
<xs:simpleType name="nonEmptyString">
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:minLength value="1"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
|
||||
<xs:simpleType name="positiveDouble">
|
||||
<xs:restriction base="xs:double">
|
||||
<xs:minExclusive value="0"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
|
||||
<xs:simpleType name="dayOfYearDataType">
|
||||
<xs:restriction base="xs:integer">
|
||||
<xs:minInclusive value="1"/>
|
||||
<xs:maxInclusive value="366"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
|
||||
<xs:simpleType name="decimalLatitudeDataType">
|
||||
<xs:restriction base="xs:double">
|
||||
<xs:minInclusive value="-90"/>
|
||||
<xs:maxInclusive value="90"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
|
||||
<xs:simpleType name="decimalLongitudeDataType">
|
||||
<xs:restriction base="xs:double">
|
||||
<xs:minInclusive value="-180"/>
|
||||
<xs:maxInclusive value="180"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
|
||||
<xs:simpleType name="spatialFitDataType">
|
||||
<xs:union>
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:double">
|
||||
<xs:minInclusive value="0"/>
|
||||
<xs:maxInclusive value="0"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:double">
|
||||
<xs:minInclusive value="1"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:NMTOKEN">
|
||||
<xs:enumeration value="undefined"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:union>
|
||||
</xs:simpleType>
|
||||
|
||||
<xs:simpleType name="DateTimeISO">
|
||||
<xs:annotation>
|
||||
<xs:documentation xml:lang="en">
|
||||
The date and time expressed in a way conforming to a subset of ISO 8601. Meant to be exactly the same as DateTimeISO defined in ABCD.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:pattern value="\d\d\d\d(\-(0[1-9]|1[012])(\-((0[1-9])|1\d|2\d|3[01])(T(0\d|1\d|2[0-3])(:[0-5]\d){0,2})?)?)?|\-\-(0[1-9]|1[012])(\-(0[1-9]|1\d|2\d|3[01]))?|\-\-\-(0[1-9]|1\d|2\d|3[01])">
|
||||
</xs:pattern>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
|
||||
</xs:schema>
|
|
@ -0,0 +1,189 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<xs:schema version="0.1" xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
||||
targetNamespace="http://rs.tdwg.org/dwc/terms/"
|
||||
xmlns:dc="http://purl.org/dc/terms/"
|
||||
xmlns:dwc="http://rs.tdwg.org/dwc/terms/">
|
||||
|
||||
<xs:import namespace="http://purl.org/dc/terms/" schemaLocation="dublin_core.xsd"/>
|
||||
<xs:include schemaLocation="tdwg_dwcterms.xsd"/>
|
||||
|
||||
<xs:element name="Sample">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element ref="dc:modified"/>
|
||||
<xs:element ref="dc:rights" minOccurs="0"/>
|
||||
<xs:element ref="dc:rightsHolder" minOccurs="0"/>
|
||||
<xs:element ref="dc:language" minOccurs="0"/>
|
||||
<xs:element ref="dwc:InstitutionCode" minOccurs="0"/>
|
||||
<xs:element ref="dwc:CollectionCode" minOccurs="0"/>
|
||||
<xs:element ref="dwc:CollectionID" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SampleID"/>
|
||||
<xs:element ref="dwc:BasisOfRecord" minOccurs="0"/>
|
||||
<xs:element ref="dwc:AccessConstraints" minOccurs="0"/>
|
||||
<xs:element ref="dwc:InformationWithheld" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Generalizations" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SampleDetails" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SampleRemarks" minOccurs="0"/>
|
||||
<xs:element ref="dwc:CatalogNumber" minOccurs="0"/>
|
||||
<xs:element ref="dwc:CatalogNumberNumeric" minOccurs="0"/>
|
||||
<xs:element ref="dwc:IndividualID" minOccurs="0"/>
|
||||
<xs:element ref="dwc:IndividualCount" minOccurs="0"/>
|
||||
<xs:element ref="dwc:FieldNotes" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Citation" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Sex" minOccurs="0"/>
|
||||
<xs:element ref="dwc:LifeStage" minOccurs="0"/>
|
||||
<xs:element ref="dwc:ReproductiveCondition" minOccurs="0"/>
|
||||
<xs:element ref="dwc:EstablishmentMeans" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SampleAttributes" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Preparations" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Disposition" minOccurs="0"/>
|
||||
<xs:element ref="dwc:OtherCatalogNumbers" minOccurs="0"/>
|
||||
<xs:element ref="dwc:AssociatedMedia" minOccurs="0"/>
|
||||
<xs:element ref="dwc:AssociatedReferences" minOccurs="0"/>
|
||||
<xs:element ref="dwc:AssociatedSamples" minOccurs="0"/>
|
||||
<xs:element ref="dwc:AssociatedSequences" minOccurs="0"/>
|
||||
<xs:element ref="dwc:AssociatedTaxa" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SamplingEvent" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Identification" minOccurs="0"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="SamplingEvent">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element ref="dc:modified" minOccurs="0"/>
|
||||
<xs:element ref="dc:rights" minOccurs="0"/>
|
||||
<xs:element ref="dc:rightsHolder" minOccurs="0"/>
|
||||
<xs:element ref="dc:language" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SamplingEventID" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SamplingProtocol" minOccurs="0"/>
|
||||
<xs:element ref="dwc:VerbatimCollectingDate" minOccurs="0"/>
|
||||
<xs:element ref="dwc:EarliestDateCollected" minOccurs="0"/>
|
||||
<xs:element ref="dwc:LatestDateCollected" minOccurs="0"/>
|
||||
<xs:element ref="dwc:StartDayOfYear" minOccurs="0"/>
|
||||
<xs:element ref="dwc:EndDayOfYear" minOccurs="0"/>
|
||||
<xs:element ref="dwc:StartTimeOfDay" minOccurs="0"/>
|
||||
<xs:element ref="dwc:EndTimeOfDay" minOccurs="0"/>
|
||||
<xs:element ref="dwc:YearSampled" minOccurs="0"/>
|
||||
<xs:element ref="dwc:MonthOfYear" minOccurs="0"/>
|
||||
<xs:element ref="dwc:DayOfMonth" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Habitat" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Behavior" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Collector" minOccurs="0"/>
|
||||
<xs:element ref="dwc:CollectorNumber" minOccurs="0"/>
|
||||
<xs:element ref="dwc:FieldNumber" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SamplingEventAttributes" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SamplingEventRemarks" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SamplingLocation" minOccurs="0"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="SamplingLocation">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element ref="dc:modified" minOccurs="0"/>
|
||||
<xs:element ref="dc:rights" minOccurs="0"/>
|
||||
<xs:element ref="dc:rightsHolder" minOccurs="0"/>
|
||||
<xs:element ref="dc:language" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SamplingLocationID" minOccurs="0"/>
|
||||
<xs:element ref="dwc:HigherGeographyID" minOccurs="0"/>
|
||||
<xs:element ref="dwc:HigherGeography" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Continent" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Waterbody" minOccurs="0"/>
|
||||
<xs:element ref="dwc:IslandGroup" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Island" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Country" minOccurs="0"/>
|
||||
<xs:element ref="dwc:CountryCode" minOccurs="0"/>
|
||||
<xs:element ref="dwc:StateProvince" minOccurs="0"/>
|
||||
<xs:element ref="dwc:County" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Locality" minOccurs="0"/>
|
||||
<xs:element ref="dwc:VerbatimLocality" minOccurs="0"/>
|
||||
<xs:element ref="dwc:VerbatimElevation" minOccurs="0"/>
|
||||
<xs:element ref="dwc:MinimumElevationInMeters" minOccurs="0"/>
|
||||
<xs:element ref="dwc:MaximumElevationInMeters" minOccurs="0"/>
|
||||
<xs:element ref="dwc:VerbatimDepth" minOccurs="0"/>
|
||||
<xs:element ref="dwc:MinimumDepthInMeters" minOccurs="0"/>
|
||||
<xs:element ref="dwc:MaximumDepthInMeters" minOccurs="0"/>
|
||||
<xs:element ref="dwc:DistanceAboveSurfaceInMetersMinimum" minOccurs="0"/>
|
||||
<xs:element ref="dwc:DistanceAboveSurfaceInMetersMaximum" minOccurs="0"/>
|
||||
<xs:element ref="dwc:DecimalLatitude" minOccurs="0"/>
|
||||
<xs:element ref="dwc:DecimalLongitude" minOccurs="0"/>
|
||||
<xs:element ref="dwc:GeodeticDatum" minOccurs="0"/>
|
||||
<xs:element ref="dwc:CoordinateUncertaintyInMeters" minOccurs="0"/>
|
||||
<xs:element ref="dwc:CoordinatePrecision" minOccurs="0"/>
|
||||
<xs:element ref="dwc:PointRadiusSpatialFit" minOccurs="0"/>
|
||||
<xs:element ref="dwc:VerbatimCoordinates" minOccurs="0"/>
|
||||
<xs:element ref="dwc:VerbatimLatitude" minOccurs="0"/>
|
||||
<xs:element ref="dwc:VerbatimLongitude" minOccurs="0"/>
|
||||
<xs:element ref="dwc:GeoreferencedBy" minOccurs="0"/>
|
||||
<xs:element ref="dwc:GeoreferenceProtocol" minOccurs="0"/>
|
||||
<xs:element ref="dwc:VerbatimCoordinateSystem" minOccurs="0"/>
|
||||
<xs:element ref="dwc:GeoreferenceSources" minOccurs="0"/>
|
||||
<xs:element ref="dwc:GeoreferenceVerificationStatus" minOccurs="0"/>
|
||||
<xs:element ref="dwc:GeoreferenceRemarks" minOccurs="0"/>
|
||||
<xs:element ref="dwc:FootprintWKT" minOccurs="0"/>
|
||||
<xs:element ref="dwc:FootprintSpatialFit" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SamplingLocationRemarks" minOccurs="0"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="Identification">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element ref="dc:modified" minOccurs="0"/>
|
||||
<xs:element ref="dc:rights" minOccurs="0"/>
|
||||
<xs:element ref="dc:rightsHolder" minOccurs="0"/>
|
||||
<xs:element ref="dc:language" minOccurs="0"/>
|
||||
<xs:element ref="dwc:IdentificationID" minOccurs="0"/>
|
||||
<xs:element ref="dwc:IdentifiedBy" minOccurs="0"/>
|
||||
<xs:element ref="dwc:DateIdentified" minOccurs="0"/>
|
||||
<xs:element ref="dwc:IdentificationReferences" minOccurs="0"/>
|
||||
<xs:element ref="dwc:IdentificationRemarks" minOccurs="0"/>
|
||||
<xs:element ref="dwc:PreviousIdentifications" minOccurs="0"/>
|
||||
<xs:element ref="dwc:IdentificationQualifier" minOccurs="0"/>
|
||||
<xs:element ref="dwc:TypeStatus" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Taxon"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="Taxon">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element ref="dc:modified" minOccurs="0"/>
|
||||
<xs:element ref="dc:rights" minOccurs="0"/>
|
||||
<xs:element ref="dc:rightsHolder" minOccurs="0"/>
|
||||
<xs:element ref="dc:language" minOccurs="0"/>
|
||||
<xs:element ref="dwc:TaxonID" minOccurs="0"/>
|
||||
<xs:element ref="dwc:ScientificName"/>
|
||||
<xs:element ref="dwc:Binomial" minOccurs="0"/>
|
||||
<xs:element ref="dwc:HigherTaxonID" minOccurs="0"/>
|
||||
<xs:element ref="dwc:HigherTaxon" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Kingdom" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Phylum" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Class" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Order" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Family" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Genus" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Subgenus" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SpecificEpithet" minOccurs="0"/>
|
||||
<xs:element ref="dwc:TaxonRank" minOccurs="0"/>
|
||||
<xs:element ref="dwc:InfraspecificEpithet" minOccurs="0"/>
|
||||
<xs:element ref="dwc:ScientificNameAuthorship" minOccurs="0"/>
|
||||
<xs:element ref="dwc:NomenclaturalCode" minOccurs="0"/>
|
||||
<xs:element ref="dwc:TaxonAccordingTo" minOccurs="0"/>
|
||||
<xs:element ref="dwc:NamePublishedIn" minOccurs="0"/>
|
||||
<xs:element ref="dwc:TaxonomicStatus" minOccurs="0"/>
|
||||
<xs:element ref="dwc:NomenclaturalStatus" minOccurs="0"/>
|
||||
<xs:element ref="dwc:AcceptedTaxonID" minOccurs="0"/>
|
||||
<xs:element ref="dwc:AcceptedTaxon" minOccurs="0"/>
|
||||
<xs:element ref="dwc:BasionymID" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Basionym" minOccurs="0"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
</xs:schema>
|
|
@ -0,0 +1,190 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<xs:schema version="0.1" xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
||||
targetNamespace="http://rs.tdwg.org/dwc/terms/"
|
||||
xmlns:dc="http://purl.org/dc/terms/"
|
||||
xmlns:dwc="http://rs.tdwg.org/dwc/terms/">
|
||||
|
||||
<xs:import namespace="http://purl.org/dc/terms/" schemaLocation="dublin_core.xsd"/>
|
||||
<xs:include schemaLocation="tdwg_dwcterms.xsd"/>
|
||||
|
||||
<xs:element name="SamplingLocation">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element ref="dc:modified" minOccurs="0"/>
|
||||
<xs:element ref="dc:rights" minOccurs="0"/>
|
||||
<xs:element ref="dc:rightsHolder" minOccurs="0"/>
|
||||
<xs:element ref="dc:language" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SamplingLocationID" minOccurs="0"/>
|
||||
<xs:element ref="dwc:HigherGeographyID" minOccurs="0"/>
|
||||
<xs:element ref="dwc:HigherGeography" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Continent" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Waterbody" minOccurs="0"/>
|
||||
<xs:element ref="dwc:IslandGroup" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Island" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Country" minOccurs="0"/>
|
||||
<xs:element ref="dwc:CountryCode" minOccurs="0"/>
|
||||
<xs:element ref="dwc:StateProvince" minOccurs="0"/>
|
||||
<xs:element ref="dwc:County" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Locality" minOccurs="0"/>
|
||||
<xs:element ref="dwc:VerbatimLocality" minOccurs="0"/>
|
||||
<xs:element ref="dwc:VerbatimElevation" minOccurs="0"/>
|
||||
<xs:element ref="dwc:MinimumElevationInMeters" minOccurs="0"/>
|
||||
<xs:element ref="dwc:MaximumElevationInMeters" minOccurs="0"/>
|
||||
<xs:element ref="dwc:VerbatimDepth" minOccurs="0"/>
|
||||
<xs:element ref="dwc:MinimumDepthInMeters" minOccurs="0"/>
|
||||
<xs:element ref="dwc:MaximumDepthInMeters" minOccurs="0"/>
|
||||
<xs:element ref="dwc:DistanceAboveSurfaceInMetersMinimum" minOccurs="0"/>
|
||||
<xs:element ref="dwc:DistanceAboveSurfaceInMetersMaximum" minOccurs="0"/>
|
||||
<xs:element ref="dwc:DecimalLatitude" minOccurs="0"/>
|
||||
<xs:element ref="dwc:DecimalLongitude" minOccurs="0"/>
|
||||
<xs:element ref="dwc:GeodeticDatum" minOccurs="0"/>
|
||||
<xs:element ref="dwc:CoordinateUncertaintyInMeters" minOccurs="0"/>
|
||||
<xs:element ref="dwc:CoordinatePrecision" minOccurs="0"/>
|
||||
<xs:element ref="dwc:PointRadiusSpatialFit" minOccurs="0"/>
|
||||
<xs:element ref="dwc:VerbatimCoordinates" minOccurs="0"/>
|
||||
<xs:element ref="dwc:VerbatimLatitude" minOccurs="0"/>
|
||||
<xs:element ref="dwc:VerbatimLongitude" minOccurs="0"/>
|
||||
<xs:element ref="dwc:GeoreferencedBy" minOccurs="0"/>
|
||||
<xs:element ref="dwc:GeoreferenceProtocol" minOccurs="0"/>
|
||||
<xs:element ref="dwc:VerbatimCoordinateSystem" minOccurs="0"/>
|
||||
<xs:element ref="dwc:GeoreferenceSources" minOccurs="0"/>
|
||||
<xs:element ref="dwc:GeoreferenceVerificationStatus" minOccurs="0"/>
|
||||
<xs:element ref="dwc:GeoreferenceRemarks" minOccurs="0"/>
|
||||
<xs:element ref="dwc:FootprintWKT" minOccurs="0"/>
|
||||
<xs:element ref="dwc:FootprintSpatialFit" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SamplingLocationRemarks" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SamplingEvent" minOccurs="0"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="SamplingEvent">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element ref="dc:modified" minOccurs="0"/>
|
||||
<xs:element ref="dc:rights" minOccurs="0"/>
|
||||
<xs:element ref="dc:rightsHolder" minOccurs="0"/>
|
||||
<xs:element ref="dc:language" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SamplingEventID" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SamplingProtocol" minOccurs="0"/>
|
||||
<xs:element ref="dwc:VerbatimCollectingDate" minOccurs="0"/>
|
||||
<xs:element ref="dwc:EarliestDateCollected" minOccurs="0"/>
|
||||
<xs:element ref="dwc:LatestDateCollected" minOccurs="0"/>
|
||||
<xs:element ref="dwc:StartDayOfYear" minOccurs="0"/>
|
||||
<xs:element ref="dwc:EndDayOfYear" minOccurs="0"/>
|
||||
<xs:element ref="dwc:StartTimeOfDay" minOccurs="0"/>
|
||||
<xs:element ref="dwc:EndTimeOfDay" minOccurs="0"/>
|
||||
<xs:element ref="dwc:YearSampled" minOccurs="0"/>
|
||||
<xs:element ref="dwc:MonthOfYear" minOccurs="0"/>
|
||||
<xs:element ref="dwc:DayOfMonth" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Habitat" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Behavior" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Collector" minOccurs="0"/>
|
||||
<xs:element ref="dwc:CollectorNumber" minOccurs="0"/>
|
||||
<xs:element ref="dwc:FieldNumber" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SamplingEventAttributes" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SamplingEventRemarks" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Sample" minOccurs="0"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
|
||||
<xs:element name="Sample">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element ref="dc:modified"/>
|
||||
<xs:element ref="dc:rights" minOccurs="0"/>
|
||||
<xs:element ref="dc:rightsHolder" minOccurs="0"/>
|
||||
<xs:element ref="dc:language" minOccurs="0"/>
|
||||
<xs:element ref="dwc:InstitutionCode" minOccurs="0"/>
|
||||
<xs:element ref="dwc:CollectionCode" minOccurs="0"/>
|
||||
<xs:element ref="dwc:CollectionID" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SampleID"/>
|
||||
<xs:element ref="dwc:BasisOfRecord" minOccurs="0"/>
|
||||
<xs:element ref="dwc:AccessConstraints" minOccurs="0"/>
|
||||
<xs:element ref="dwc:InformationWithheld" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Generalizations" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SampleDetails" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SampleRemarks" minOccurs="0"/>
|
||||
<xs:element ref="dwc:CatalogNumber" minOccurs="0"/>
|
||||
<xs:element ref="dwc:CatalogNumberNumeric" minOccurs="0"/>
|
||||
<xs:element ref="dwc:IndividualID" minOccurs="0"/>
|
||||
<xs:element ref="dwc:IndividualCount" minOccurs="0"/>
|
||||
<xs:element ref="dwc:FieldNotes" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Citation" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Sex" minOccurs="0"/>
|
||||
<xs:element ref="dwc:LifeStage" minOccurs="0"/>
|
||||
<xs:element ref="dwc:ReproductiveCondition" minOccurs="0"/>
|
||||
<xs:element ref="dwc:EstablishmentMeans" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SampleAttributes" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Preparations" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Disposition" minOccurs="0"/>
|
||||
<xs:element ref="dwc:OtherCatalogNumbers" minOccurs="0"/>
|
||||
<xs:element ref="dwc:AssociatedMedia" minOccurs="0"/>
|
||||
<xs:element ref="dwc:AssociatedReferences" minOccurs="0"/>
|
||||
<xs:element ref="dwc:AssociatedSamples" minOccurs="0"/>
|
||||
<xs:element ref="dwc:AssociatedSequences" minOccurs="0"/>
|
||||
<xs:element ref="dwc:AssociatedTaxa" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Identification" minOccurs="0"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="Identification">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element ref="dc:modified" minOccurs="0"/>
|
||||
<xs:element ref="dc:rights" minOccurs="0"/>
|
||||
<xs:element ref="dc:rightsHolder" minOccurs="0"/>
|
||||
<xs:element ref="dc:language" minOccurs="0"/>
|
||||
<xs:element ref="dwc:IdentificationID" minOccurs="0"/>
|
||||
<xs:element ref="dwc:IdentifiedBy" minOccurs="0"/>
|
||||
<xs:element ref="dwc:DateIdentified" minOccurs="0"/>
|
||||
<xs:element ref="dwc:IdentificationReferences" minOccurs="0"/>
|
||||
<xs:element ref="dwc:IdentificationRemarks" minOccurs="0"/>
|
||||
<xs:element ref="dwc:PreviousIdentifications" minOccurs="0"/>
|
||||
<xs:element ref="dwc:IdentificationQualifier" minOccurs="0"/>
|
||||
<xs:element ref="dwc:TypeStatus" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Taxon"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="Taxon">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element ref="dc:modified" minOccurs="0"/>
|
||||
<xs:element ref="dc:rights" minOccurs="0"/>
|
||||
<xs:element ref="dc:rightsHolder" minOccurs="0"/>
|
||||
<xs:element ref="dc:language" minOccurs="0"/>
|
||||
<xs:element ref="dwc:TaxonID" minOccurs="0"/>
|
||||
<xs:element ref="dwc:ScientificName"/>
|
||||
<xs:element ref="dwc:Binomial" minOccurs="0"/>
|
||||
<xs:element ref="dwc:HigherTaxonID" minOccurs="0"/>
|
||||
<xs:element ref="dwc:HigherTaxon" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Kingdom" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Phylum" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Class" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Order" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Family" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Genus" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Subgenus" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SpecificEpithet" minOccurs="0"/>
|
||||
<xs:element ref="dwc:TaxonRank" minOccurs="0"/>
|
||||
<xs:element ref="dwc:InfraspecificEpithet" minOccurs="0"/>
|
||||
<xs:element ref="dwc:ScientificNameAuthorship" minOccurs="0"/>
|
||||
<xs:element ref="dwc:NomenclaturalCode" minOccurs="0"/>
|
||||
<xs:element ref="dwc:TaxonAccordingTo" minOccurs="0"/>
|
||||
<xs:element ref="dwc:NamePublishedIn" minOccurs="0"/>
|
||||
<xs:element ref="dwc:TaxonomicStatus" minOccurs="0"/>
|
||||
<xs:element ref="dwc:NomenclaturalStatus" minOccurs="0"/>
|
||||
<xs:element ref="dwc:AcceptedTaxonID" minOccurs="0"/>
|
||||
<xs:element ref="dwc:AcceptedTaxon" minOccurs="0"/>
|
||||
<xs:element ref="dwc:BasionymID" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Basionym" minOccurs="0"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
</xs:schema>
|
|
@ -0,0 +1,40 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<xs:schema version="0.1" xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
||||
targetNamespace="http://rs.tdwg.org/dwc/dwcrecord/"
|
||||
xmlns:dwr="http://rs.tdwg.org/dwc/dwcrecord/"
|
||||
xmlns:dwc="http://rs.tdwg.org/dwc/terms/">
|
||||
<xs:import namespace="http://rs.tdwg.org/dwc/terms/" schemaLocation="tdwg_dwcterms.xsd"/>
|
||||
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
This schema defines a classic darwin core record using the new terms from namespace http://rs.tdwg.org/dwc/terms/
|
||||
It allows every term including extensions to appear as often as needed and in any order.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
|
||||
|
||||
<xs:element name="DarwinRecordSet" >
|
||||
<xs:annotation>
|
||||
<xs:documentation>Simple container to encode multiple darwin core records that have no notion of which class they are.
|
||||
They can therefore represent a taxon, an observation or just a locality</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element ref="dwr:DarwinRecord" maxOccurs="unbounded" minOccurs="0"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<!-- SAMPLE domain -->
|
||||
<xs:element name="DarwinRecord">
|
||||
<xs:complexType>
|
||||
<xs:choice maxOccurs="unbounded">
|
||||
<xs:element ref="dwc:anyIdentifier"/>
|
||||
<xs:element ref="dwc:anyProperty"/>
|
||||
<xs:group ref="dwc:DublinCoreTerms"/>
|
||||
<xs:element ref="dwc:anyClass"/>
|
||||
</xs:choice>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
</xs:schema>
|
|
@ -0,0 +1,22 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<xs:schema version="0.1" xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
||||
targetNamespace="http://rs.tdwg.org/dwc/dwcrecord/"
|
||||
xmlns:dwr="http://rs.tdwg.org/dwc/dwcrecord/"
|
||||
xmlns:dwc="http://rs.tdwg.org/dwc/terms/">
|
||||
<xs:import namespace="http://rs.tdwg.org/dwc/terms/" schemaLocation="tdwg_dwcclasses.xsd"/>
|
||||
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
This schema defines a container for all proper darwin core classes.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
|
||||
<xs:element name="DarwinRecordSet" >
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element ref="dwc:anyClass" maxOccurs="unbounded" minOccurs="0"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
</xs:schema>
|
|
@ -0,0 +1,172 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<xs:schema version="0.1" xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
||||
targetNamespace="http://rs.tdwg.org/dwc/xsd/simpledarwincore/"
|
||||
xmlns:dc="http://purl.org/dc/terms/"
|
||||
xmlns:dwr="http://rs.tdwg.org/dwc/xsd/simpledarwincore/"
|
||||
xmlns:dwc="http://rs.tdwg.org/dwc/terms/">
|
||||
<xs:import namespace="http://rs.tdwg.org/dwc/terms/" schemaLocation="tdwg_dwcterms.xsd"/>
|
||||
<xs:import namespace="http://purl.org/dc/terms/" schemaLocation="dublin_core.xsd"/>
|
||||
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
This schema defines Simple Darwin Core records and record sets using the new terms from namespace http://rs.tdwg.org/dwc/terms/.
|
||||
This schema allows the terms listed to appear exactly once in a given order, but does not validate any additional terms.
|
||||
If you need terms beyond those given here, please use as a basis the Generic Darwin Core schema (tdwg_dwcterms.xsd),
|
||||
which allows the inclusion of any Darwin Core term.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
|
||||
|
||||
<xs:element name="SimpleDarwinRecordSet" >
|
||||
<xs:annotation>
|
||||
<xs:documentation>Simple container to encode multiple darwin core records that have no notion of which class they are.
|
||||
They can therefore represent a taxon, an observation or just a locality</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element ref="dwr:SimpleDarwinRecord" maxOccurs="unbounded" minOccurs="0"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<!-- SAMPLE domain -->
|
||||
<xs:element name="SimpleDarwinRecord">
|
||||
<xs:complexType>
|
||||
<xs:all>
|
||||
<!-- Dublin Core domain with some required properties -->
|
||||
<xs:element ref="dc:modified" minOccurs="1"/>
|
||||
<xs:element ref="dc:language" minOccurs="0"/>
|
||||
<xs:element ref="dc:rights" minOccurs="0"/>
|
||||
<xs:element ref="dc:rightsHolder" minOccurs="0"/>
|
||||
<!-- Sample domains with some required properties -->
|
||||
<xs:element ref="dwc:SampleID" minOccurs="1"/>
|
||||
<xs:element ref="dwc:InstitutionCode" minOccurs="1"/>
|
||||
<xs:element ref="dwc:CollectionCode" minOccurs="1"/>
|
||||
<xs:element ref="dwc:CollectionID" minOccurs="0"/>
|
||||
<xs:element ref="dwc:BasisOfRecord" minOccurs="1"/>
|
||||
<xs:element ref="dwc:AccessConstraints" minOccurs="0"/>
|
||||
<xs:element ref="dwc:InformationWithheld" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Generalizations" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SampleDetails" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SampleRemarks" minOccurs="0"/>
|
||||
<xs:element ref="dwc:CatalogNumber" minOccurs="0"/>
|
||||
<xs:element ref="dwc:CatalogNumberNumeric" minOccurs="0"/>
|
||||
<xs:element ref="dwc:IndividualID" minOccurs="0"/>
|
||||
<xs:element ref="dwc:IndividualCount" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Citation" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Sex" minOccurs="0"/>
|
||||
<xs:element ref="dwc:LifeStage" minOccurs="0"/>
|
||||
<xs:element ref="dwc:ReproductiveCondition" minOccurs="0"/>
|
||||
<xs:element ref="dwc:EstablishmentMeans" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SampleAttributes" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Preparations" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Disposition" minOccurs="0"/>
|
||||
<xs:element ref="dwc:OtherCatalogNumbers" minOccurs="0"/>
|
||||
<xs:element ref="dwc:AssociatedMedia" minOccurs="0"/>
|
||||
<xs:element ref="dwc:AssociatedReferences" minOccurs="0"/>
|
||||
<xs:element ref="dwc:AssociatedSamples" minOccurs="0"/>
|
||||
<xs:element ref="dwc:AssociatedSequences" minOccurs="0"/>
|
||||
<xs:element ref="dwc:AssociatedTaxa" minOccurs="0"/>
|
||||
<!-- IdentificationTerms -->
|
||||
<xs:element ref="dwc:IdentificationID" minOccurs="0"/>
|
||||
<xs:element ref="dwc:IdentifiedBy" minOccurs="0"/>
|
||||
<xs:element ref="dwc:DateIdentified" minOccurs="0"/>
|
||||
<xs:element ref="dwc:IdentificationReferences" minOccurs="0"/>
|
||||
<xs:element ref="dwc:IdentificationRemarks" minOccurs="0"/>
|
||||
<xs:element ref="dwc:PreviousIdentifications" minOccurs="0"/>
|
||||
<xs:element ref="dwc:IdentificationQualifier" minOccurs="0"/>
|
||||
<xs:element ref="dwc:TypeStatus" minOccurs="0"/>
|
||||
<!-- DatasetTerms -->
|
||||
<xs:element ref="dwc:DatasetID" minOccurs="0"/>
|
||||
<!-- TaxonTerms -->
|
||||
<xs:element ref="dwc:TaxonID" minOccurs="0"/>
|
||||
<xs:element ref="dwc:ScientificName" minOccurs="1"/>
|
||||
<xs:element ref="dwc:Binomial" minOccurs="0"/>
|
||||
<xs:element ref="dwc:HigherTaxonID" minOccurs="0"/>
|
||||
<xs:element ref="dwc:HigherTaxon" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Kingdom" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Phylum" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Class" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Order" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Family" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Genus" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Subgenus" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SpecificEpithet" minOccurs="0"/>
|
||||
<xs:element ref="dwc:TaxonRank" minOccurs="0"/>
|
||||
<xs:element ref="dwc:InfraspecificEpithet" minOccurs="0"/>
|
||||
<xs:element ref="dwc:ScientificNameAuthorship" minOccurs="0"/>
|
||||
<xs:element ref="dwc:NomenclaturalCode" minOccurs="0"/>
|
||||
<xs:element ref="dwc:TaxonAccordingTo" minOccurs="0"/>
|
||||
<xs:element ref="dwc:NamePublishedIn" minOccurs="0"/>
|
||||
<xs:element ref="dwc:TaxonomicStatus" minOccurs="0"/>
|
||||
<xs:element ref="dwc:NomenclaturalStatus" minOccurs="0"/>
|
||||
<xs:element ref="dwc:AcceptedTaxonID" minOccurs="0"/>
|
||||
<xs:element ref="dwc:AcceptedTaxon" minOccurs="0"/>
|
||||
<xs:element ref="dwc:BasionymID" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Basionym" minOccurs="0"/>
|
||||
<!-- SamplingLocationTerms -->
|
||||
<xs:element ref="dwc:SamplingLocationID" minOccurs="0"/>
|
||||
<xs:element ref="dwc:HigherGeographyID" minOccurs="0"/>
|
||||
<xs:element ref="dwc:HigherGeography" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Continent" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Waterbody" minOccurs="0"/>
|
||||
<xs:element ref="dwc:IslandGroup" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Island" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Country" minOccurs="0"/>
|
||||
<xs:element ref="dwc:CountryCode" minOccurs="0"/>
|
||||
<xs:element ref="dwc:StateProvince" minOccurs="0"/>
|
||||
<xs:element ref="dwc:County" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Locality" minOccurs="0"/>
|
||||
<xs:element ref="dwc:VerbatimLocality" minOccurs="0"/>
|
||||
<xs:element ref="dwc:VerbatimElevation" minOccurs="0"/>
|
||||
<xs:element ref="dwc:MinimumElevationInMeters" minOccurs="0"/>
|
||||
<xs:element ref="dwc:MaximumElevationInMeters" minOccurs="0"/>
|
||||
<xs:element ref="dwc:VerbatimDepth" minOccurs="0"/>
|
||||
<xs:element ref="dwc:MinimumDepthInMeters" minOccurs="0"/>
|
||||
<xs:element ref="dwc:MaximumDepthInMeters" minOccurs="0"/>
|
||||
<xs:element ref="dwc:DistanceAboveSurfaceInMetersMinimum" minOccurs="0"/>
|
||||
<xs:element ref="dwc:DistanceAboveSurfaceInMetersMaximum" minOccurs="0"/>
|
||||
<xs:element ref="dwc:DecimalLatitude" minOccurs="0"/>
|
||||
<xs:element ref="dwc:DecimalLongitude" minOccurs="0"/>
|
||||
<xs:element ref="dwc:GeodeticDatum" minOccurs="0"/>
|
||||
<xs:element ref="dwc:CoordinateUncertaintyInMeters" minOccurs="0"/>
|
||||
<xs:element ref="dwc:CoordinatePrecision" minOccurs="0"/>
|
||||
<xs:element ref="dwc:PointRadiusSpatialFit" minOccurs="0"/>
|
||||
<xs:element ref="dwc:VerbatimCoordinates" minOccurs="0"/>
|
||||
<xs:element ref="dwc:VerbatimLatitude" minOccurs="0"/>
|
||||
<xs:element ref="dwc:VerbatimLongitude" minOccurs="0"/>
|
||||
<xs:element ref="dwc:GeoreferencedBy" minOccurs="0"/>
|
||||
<xs:element ref="dwc:GeoreferenceProtocol" minOccurs="0"/>
|
||||
<xs:element ref="dwc:VerbatimCoordinateSystem" minOccurs="0"/>
|
||||
<xs:element ref="dwc:GeoreferenceSources" minOccurs="0"/>
|
||||
<xs:element ref="dwc:GeoreferenceVerificationStatus" minOccurs="0"/>
|
||||
<xs:element ref="dwc:GeoreferenceRemarks" minOccurs="0"/>
|
||||
<xs:element ref="dwc:FootprintWKT" minOccurs="0"/>
|
||||
<xs:element ref="dwc:FootprintSpatialFit" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SamplingLocationRemarks" minOccurs="0"/>
|
||||
<!-- SamplingEventTerms -->
|
||||
<xs:element ref="dwc:SamplingEventID" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SamplingProtocol" minOccurs="0"/>
|
||||
<xs:element ref="dwc:VerbatimCollectingDate" minOccurs="0"/>
|
||||
<xs:element ref="dwc:EarliestDateCollected" minOccurs="0"/>
|
||||
<xs:element ref="dwc:LatestDateCollected" minOccurs="0"/>
|
||||
<xs:element ref="dwc:StartDayOfYear" minOccurs="0"/>
|
||||
<xs:element ref="dwc:EndDayOfYear" minOccurs="0"/>
|
||||
<xs:element ref="dwc:StartTimeOfDay" minOccurs="0"/>
|
||||
<xs:element ref="dwc:EndTimeOfDay" minOccurs="0"/>
|
||||
<xs:element ref="dwc:YearSampled" minOccurs="0"/>
|
||||
<xs:element ref="dwc:MonthOfYear" minOccurs="0"/>
|
||||
<xs:element ref="dwc:DayOfMonth" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Habitat" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Behavior" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Collector" minOccurs="0"/>
|
||||
<xs:element ref="dwc:CollectorNumber" minOccurs="0"/>
|
||||
<xs:element ref="dwc:FieldNumber" minOccurs="0"/>
|
||||
<xs:element ref="dwc:FieldNotes" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SamplingEventAttributes" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SamplingEventRemarks" minOccurs="0"/>
|
||||
</xs:all>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
</xs:schema>
|
|
@ -0,0 +1,122 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<xs:schema version="0.1" xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
||||
targetNamespace="http://rs.tdwg.org/dwc/terms/"
|
||||
xmlns:dwc="http://rs.tdwg.org/dwc/terms/">
|
||||
<xs:include schemaLocation="tdwg_dwcterms.xsd"/>
|
||||
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
This schema redefines all darwin core classes to disallow compound objects, i.e. within a class no other nested class is allowed.
|
||||
It allows properties to occurr in any order and as many times as needed.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
|
||||
|
||||
<!-- DATASET domain -->
|
||||
<xs:element name="Dataset" substitutionGroup="dwc:anyClass">
|
||||
<xs:complexType>
|
||||
<xs:choice maxOccurs="unbounded">
|
||||
<xs:element ref="dwc:anyIdentifier"/>
|
||||
<xs:element ref="dwc:anyDatasetTerm"/>
|
||||
<xs:group ref="dwc:anyDublinCoreTerm"/>
|
||||
</xs:choice>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
|
||||
<!-- IDENTIFICATION domain -->
|
||||
<xs:element name="Identification" substitutionGroup="dwc:anyClass">
|
||||
<xs:complexType>
|
||||
<xs:choice maxOccurs="unbounded">
|
||||
<xs:element ref="dwc:anyIdentifier"/>
|
||||
<xs:element ref="dwc:anyIdentificationTerm"/>
|
||||
<xs:group ref="dwc:anyDublinCoreTerm"/>
|
||||
</xs:choice>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
|
||||
<!-- TAXON domain -->
|
||||
<xs:element name="Taxon" substitutionGroup="dwc:anyClass">
|
||||
<xs:complexType>
|
||||
<xs:choice maxOccurs="unbounded">
|
||||
<xs:element ref="dwc:anyIdentifier"/>
|
||||
<xs:element ref="dwc:anyTaxonTerm"/>
|
||||
<xs:group ref="dwc:anyDublinCoreTerm"/>
|
||||
</xs:choice>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
|
||||
<!-- SAMPLING LOCATION domain -->
|
||||
<xs:element name="SamplingLocation" substitutionGroup="dwc:anyClass">
|
||||
<xs:complexType>
|
||||
<xs:choice maxOccurs="unbounded">
|
||||
<xs:element ref="dwc:anyIdentifier"/>
|
||||
<xs:element ref="dwc:anySamplingLocationTerm"/>
|
||||
<xs:group ref="dwc:anyDublinCoreTerm"/>
|
||||
</xs:choice>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
|
||||
<!-- SAMPLE domain -->
|
||||
<xs:element name="Sample" substitutionGroup="dwc:anyClass">
|
||||
<xs:complexType>
|
||||
<xs:choice maxOccurs="unbounded">
|
||||
<xs:element ref="dwc:anyIdentifier"/>
|
||||
<xs:element ref="dwc:anySampleTerm"/>
|
||||
<xs:group ref="dwc:anyDublinCoreTerm"/>
|
||||
</xs:choice>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
|
||||
<!-- SAMPLING EVENT domain -->
|
||||
<xs:element name="SamplingEvent" substitutionGroup="dwc:anyClass">
|
||||
<xs:complexType>
|
||||
<xs:choice maxOccurs="unbounded">
|
||||
<xs:element ref="dwc:anyIdentifier"/>
|
||||
<xs:element ref="dwc:anySamplingEventTerm"/>
|
||||
<xs:group ref="dwc:anyDublinCoreTerm"/>
|
||||
</xs:choice>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
|
||||
|
||||
<!-- SAMPLE ATTRIBUTE domain -->
|
||||
<xs:element name="SampleAttribute" substitutionGroup="dwc:anyClass">
|
||||
<xs:complexType>
|
||||
<xs:choice maxOccurs="unbounded">
|
||||
<xs:element ref="dwc:anyIdentifier"/>
|
||||
<xs:element ref="dwc:anySampleAttributeTerm"/>
|
||||
<xs:group ref="dwc:anyDublinCoreTerm"/>
|
||||
</xs:choice>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
|
||||
<!-- EVENT ATTRIBUTE domain -->
|
||||
<xs:element name="EventAttribute" substitutionGroup="dwc:anyClass">
|
||||
<xs:complexType>
|
||||
<xs:choice maxOccurs="unbounded">
|
||||
<xs:element ref="dwc:anyIdentifier"/>
|
||||
<xs:element ref="dwc:anyEventAttributeTerm"/>
|
||||
<xs:group ref="dwc:anyDublinCoreTerm"/>
|
||||
</xs:choice>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
|
||||
<!-- RELATED RESOURCE domain -->
|
||||
<xs:element name="ResourceRelationship" substitutionGroup="dwc:anyClass">
|
||||
<xs:complexType>
|
||||
<xs:choice maxOccurs="unbounded">
|
||||
<xs:element ref="dwc:anyIdentifier"/>
|
||||
<xs:element ref="dwc:anyResourceRelationshipTerm"/>
|
||||
<xs:group ref="dwc:anyDublinCoreTerm"/>
|
||||
</xs:choice>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:schema>
|
|
@ -0,0 +1,437 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
||||
targetNamespace="http://rs.tdwg.org/dwc/terms/"
|
||||
xmlns:dc="http://purl.org/dc/terms/"
|
||||
xmlns:dcelem="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:dwctype="http://rs.tdwg.org/dwc/terms/type-vocabulary/"
|
||||
xmlns:dwc="http://rs.tdwg.org/dwc/terms/">
|
||||
<xs:annotation>
|
||||
<xs:documentation xml:lang="en">
|
||||
The Generic Darwin Core schema defining all property terms as global elements.
|
||||
|
||||
Domain classes are not defined here, but in a separate schema (tdwg_dwcclasses.xsd) with the same namespace.
|
||||
There are two ways in which references to domains can be defined:
|
||||
a) through an abstract base term anyXXXTerm, which is derived from the type dwc:anyPropery and which all properties
|
||||
for that domain use as their substitution group. If you refer to dwc:anyXXXTerm in your schema, you will be able
|
||||
to reference any of the terms, but it will be impossible to create a sequence of all terms occurring only once.
|
||||
b) through a group of elements called XXXTerms, which reference properties exactly once as a sequence.
|
||||
This group can be used to refer to all the domain properties only once. In order to make a property required, you
|
||||
must create your own group referring to the individual dwc terms.
|
||||
If you want to specify every term once at most and in any order, you will also have to refer to the individual dwc
|
||||
term yourself - a limitation of the xs:all model.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:include schemaLocation="tdwg_basetypes.xsd"/>
|
||||
<xs:import namespace="http://purl.org/dc/terms/" schemaLocation="dublin_core.xsd"/>
|
||||
<xs:import namespace="http://purl.org/dc/elements/1.1/" schemaLocation="http://dublincore.org/schemas/xmls/qdc/dc.xsd"/>
|
||||
<xs:import namespace="http://www.w3.org/XML/1998/namespace" schemaLocation="http://www.w3.org/2001/03/xml.xsd"/>
|
||||
<xs:import namespace="http://rs.tdwg.org/dwc/terms/type-vocabulary/" schemaLocation="tdwg_dwctypes.xsd"/>
|
||||
|
||||
|
||||
<!-- ANY DWC TERM -->
|
||||
<xs:element name="any" abstract="true"/>
|
||||
<!-- ANY DWC IDENTIFIER -->
|
||||
<xs:element name="anyIdentifier" abstract="true" substitutionGroup="dwc:any"/>
|
||||
<!-- ANY DWC PROPERTY TERM -->
|
||||
<xs:element name="anyProperty" abstract="true" substitutionGroup="dwc:any"/> <!-- type="dwc:simpleProperty" -->
|
||||
<!-- ANY DWC CLASS TERM -->
|
||||
<xs:element name="anyClass" abstract="true" substitutionGroup="dwc:any"/>
|
||||
|
||||
|
||||
<!--
|
||||
All TERMS listed BY domain
|
||||
Every domain has its own substitutiongroup
|
||||
-->
|
||||
|
||||
<!-- DATASET domain -->
|
||||
<xs:element name="anyDatasetTerm" abstract="true" substitutionGroup="dwc:anyProperty"/>
|
||||
<xs:element name="DatasetID" type="dwc:nonEmptyString" substitutionGroup="dwc:anyIdentifier"/>
|
||||
<xs:group name="DatasetTerms">
|
||||
<xs:sequence>
|
||||
</xs:sequence>
|
||||
</xs:group>
|
||||
|
||||
|
||||
<!-- IDENTIFICATION domain -->
|
||||
<xs:element name="anyIdentificationTerm" abstract="true" substitutionGroup="dwc:anyProperty"/>
|
||||
<xs:element name="IdentificationID" type="dwc:nonEmptyString" substitutionGroup="dwc:anyIdentifier"/>
|
||||
<!-- domain properties -->
|
||||
<xs:element name="IdentifiedBy" type="xs:string" substitutionGroup="dwc:anyIdentificationTerm"/>
|
||||
<xs:element name="DateIdentified" type="xs:date" substitutionGroup="dwc:anyIdentificationTerm"/>
|
||||
<xs:element name="IdentificationReferences" type="xs:string" substitutionGroup="dwc:anyIdentificationTerm"/>
|
||||
<xs:element name="IdentificationRemarks" type="xs:string" substitutionGroup="dwc:anyIdentificationTerm"/>
|
||||
<xs:element name="PreviousIdentifications" type="xs:string" substitutionGroup="dwc:anyIdentificationTerm"/>
|
||||
<xs:element name="IdentificationQualifier" type="xs:string" substitutionGroup="dwc:anyIdentificationTerm"/>
|
||||
<xs:element name="TypeStatus" type="xs:string" substitutionGroup="dwc:anyIdentificationTerm"/>
|
||||
<xs:group name="IdentificationTerms">
|
||||
<xs:sequence>
|
||||
<xs:element ref="dwc:IdentifiedBy" minOccurs="0"/>
|
||||
<xs:element ref="dwc:DateIdentified" minOccurs="0"/>
|
||||
<xs:element ref="dwc:IdentificationReferences" minOccurs="0"/>
|
||||
<xs:element ref="dwc:IdentificationRemarks" minOccurs="0"/>
|
||||
<xs:element ref="dwc:PreviousIdentifications" minOccurs="0"/>
|
||||
<xs:element ref="dwc:IdentificationQualifier" minOccurs="0"/>
|
||||
<xs:element ref="dwc:TypeStatus" minOccurs="0"/>
|
||||
</xs:sequence>
|
||||
</xs:group>
|
||||
|
||||
|
||||
<!-- TAXON domain -->
|
||||
<xs:element name="anyTaxonTerm" abstract="true" substitutionGroup="dwc:anyProperty"/>
|
||||
<xs:element name="TaxonID" type="dwc:nonEmptyString" substitutionGroup="dwc:anyIdentifier"/>
|
||||
<!-- domain properties -->
|
||||
<xs:element name="ScientificName" type="xs:string" substitutionGroup="dwc:anyTaxonTerm"/>
|
||||
<xs:element name="Binomial" type="xs:string" substitutionGroup="dwc:anyTaxonTerm"/>
|
||||
<xs:element name="HigherTaxonID" type="dwc:nonEmptyString" substitutionGroup="dwc:anyTaxonTerm"/>
|
||||
<xs:element name="HigherTaxon" type="xs:string" substitutionGroup="dwc:anyTaxonTerm"/>
|
||||
<xs:element name="Kingdom" type="xs:string" substitutionGroup="dwc:anyTaxonTerm"/>
|
||||
<xs:element name="Phylum" type="xs:string" substitutionGroup="dwc:anyTaxonTerm"/>
|
||||
<xs:element name="Class" type="xs:string" substitutionGroup="dwc:anyTaxonTerm"/>
|
||||
<xs:element name="Order" type="xs:string" substitutionGroup="dwc:anyTaxonTerm"/>
|
||||
<xs:element name="Family" type="xs:string" substitutionGroup="dwc:anyTaxonTerm"/>
|
||||
<xs:element name="Genus" type="xs:string" substitutionGroup="dwc:anyTaxonTerm"/>
|
||||
<xs:element name="Subgenus" type="xs:string" substitutionGroup="dwc:anyTaxonTerm"/>
|
||||
<xs:element name="SpecificEpithet" type="xs:string" substitutionGroup="dwc:anyTaxonTerm"/>
|
||||
<xs:element name="TaxonRank" type="xs:string" substitutionGroup="dwc:anyTaxonTerm"/>
|
||||
<xs:element name="InfraspecificEpithet" type="xs:string" substitutionGroup="dwc:anyTaxonTerm"/>
|
||||
<xs:element name="ScientificNameAuthorship" type="xs:string" substitutionGroup="dwc:anyTaxonTerm"/>
|
||||
<xs:element name="NomenclaturalCode" type="xs:string" substitutionGroup="dwc:anyTaxonTerm"/>
|
||||
<xs:element name="TaxonAccordingTo" type="xs:string" substitutionGroup="dwc:anyTaxonTerm"/>
|
||||
<xs:element name="NamePublishedIn" type="xs:string" substitutionGroup="dwc:anyTaxonTerm"/>
|
||||
<xs:element name="TaxonomicStatus" type="xs:string" substitutionGroup="dwc:anyTaxonTerm"/>
|
||||
<xs:element name="NomenclaturalStatus" type="xs:string" substitutionGroup="dwc:anyTaxonTerm"/>
|
||||
<xs:element name="AcceptedTaxonID" type="dwc:nonEmptyString" substitutionGroup="dwc:anyTaxonTerm"/>
|
||||
<xs:element name="AcceptedTaxon" type="xs:string" substitutionGroup="dwc:anyTaxonTerm"/>
|
||||
<xs:element name="BasionymID" type="dwc:nonEmptyString" substitutionGroup="dwc:anyTaxonTerm"/>
|
||||
<xs:element name="Basionym" type="xs:string" substitutionGroup="dwc:anyTaxonTerm"/>
|
||||
<xs:group name="TaxonTerms">
|
||||
<xs:sequence>
|
||||
<xs:element ref="dwc:ScientificName" minOccurs="1"/>
|
||||
<xs:element ref="dwc:Binomial" minOccurs="0"/>
|
||||
<xs:element ref="dwc:HigherTaxonID" minOccurs="0"/>
|
||||
<xs:element ref="dwc:HigherTaxon" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Kingdom" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Phylum" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Class" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Order" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Family" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Genus" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Subgenus" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SpecificEpithet" minOccurs="0"/>
|
||||
<xs:element ref="dwc:TaxonRank" minOccurs="0"/>
|
||||
<xs:element ref="dwc:InfraspecificEpithet" minOccurs="0"/>
|
||||
<xs:element ref="dwc:ScientificNameAuthorship" minOccurs="0"/>
|
||||
<xs:element ref="dwc:NomenclaturalCode" minOccurs="0"/>
|
||||
<xs:element ref="dwc:TaxonAccordingTo" minOccurs="0"/>
|
||||
<xs:element ref="dwc:NamePublishedIn" minOccurs="0"/>
|
||||
<xs:element ref="dwc:TaxonomicStatus" minOccurs="0"/>
|
||||
<xs:element ref="dwc:NomenclaturalStatus" minOccurs="0"/>
|
||||
<xs:element ref="dwc:AcceptedTaxonID" minOccurs="0"/>
|
||||
<xs:element ref="dwc:AcceptedTaxon" minOccurs="0"/>
|
||||
<xs:element ref="dwc:BasionymID" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Basionym" minOccurs="0"/>
|
||||
</xs:sequence>
|
||||
</xs:group>
|
||||
|
||||
<!-- SAMPLING LOCATION domain -->
|
||||
<xs:element name="anySamplingLocationTerm" abstract="true" substitutionGroup="dwc:anyProperty"/>
|
||||
<xs:element name="SamplingLocationID" type="dwc:nonEmptyString" substitutionGroup="dwc:anyIdentifier"/>
|
||||
<!-- domain properties -->
|
||||
<xs:element name="HigherGeographyID" type="dwc:nonEmptyString" substitutionGroup="dwc:anySamplingLocationTerm"/>
|
||||
<xs:element name="HigherGeography" type="xs:string" substitutionGroup="dwc:anySamplingLocationTerm"/>
|
||||
<xs:element name="Continent" type="xs:string" substitutionGroup="dwc:anySamplingLocationTerm"/>
|
||||
<xs:element name="Waterbody" type="xs:string" substitutionGroup="dwc:anySamplingLocationTerm"/>
|
||||
<xs:element name="IslandGroup" type="xs:string" substitutionGroup="dwc:anySamplingLocationTerm"/>
|
||||
<xs:element name="Island" type="xs:string" substitutionGroup="dwc:anySamplingLocationTerm"/>
|
||||
<xs:element name="Country" type="xs:string" substitutionGroup="dwc:anySamplingLocationTerm"/>
|
||||
<xs:element name="CountryCode" type="xs:string" substitutionGroup="dwc:anySamplingLocationTerm"/>
|
||||
<xs:element name="StateProvince" type="xs:string" substitutionGroup="dwc:anySamplingLocationTerm"/>
|
||||
<xs:element name="County" type="xs:string" substitutionGroup="dwc:anySamplingLocationTerm"/>
|
||||
<xs:element name="Locality" type="xs:string" substitutionGroup="dwc:anySamplingLocationTerm"/>
|
||||
<xs:element name="VerbatimLocality" type="xs:string" substitutionGroup="dwc:anySamplingLocationTerm"/>
|
||||
<xs:element name="VerbatimElevation" type="xs:string" substitutionGroup="dwc:anySamplingLocationTerm"/>
|
||||
<xs:element name="MinimumElevationInMeters" type="xs:double" substitutionGroup="dwc:anySamplingLocationTerm"/>
|
||||
<xs:element name="MaximumElevationInMeters" type="xs:double" substitutionGroup="dwc:anySamplingLocationTerm"/>
|
||||
<xs:element name="VerbatimDepth" type="xs:string" substitutionGroup="dwc:anySamplingLocationTerm"/>
|
||||
<xs:element name="MinimumDepthInMeters" type="xs:double" substitutionGroup="dwc:anySamplingLocationTerm"/>
|
||||
<xs:element name="MaximumDepthInMeters" type="xs:double" substitutionGroup="dwc:anySamplingLocationTerm"/>
|
||||
<xs:element name="DistanceAboveSurfaceInMetersMinimum" type="xs:double" substitutionGroup="dwc:anySamplingLocationTerm"/>
|
||||
<xs:element name="DistanceAboveSurfaceInMetersMaximum" type="xs:double" substitutionGroup="dwc:anySamplingLocationTerm"/>
|
||||
<xs:element name="DecimalLatitude" type="dwc:decimalLatitudeDataType" substitutionGroup="dwc:anySamplingLocationTerm"/>
|
||||
<xs:element name="DecimalLongitude" type="dwc:decimalLongitudeDataType" substitutionGroup="dwc:anySamplingLocationTerm"/>
|
||||
<xs:element name="GeodeticDatum" type="xs:string" substitutionGroup="dwc:anySamplingLocationTerm"/>
|
||||
<xs:element name="CoordinateUncertaintyInMeters" type="xs:double" substitutionGroup="dwc:anySamplingLocationTerm"/>
|
||||
<xs:element name="CoordinatePrecision" type="xs:string" substitutionGroup="dwc:anySamplingLocationTerm"/>
|
||||
<xs:element name="PointRadiusSpatialFit" type="dwc:spatialFitDataType" substitutionGroup="dwc:anySamplingLocationTerm"/>
|
||||
<xs:element name="VerbatimCoordinates" type="xs:string" substitutionGroup="dwc:anySamplingLocationTerm"/>
|
||||
<xs:element name="VerbatimLatitude" type="xs:string" substitutionGroup="dwc:anySamplingLocationTerm"/>
|
||||
<xs:element name="VerbatimLongitude" type="xs:string" substitutionGroup="dwc:anySamplingLocationTerm"/>
|
||||
<xs:element name="GeoreferencedBy" type="xs:string" substitutionGroup="dwc:anySamplingLocationTerm"/>
|
||||
<xs:element name="GeoreferenceProtocol" type="xs:string" substitutionGroup="dwc:anySamplingLocationTerm"/>
|
||||
<xs:element name="VerbatimCoordinateSystem" type="xs:string" substitutionGroup="dwc:anySamplingLocationTerm"/>
|
||||
<xs:element name="GeoreferenceSources" type="xs:string" substitutionGroup="dwc:anySamplingLocationTerm"/>
|
||||
<xs:element name="GeoreferenceVerificationStatus" type="xs:string" substitutionGroup="dwc:anySamplingLocationTerm"/>
|
||||
<xs:element name="GeoreferenceRemarks" type="xs:string" substitutionGroup="dwc:anySamplingLocationTerm"/>
|
||||
<xs:element name="FootprintWKT" type="dwc:spatialFitDataType" substitutionGroup="dwc:anySamplingLocationTerm"/>
|
||||
<xs:element name="FootprintSpatialFit" type="xs:string" substitutionGroup="dwc:anySamplingLocationTerm"/>
|
||||
<xs:element name="SamplingLocationRemarks" type="xs:string" substitutionGroup="dwc:anySamplingLocationTerm"/>
|
||||
<xs:group name="SamplingLocationTerms">
|
||||
<xs:sequence>
|
||||
<xs:element ref="dwc:HigherGeographyID" minOccurs="0"/>
|
||||
<xs:element ref="dwc:HigherGeography" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Continent" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Waterbody" minOccurs="0"/>
|
||||
<xs:element ref="dwc:IslandGroup" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Island" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Country" minOccurs="0"/>
|
||||
<xs:element ref="dwc:CountryCode" minOccurs="0"/>
|
||||
<xs:element ref="dwc:StateProvince" minOccurs="0"/>
|
||||
<xs:element ref="dwc:County" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Locality" minOccurs="0"/>
|
||||
<xs:element ref="dwc:VerbatimLocality" minOccurs="0"/>
|
||||
<xs:element ref="dwc:VerbatimElevation" minOccurs="0"/>
|
||||
<xs:element ref="dwc:MinimumElevationInMeters" minOccurs="0"/>
|
||||
<xs:element ref="dwc:MaximumElevationInMeters" minOccurs="0"/>
|
||||
<xs:element ref="dwc:VerbatimDepth" minOccurs="0"/>
|
||||
<xs:element ref="dwc:MinimumDepthInMeters" minOccurs="0"/>
|
||||
<xs:element ref="dwc:MaximumDepthInMeters" minOccurs="0"/>
|
||||
<xs:element ref="dwc:DistanceAboveSurfaceInMetersMinimum" minOccurs="0"/>
|
||||
<xs:element ref="dwc:DistanceAboveSurfaceInMetersMaximum" minOccurs="0"/>
|
||||
<xs:element ref="dwc:DecimalLatitude" minOccurs="0"/>
|
||||
<xs:element ref="dwc:DecimalLongitude" minOccurs="0"/>
|
||||
<xs:element ref="dwc:GeodeticDatum" minOccurs="0"/>
|
||||
<xs:element ref="dwc:CoordinateUncertaintyInMeters" minOccurs="0"/>
|
||||
<xs:element ref="dwc:CoordinatePrecision" minOccurs="0"/>
|
||||
<xs:element ref="dwc:PointRadiusSpatialFit" minOccurs="0"/>
|
||||
<xs:element ref="dwc:VerbatimCoordinates" minOccurs="0"/>
|
||||
<xs:element ref="dwc:VerbatimLatitude" minOccurs="0"/>
|
||||
<xs:element ref="dwc:VerbatimLongitude" minOccurs="0"/>
|
||||
<xs:element ref="dwc:GeoreferencedBy" minOccurs="0"/>
|
||||
<xs:element ref="dwc:GeoreferenceProtocol" minOccurs="0"/>
|
||||
<xs:element ref="dwc:VerbatimCoordinateSystem" minOccurs="0"/>
|
||||
<xs:element ref="dwc:GeoreferenceSources" minOccurs="0"/>
|
||||
<xs:element ref="dwc:GeoreferenceVerificationStatus" minOccurs="0"/>
|
||||
<xs:element ref="dwc:GeoreferenceRemarks" minOccurs="0"/>
|
||||
<xs:element ref="dwc:FootprintWKT" minOccurs="0"/>
|
||||
<xs:element ref="dwc:FootprintSpatialFit" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SamplingLocationRemarks" minOccurs="0"/>
|
||||
</xs:sequence>
|
||||
</xs:group>
|
||||
|
||||
|
||||
<!-- SAMPLE domain -->
|
||||
<xs:element name="anySampleTerm" abstract="true" substitutionGroup="dwc:anyProperty"/>
|
||||
<xs:element name="SampleID" type="dwc:nonEmptyString" substitutionGroup="dwc:anyIdentifier"/>
|
||||
<!-- domain properties -->
|
||||
<xs:element name="InstitutionCode" type="xs:string" substitutionGroup="dwc:anySampleTerm"/>
|
||||
<xs:element name="CollectionCode" type="xs:string" substitutionGroup="dwc:anySampleTerm"/>
|
||||
<xs:element name="CollectionID" type="dwc:nonEmptyString" substitutionGroup="dwc:anySampleTerm"/>
|
||||
<xs:element name="BasisOfRecord" type="dwctype:BasisOfRecordEnum" substitutionGroup="dwc:anySampleTerm"/>
|
||||
<xs:element name="AccessConstraints" type="xs:string" substitutionGroup="dwc:anySampleTerm"/>
|
||||
<xs:element name="InformationWithheld" type="xs:string" substitutionGroup="dwc:anySampleTerm"/>
|
||||
<xs:element name="Generalizations" type="xs:string" substitutionGroup="dwc:anySampleTerm"/>
|
||||
<xs:element name="SampleDetails" type="xs:string" substitutionGroup="dwc:anySampleTerm"/>
|
||||
<xs:element name="SampleRemarks" type="xs:string" substitutionGroup="dwc:anySampleTerm"/>
|
||||
<xs:element name="CatalogNumber" type="xs:string" substitutionGroup="dwc:anySampleTerm"/>
|
||||
<xs:element name="CatalogNumberNumeric" type="xs:integer" substitutionGroup="dwc:anySampleTerm"/>
|
||||
<xs:element name="IndividualID" type="dwc:nonEmptyString" substitutionGroup="dwc:anySampleTerm"/>
|
||||
<xs:element name="IndividualCount" type="xs:positiveInteger" substitutionGroup="dwc:anySampleTerm"/>
|
||||
<xs:element name="FieldNotes" type="xs:string" substitutionGroup="dwc:anySampleTerm"/>
|
||||
<xs:element name="Citation" type="xs:string" substitutionGroup="dwc:anySampleTerm"/>
|
||||
<xs:element name="Sex" type="xs:string" substitutionGroup="dwc:anySampleTerm"/>
|
||||
<xs:element name="LifeStage" type="xs:string" substitutionGroup="dwc:anySampleTerm"/>
|
||||
<xs:element name="ReproductiveCondition" type="xs:string" substitutionGroup="dwc:anySampleTerm"/>
|
||||
<xs:element name="EstablishmentMeans" type="xs:string" substitutionGroup="dwc:anySampleTerm"/>
|
||||
<xs:element name="SampleAttributes" type="xs:string" substitutionGroup="dwc:anySampleTerm"/>
|
||||
<xs:element name="Preparations" type="xs:string" substitutionGroup="dwc:anySampleTerm"/>
|
||||
<xs:element name="Disposition" type="xs:string" substitutionGroup="dwc:anySampleTerm"/>
|
||||
<xs:element name="OtherCatalogNumbers" type="xs:string" substitutionGroup="dwc:anySampleTerm"/>
|
||||
<xs:element name="AssociatedMedia" type="xs:string" substitutionGroup="dwc:anySampleTerm"/>
|
||||
<xs:element name="AssociatedReferences" type="xs:string" substitutionGroup="dwc:anySampleTerm"/>
|
||||
<xs:element name="AssociatedSamples" type="xs:string" substitutionGroup="dwc:anySampleTerm"/>
|
||||
<xs:element name="AssociatedSequences" type="xs:string" substitutionGroup="dwc:anySampleTerm"/>
|
||||
<xs:element name="AssociatedTaxa" type="xs:string" substitutionGroup="dwc:anySampleTerm"/>
|
||||
<xs:group name="SampleTerms">
|
||||
<xs:sequence>
|
||||
<xs:element ref="dwc:InstitutionCode" minOccurs="0"/>
|
||||
<xs:element ref="dwc:CollectionCode" minOccurs="0"/>
|
||||
<xs:element ref="dwc:CollectionID" minOccurs="0"/>
|
||||
<xs:element ref="dwc:BasisOfRecord" minOccurs="0"/>
|
||||
<xs:element ref="dwc:AccessConstraints" minOccurs="0"/>
|
||||
<xs:element ref="dwc:InformationWithheld" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Generalizations" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SampleDetails" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SampleRemarks" minOccurs="0"/>
|
||||
<xs:element ref="dwc:CatalogNumber" minOccurs="0"/>
|
||||
<xs:element ref="dwc:CatalogNumberNumeric" minOccurs="0"/>
|
||||
<xs:element ref="dwc:IndividualID" minOccurs="0"/>
|
||||
<xs:element ref="dwc:IndividualCount" minOccurs="0"/>
|
||||
<xs:element ref="dwc:FieldNotes" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Citation" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Sex" minOccurs="0"/>
|
||||
<xs:element ref="dwc:LifeStage" minOccurs="0"/>
|
||||
<xs:element ref="dwc:ReproductiveCondition" minOccurs="0"/>
|
||||
<xs:element ref="dwc:EstablishmentMeans" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SampleAttributes" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Preparations" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Disposition" minOccurs="0"/>
|
||||
<xs:element ref="dwc:OtherCatalogNumbers" minOccurs="0"/>
|
||||
<xs:element ref="dwc:AssociatedMedia" minOccurs="0"/>
|
||||
<xs:element ref="dwc:AssociatedReferences" minOccurs="0"/>
|
||||
<xs:element ref="dwc:AssociatedSamples" minOccurs="0"/>
|
||||
<xs:element ref="dwc:AssociatedSequences" minOccurs="0"/>
|
||||
<xs:element ref="dwc:AssociatedTaxa" minOccurs="0"/>
|
||||
</xs:sequence>
|
||||
</xs:group>
|
||||
|
||||
|
||||
<!-- SAMPLING EVENT domain -->
|
||||
<xs:element name="anySamplingEventTerm" abstract="true" substitutionGroup="dwc:anyProperty"/>
|
||||
<xs:element name="SamplingEventID" type="dwc:nonEmptyString" substitutionGroup="dwc:anyIdentifier"/>
|
||||
<!-- domain properties -->
|
||||
<xs:element name="SamplingProtocol" type="xs:string" substitutionGroup="dwc:anySamplingEventTerm"/>
|
||||
<xs:element name="VerbatimCollectingDate" type="xs:string" substitutionGroup="dwc:anySamplingEventTerm"/>
|
||||
<xs:element name="EarliestDateCollected" type="xs:dateTime" substitutionGroup="dwc:anySamplingEventTerm"/>
|
||||
<xs:element name="LatestDateCollected" type="xs:dateTime" substitutionGroup="dwc:anySamplingEventTerm"/>
|
||||
<xs:element name="StartDayOfYear" type="dwc:dayOfYearDataType" substitutionGroup="dwc:anySamplingEventTerm"/>
|
||||
<xs:element name="EndDayOfYear" type="dwc:dayOfYearDataType" substitutionGroup="dwc:anySamplingEventTerm"/>
|
||||
<xs:element name="StartTimeOfDay" type="xs:time" substitutionGroup="dwc:anySamplingEventTerm"/>
|
||||
<xs:element name="EndTimeOfDay" type="xs:time" substitutionGroup="dwc:anySamplingEventTerm"/>
|
||||
<xs:element name="YearSampled" type="xs:gYear" substitutionGroup="dwc:anySamplingEventTerm"/>
|
||||
<xs:element name="MonthOfYear" type="xs:gMonth" substitutionGroup="dwc:anySamplingEventTerm"/>
|
||||
<xs:element name="DayOfMonth" type="xs:gDay" substitutionGroup="dwc:anySamplingEventTerm"/>
|
||||
<xs:element name="Habitat" type="xs:string" substitutionGroup="dwc:anySamplingEventTerm"/>
|
||||
<xs:element name="Behavior" type="xs:string" substitutionGroup="dwc:anySamplingEventTerm"/>
|
||||
<xs:element name="Collector" type="xs:string" substitutionGroup="dwc:anySamplingEventTerm"/>
|
||||
<xs:element name="CollectorNumber" type="xs:string" substitutionGroup="dwc:anySamplingEventTerm"/>
|
||||
<xs:element name="FieldNumber" type="xs:string" substitutionGroup="dwc:anySamplingEventTerm"/>
|
||||
<xs:element name="SamplingEventAttributes" type="xs:string" substitutionGroup="dwc:anySamplingEventTerm"/>
|
||||
<xs:element name="SamplingEventRemarks" type="xs:string" substitutionGroup="dwc:anySamplingEventTerm"/>
|
||||
<xs:group name="SamplingEventTerms">
|
||||
<xs:sequence>
|
||||
<xs:element ref="dwc:SamplingProtocol" minOccurs="0"/>
|
||||
<xs:element ref="dwc:VerbatimCollectingDate" minOccurs="0"/>
|
||||
<xs:element ref="dwc:EarliestDateCollected" minOccurs="0"/>
|
||||
<xs:element ref="dwc:LatestDateCollected" minOccurs="0"/>
|
||||
<xs:element ref="dwc:StartDayOfYear" minOccurs="0"/>
|
||||
<xs:element ref="dwc:EndDayOfYear" minOccurs="0"/>
|
||||
<xs:element ref="dwc:StartTimeOfDay" minOccurs="0"/>
|
||||
<xs:element ref="dwc:EndTimeOfDay" minOccurs="0"/>
|
||||
<xs:element ref="dwc:YearSampled" minOccurs="0"/>
|
||||
<xs:element ref="dwc:MonthOfYear" minOccurs="0"/>
|
||||
<xs:element ref="dwc:DayOfMonth" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Habitat" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Behavior" minOccurs="0"/>
|
||||
<xs:element ref="dwc:Collector" minOccurs="0"/>
|
||||
<xs:element ref="dwc:CollectorNumber" minOccurs="0"/>
|
||||
<xs:element ref="dwc:FieldNumber" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SamplingEventAttributes" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SamplingEventRemarks" minOccurs="0"/>
|
||||
</xs:sequence>
|
||||
</xs:group>
|
||||
|
||||
|
||||
<!-- SAMPLE ATTRIBUTE domain -->
|
||||
<xs:element name="anySampleAttributeTerm" abstract="true" substitutionGroup="dwc:anyProperty"/>
|
||||
<xs:element name="SampleAttributeID" type="dwc:nonEmptyString" substitutionGroup="dwc:anyIdentifier"/>
|
||||
<!-- domain properties -->
|
||||
<xs:element name="SampleAttributeType" type="xs:string" substitutionGroup="dwc:anySampleAttributeTerm"/>
|
||||
<xs:element name="SampleAttributeValue" type="xs:string" substitutionGroup="dwc:anySampleAttributeTerm"/>
|
||||
<xs:element name="SampleAttributeAccuracy" type="xs:string" substitutionGroup="dwc:anySampleAttributeTerm"/>
|
||||
<xs:element name="SampleAttributeUnit" type="xs:string" substitutionGroup="dwc:anySampleAttributeTerm"/>
|
||||
<xs:element name="SampleAttributeDeterminedDate" type="xs:dateTime" substitutionGroup="dwc:anySampleAttributeTerm"/>
|
||||
<xs:element name="SampleAttributeDeterminedBy" type="xs:string" substitutionGroup="dwc:anySampleAttributeTerm"/>
|
||||
<xs:element name="SampleAttibuteRemarks" type="xs:string" substitutionGroup="dwc:anySampleAttributeTerm"/>
|
||||
<xs:group name="SampleAttributeTerms">
|
||||
<xs:sequence>
|
||||
<xs:element ref="dwc:SampleAttributeType" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SampleAttributeValue" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SampleAttributeAccuracy" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SampleAttributeUnit" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SampleAttributeDeterminedDate" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SampleAttributeDeterminedBy" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SampleAttibuteRemarks" minOccurs="0"/>
|
||||
</xs:sequence>
|
||||
</xs:group>
|
||||
|
||||
|
||||
<!-- EVENT ATTRIBUTE domain -->
|
||||
<xs:element name="anyEventAttributeTerm" abstract="true" substitutionGroup="dwc:anyProperty"/>
|
||||
<xs:element name="EventAttributeID" type="dwc:nonEmptyString" substitutionGroup="dwc:anyIdentifier"/>
|
||||
<!-- domain properties -->
|
||||
<xs:element name="EventAttributeType" type="xs:string" substitutionGroup="dwc:anyEventAttributeTerm"/>
|
||||
<xs:element name="EventAttributeValue" type="xs:string" substitutionGroup="dwc:anyEventAttributeTerm"/>
|
||||
<xs:element name="EventAttributeAccuracy" type="xs:string" substitutionGroup="dwc:anyEventAttributeTerm"/>
|
||||
<xs:element name="EventAttributeUnit" type="xs:string" substitutionGroup="dwc:anyEventAttributeTerm"/>
|
||||
<xs:element name="EventAttributeDeterminedDate" type="xs:dateTime" substitutionGroup="dwc:anyEventAttributeTerm"/>
|
||||
<xs:element name="EventAttributeDeterminedBy" type="xs:string" substitutionGroup="dwc:anyEventAttributeTerm"/>
|
||||
<xs:element name="EventAttributeRemarks" type="xs:string" substitutionGroup="dwc:anyEventAttributeTerm"/>
|
||||
<xs:group name="EventAttributeTerms">
|
||||
<xs:sequence>
|
||||
<xs:element ref="dwc:EventAttributeType" minOccurs="0"/>
|
||||
<xs:element ref="dwc:EventAttributeValue" minOccurs="0"/>
|
||||
<xs:element ref="dwc:EventAttributeAccuracy" minOccurs="0"/>
|
||||
<xs:element ref="dwc:EventAttributeUnit" minOccurs="0"/>
|
||||
<xs:element ref="dwc:EventAttributeDeterminedDate" minOccurs="0"/>
|
||||
<xs:element ref="dwc:EventAttributeDeterminedBy" minOccurs="0"/>
|
||||
<xs:element ref="dwc:EventAttributeRemarks" minOccurs="0"/>
|
||||
</xs:sequence>
|
||||
</xs:group>
|
||||
|
||||
|
||||
<!-- RESOURCERELATIONSHIP domain -->
|
||||
<xs:element name="anyResourceRelationshipTerm" abstract="true" substitutionGroup="dwc:anyProperty"/>
|
||||
<xs:element name="ResourceRelationshipID" type="dwc:nonEmptyString" substitutionGroup="dwc:anyIdentifier"/>
|
||||
<!-- domain properties -->
|
||||
<xs:element name="RelatedResourceID" type="dwc:nonEmptyString" substitutionGroup="dwc:anyResourceRelationshipTerm"/>
|
||||
<xs:element name="RelatedResourceType" type="xs:string" substitutionGroup="dwc:anyResourceRelationshipTerm"/>
|
||||
<xs:element name="RelatedBasisOfRecord" type="xs:string" substitutionGroup="dwc:anyResourceRelationshipTerm"/>
|
||||
<xs:element name="RelationshipOfResource" type="xs:string" substitutionGroup="dwc:anyResourceRelationshipTerm"/>
|
||||
<xs:element name="RelationshipRemarks" type="xs:string" substitutionGroup="dwc:anyResourceRelationshipTerm"/>
|
||||
<xs:group name="ResourceRelationshipTerms">
|
||||
<xs:sequence>
|
||||
<xs:element ref="dwc:RelatedResourceID" minOccurs="0"/>
|
||||
<xs:element ref="dwc:RelatedResourceType" minOccurs="0"/>
|
||||
<xs:element ref="dwc:RelatedBasisOfRecord" minOccurs="0"/>
|
||||
<xs:element ref="dwc:RelationshipOfResource" minOccurs="0"/>
|
||||
<xs:element ref="dwc:RelationshipRemarks" minOccurs="0"/>
|
||||
</xs:sequence>
|
||||
</xs:group>
|
||||
|
||||
<xs:group name="DarwinCoreIdentifierTerms">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Group of all darwin core identifier terms as a convenience to construct other schemas</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:sequence>
|
||||
<xs:element ref="dwc:DatasetID" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SampleID" minOccurs="0"/>
|
||||
<xs:element ref="dwc:TaxonID" minOccurs="0"/>
|
||||
<xs:element ref="dwc:IdentificationID" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SamplingLocationID" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SamplingEventID" minOccurs="0"/>
|
||||
<xs:element ref="dwc:SampleAttributeID" minOccurs="0"/>
|
||||
<xs:element ref="dwc:EventAttributeID" minOccurs="0"/>
|
||||
<xs:element ref="dwc:ResourceRelationshipID" minOccurs="0"/>
|
||||
</xs:sequence>
|
||||
</xs:group>
|
||||
|
||||
<xs:group name="anyDublinCoreTerm">
|
||||
<xs:choice>
|
||||
<xs:element ref="dc:modified"/>
|
||||
<xs:element ref="dc:language"/>
|
||||
<xs:element ref="dc:rights"/>
|
||||
<xs:element ref="dc:rightsHolder"/>
|
||||
</xs:choice>
|
||||
</xs:group>
|
||||
<xs:group name="DublinCoreTerms">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Recommended Dublin Core terms to be reused</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:sequence>
|
||||
<xs:element ref="dc:modified" minOccurs="0"/>
|
||||
<xs:element ref="dc:language" minOccurs="0"/>
|
||||
<xs:element ref="dc:rights" minOccurs="0"/>
|
||||
<xs:element ref="dc:rightsHolder" minOccurs="0"/>
|
||||
</xs:sequence>
|
||||
</xs:group>
|
||||
</xs:schema>
|
|
@ -0,0 +1,31 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<xs:schema version="0.1" xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
||||
targetNamespace="http://rs.tdwg.org/dwc/terms/type-vocabulary/"
|
||||
xmlns:dwctype="http://rs.tdwg.org/dwc/terms/type-vocabulary/">
|
||||
<xs:annotation>
|
||||
<xs:documentation xml:lang="en">
|
||||
The basic Darwin Core type vocabulary schema defining simple types as enumerations for controlled vocabularies.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
|
||||
<xs:simpleType name="BasisOfRecordEnum">
|
||||
<xs:restriction base="xs:NMTOKEN">
|
||||
<!-- Dublin Core -->
|
||||
<xs:enumeration value="StillImage"/>
|
||||
<xs:enumeration value="MovingImage"/>
|
||||
<xs:enumeration value="Sound"/>
|
||||
<xs:enumeration value="PhysicalObject"/>
|
||||
<!--Darwin Core -->
|
||||
<xs:enumeration value="PreservedSpecimen"/>
|
||||
<xs:enumeration value="FossilSpecimen"/>
|
||||
<xs:enumeration value="LivingSpecimen"/>
|
||||
<xs:enumeration value="HumanObservation"/>
|
||||
<xs:enumeration value="MachineObservation"/>
|
||||
<!-- experimental -->
|
||||
<xs:enumeration value="Location"/>
|
||||
<xs:enumeration value="Taxonomy"/>
|
||||
<xs:enumeration value="NomenclaturalChecklist"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
|
||||
</xs:schema>
|