For background on the state of and reasons for the Darwin Core domains, here are relevant messages in the tdwg-content list archives from the public review period for the standard as it currently stands:<div><br></div><div>
assertions in DwC terms:</div><div><br></div>
<div><a href="http://lists.tdwg.org/pipermail/tdwg-content/2009-June/000019.html" target="_blank">http://lists.tdwg.org/pipermail/tdwg-content/2009-June/000019.html</a></div><div><a href="http://lists.tdwg.org/pipermail/tdwg-content/2009-June/000021.html" target="_blank">http://lists.tdwg.org/pipermail/tdwg-content/2009-June/000021.html</a></div>

<div><a href="http://lists.tdwg.org/pipermail/tdwg-content/2009-June/000022.html" target="_blank">http://lists.tdwg.org/pipermail/tdwg-content/2009-June/000022.html</a></div><div><a href="http://lists.tdwg.org/pipermail/tdwg-content/2009-June/000024.html" target="_blank">http://lists.tdwg.org/pipermail/tdwg-content/2009-June/000024.html</a></div>

<div><br></div><div><h1 style="font-family: Times; font-size: medium; "><span class="Apple-style-span" style="font-weight: normal; font-family: arial; font-size: small; ">Request for Decision for Public Review of DarwinCore Draft Standard:</span></h1>
<h1 style="font-family: Times; font-size: medium; "><span class="Apple-style-span" style="font-weight: normal; font-family: arial; font-size: small; "></span><span class="Apple-style-span" style="font-weight: normal; font-family: arial; font-size: small; "><a href="http://lists.tdwg.org/pipermail/tdwg-content/2009-July/000035.html" target="_blank">http://lists.tdwg.org/pipermail/tdwg-content/2009-July/000035.html</a></span></h1>
</div>
<div><a href="http://lists.tdwg.org/pipermail/tdwg-content/2009-August/000088.html" target="_blank">http://lists.tdwg.org/pipermail/tdwg-content/2009-August/000088.html</a></div><div><a href="http://lists.tdwg.org/pipermail/tdwg-content/2009-August/000089.html" target="_blank">http://lists.tdwg.org/pipermail/tdwg-content/2009-August/000089.html</a></div>


<div><a href="http://lists.tdwg.org/pipermail/tdwg-content/2009-August/000098.html" target="_blank">http://lists.tdwg.org/pipermail/tdwg-content/2009-August/000098.html</a></div><div><a href="http://lists.tdwg.org/pipermail/tdwg-content/2009-August/000092.html" target="_blank">http://lists.tdwg.org/pipermail/tdwg-content/2009-August/000092.html</a><br>


<br><div class="gmail_quote">On Tue, Aug 31, 2010 at 12:34 PM, Steve Baskauf <span dir="ltr">&lt;<a href="mailto:steve.baskauf@vanderbilt.edu" target="_blank">steve.baskauf@vanderbilt.edu</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">





  

<div bgcolor="#ffffff" text="#000000">
Markus,<br>
Thanks!  After I posted the other night I was thinking that the way I
had
constructed the RDF was a bit convoluted.  Your example is much more
straightforward.  (although except for a lack of typing on my part the
two examples actually result in the same triples).  <br>
<br>
As you noted, the other thing that my example has is that the record
for
the offspring makes reference to the dwc:resourceRelationshipID as a
way to assert that the offspring has that relationship.  I would be
interested in some discussion about the appropriate use of the varous
dwc:xxxxID terms (e.g. dwc:occurrenceID, dwc:institutionID, etc.).  As
was the case with the resourceRelationship terms, there aren&#39;t a lot of
examples showing the proper use of these terms, with the noteworthy
exception of <a href="http://rs.tdwg.org/dwc/terms/guides/xml/index.htm" target="_blank">http://rs.tdwg.org/dwc/terms/guides/xml/index.htm</a> .  As I
see it, there are two possible uses of these terms.  One (the &quot;first&quot;
use) is to identify the actual resource that is the subject of a
record.  The other (the &quot;second&quot; use) is as an &quot;IDRef&quot; term that
connects the subject resource to another record of a different type. 
In the XML example, we see both uses.  In the first example in section
2.7 we see<br>
<br>
    &lt;dcterms:Location&gt;<br>
       
&lt;dwc:locationID&gt;<a href="http://guid.mvz.org/sites/arg/127" target="_blank">http://guid.mvz.org/sites/arg/127</a>&lt;/dwc:locationID&gt;<br>
             ... more metadata...<br>
    &lt;/dcterms:Location&gt;<br>
    &lt;dwc:Occurrence&gt;<br>
             ... more metadata ...<br>
       
&lt;dwc:occurrenceID&gt;urn:catalog:MVZ:Mammals:14523&lt;/dwc:occurrenceID&gt;<br>
             ... more metadata ...<br>
       
&lt;dwc:locationID&gt;<a href="http://guid.mvz.org/sites/arg/127" target="_blank">http://guid.mvz.org/sites/arg/127</a>&lt;/dwc:locationID&gt;<br>
    &lt;/dwc:Occurrence&gt;<br>
<br>
where in the dcterms:Location record, dwc:locationID indicates the
identifier for the Location itself (i.e. the subject), while in the
dwc:Occurrence record, dwc:locationID refers to the object of the
location property of the Occurrence.  Because of the freewheeling
nature of generic XML files, I guess this is OK.  However, when I&#39;m
trying to think clearly about how to express relationships in RDF, I&#39;ve
come to decide that I don&#39;t like this dual use.  I would express the
above relationships in RDF as follows:<br>
<br>
&lt;rdf:Description rdf:about=<a href="http://guid.mvz.org/sites/arg/127" target="_blank">&quot;http://guid.mvz.org/sites/arg/127&quot;</a>&gt;<br>
    &lt;rdfs:type rdf:resource=<a href="http://purl.org/dc/terms/Location" target="_blank">&quot;http://purl.org/dc/terms/Location&quot;</a>/&gt;<br>
       ...metadata...<br>
&lt;/rdf:Description&gt;<br>
&lt;rdf:Description
rdf:about=<a href="http://resolver.org/urn:catalog:MVZ:Mammals:14523" target="_blank">&quot;http://resolver.org/urn:catalog:MVZ:Mammals:14523&quot;</a>&gt;<br>
    &lt;rdfs:type
rdf:resource=<a href="http://rs.tdwg.org/dwc/terms/Occurrence" target="_blank">&quot;http://rs.tdwg.org/dwc/terms/Occurrence&quot;</a>/&gt;<br>
       ... metadata...<br>
    &lt;dwc:locationID
rdf:resource=<a href="http://guid.mvz.org/sites/arg/127" target="_blank">&quot;http://guid.mvz.org/sites/arg/127&quot;</a>/&gt;<br>
&lt;/rdf:Description&gt;<br>
<br>
To me this makes the most sense.  It corresponds to the &quot;second&quot; use in
the XML example (it indicates the Location property of the Occurrence,
i.e. serves as the predicate connecting the subject Occurrence to the
object Location).   One could also do something like<br>
<br>
&lt;rdf:Description rdf:about=<a href="http://guid.mvz.org/sites/arg/127" target="_blank">&quot;http://guid.mvz.org/sites/arg/127&quot;</a>&gt;<br>
    &lt;dwc:locationID
rdf:resource=<a href="http://guid.mvz.org/sites/arg/127" target="_blank">&quot;http://guid.mvz.org/sites/arg/127&quot;</a>/&gt;<br>
    &lt;rdfs:type rdf:resource=<a href="http://purl.org/dc/terms/Location" target="_blank">&quot;http://purl.org/dc/terms/Location&quot;</a>/&gt;<br>
       ...metadata...<br>
etc.<br>
<br>
or <br>
<br>
&lt;rdf:Description rdf:about=<a href="http://guid.mvz.org/sites/arg/127" target="_blank">&quot;http://guid.mvz.org/sites/arg/127&quot;</a>&gt;<br>
   
&lt;dwc:locationID&gt;<a href="http://guid.mvz.org/sites/arg/127" target="_blank">http://guid.mvz.org/sites/arg/127</a>&lt;/dwc:locationID&gt;<br>
    &lt;rdfs:type rdf:resource=<a href="http://purl.org/dc/terms/Location" target="_blank">&quot;http://purl.org/dc/terms/Location&quot;</a>/&gt;<br>
       ...metadata...<br>
etc.<br>
<br>
But this seems rather pointless because in the first case, the
rdf:about attribute already provides information about the subject of
the relationship in a Linked Data manner.  In the second case, why have
a special term to indicate a literal version of the identifier when
there is a more generic and well-known term that is common use? e.g.<br>
<br>
&lt;rdf:Description rdf:about=<a href="http://guid.mvz.org/sites/arg/127" target="_blank">&quot;http://guid.mvz.org/sites/arg/127&quot;</a>&gt;<br>
   
&lt;dcterms:identifier&gt;<a href="http://guid.mvz.org/sites/arg/127" target="_blank">http://guid.mvz.org/sites/arg/127</a>&lt;/dcterms:identifier&gt;<br>
    &lt;rdfs:type rdf:resource=<a href="http://purl.org/dc/terms/Location" target="_blank">&quot;http://purl.org/dc/terms/Location&quot;</a>/&gt;<br>
       ...metadata...<br>
etc.<br>
<br>
In contrast, there is no simple alternative that I can see (with the
possible exception of the dwc:relatedResource, which I wouldn&#39;t call a
SIMPLE alternative) to using dwc:locationID as the predicate that
points to the Location object of an Occurrence subject.  Darwin Core
doesn&#39;t have any terms specifically designed for this (such as
&quot;hasLocation&quot; or &quot;hasIdentificatin&quot; for example) but I don&#39;t see any
reason why the dwc:xxxxID terms couldn&#39;t be used this way.  <br>
<br>
The main issue I can see with the use of these dwc:xxxxID terms is
their placement in classes which I guess is related to their
rdfs:domain .  Although the term description comments at
<a href="http://darwincore.googlecode.com/svn/trunk/rdf/dwcterms.rdf" target="_blank">http://darwincore.googlecode.com/svn/trunk/rdf/dwcterms.rdf</a> (is this
the actual place where DwC is officially defined?) say that each term
has a rdfs:domain property, they actually don&#39;t in the RDF.  So the
only real clue to the intended subjects of the dwc:xxxxID terms is the
placement of the dwc:xxxxID terms into classes.  In most cases, a
dwc:xxxxID term is placed in the class of the thing that the term is
identifying (e.g. occurrenceID is in the Occurrence class,
identificationID is in the Identification class, etc.).  This would
hint that the terms were intended to be used with instances of their
class as their subject.  However, if the terms were used as IDRefs (the
&quot;second&quot; use shown in the XML example) then they really should be in
different classes.  For example, dwc:locationID could be a member of
the class Occurrence, since an Occurrence could have dwc:locationID as
a property with an instance of a Location as its object.  But then
there might be the question of whether an Event could also have a
dwc:locationID as a property and dwc:locationID shouldn&#39;t be in two
classes.  In the absence of defined rdfs:domains, I guess the terms can
be used with pretty much any subject a user thinks makes sense.  As Bob
Morris pointed out in a recent post, there aren&#39;t very many
applications that are doing much in the way of semantic reasoning at
this point.  But I suppose (hope?) that there could be some in the
future, so achieving some kind of consensus on how the terms should be
used in RDF would probably be good.   <br>
<br>
At this point, the dwc:xxxxID terms serve a useful purpose for me in
connecting one kind of resource to another (examples in
<a href="http://bioimages.vanderbilt.edu/ind-baskauf/41870.rdf" target="_blank">http://bioimages.vanderbilt.edu/ind-baskauf/41870.rdf</a> and
<a href="http://bioimages.vanderbilt.edu/baskauf/51363.rdf" target="_blank">http://bioimages.vanderbilt.edu/baskauf/51363.rdf</a>), so unless somebody
tells me that&#39;s &quot;wrong&quot; and comes up with a better term to describe the
relationships I need to describe, I&#39;ll keep using the dwc:xxxxID terms
as IDRefs.<br>
<br>
Comments?<br>
Steve<br>
<br>
Markus Döring wrote: <br>
<blockquote type="cite">
  <pre>I must say it feels strange to use the id terms in rdf to refer to rdf:resources instead of holding ID literals.
More natural to the rdf language would be &lt;dwc:resource rdf:resource=&quot;...&quot; /&gt; and &lt;dwc:relatedResource rdf:resource=&quot;...&quot; /&gt; I suppose, but the dwc vocabulary was built for different technologies, not rdf alone. So I guess thats the price we have to pay.

Markus
  </pre>
  <pre></pre>
</blockquote>
<pre cols="72">-- 
Steven J. Baskauf, Ph.D., Senior Lecturer
Vanderbilt University Dept. of Biological Sciences

postal mail address:
VU Station B 351634
Nashville, TN  37235-1634,  U.S.A.

delivery address:
2125 Stevenson Center
1161 21st Ave., S.
Nashville, TN 37235

office: 2128 Stevenson Center
phone: (615) 343-4582,  fax: (615) 343-6707
<a href="http://bioimages.vanderbilt.edu" target="_blank">http://bioimages.vanderbilt.edu</a>
</pre>
</div>

</blockquote></div><br></div>