<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Markus,<br>
Thanks!&nbsp; After I posted the other night I was thinking that the way I
had
constructed the RDF was a bit convoluted.&nbsp; Your example is much more
straightforward.&nbsp; (although except for a lack of typing on my part the
two examples actually result in the same triples).&nbsp; <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.&nbsp; I would be
interested in some discussion about the appropriate use of the varous
dwc:xxxxID terms (e.g. dwc:occurrenceID, dwc:institutionID, etc.).&nbsp; As
was the case with the resourceRelationship terms, there aren't a lot of
examples showing the proper use of these terms, with the noteworthy
exception of <a class="moz-txt-link-freetext" href="http://rs.tdwg.org/dwc/terms/guides/xml/index.htm">http://rs.tdwg.org/dwc/terms/guides/xml/index.htm</a> .&nbsp; As I
see it, there are two possible uses of these terms.&nbsp; One (the "first"
use) is to identify the actual resource that is the subject of a
record.&nbsp; The other (the "second" use) is as an "IDRef" term that
connects the subject resource to another record of a different type.&nbsp;
In the XML example, we see both uses.&nbsp; In the first example in section
2.7 we see<br>
<br>
&nbsp;&nbsp;&nbsp; &lt;dcterms:Location&gt;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&lt;dwc:locationID&gt;<a class="moz-txt-link-freetext" href="http://guid.mvz.org/sites/arg/127">http://guid.mvz.org/sites/arg/127</a>&lt;/dwc:locationID&gt;<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; ... more metadata...<br>
&nbsp;&nbsp;&nbsp; &lt;/dcterms:Location&gt;<br>
&nbsp;&nbsp;&nbsp; &lt;dwc:Occurrence&gt;<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; ... more metadata ...<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&lt;dwc:occurrenceID&gt;urn:catalog:MVZ:Mammals:14523&lt;/dwc:occurrenceID&gt;<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; ... more metadata ...<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&lt;dwc:locationID&gt;<a class="moz-txt-link-freetext" href="http://guid.mvz.org/sites/arg/127">http://guid.mvz.org/sites/arg/127</a>&lt;/dwc:locationID&gt;<br>
&nbsp;&nbsp;&nbsp; &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.&nbsp; Because of the freewheeling
nature of generic XML files, I guess this is OK.&nbsp; However, when I'm
trying to think clearly about how to express relationships in RDF, I've
come to decide that I don't like this dual use.&nbsp; I would express the
above relationships in RDF as follows:<br>
<br>
&lt;rdf:Description rdf:about=<a class="moz-txt-link-rfc2396E" href="http://guid.mvz.org/sites/arg/127">"http://guid.mvz.org/sites/arg/127"</a>&gt;<br>
&nbsp;&nbsp;&nbsp; &lt;rdfs:type rdf:resource=<a class="moz-txt-link-rfc2396E" href="http://purl.org/dc/terms/Location">"http://purl.org/dc/terms/Location"</a>/&gt;<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; ...metadata...<br>
&lt;/rdf:Description&gt;<br>
&lt;rdf:Description
rdf:about=<a class="moz-txt-link-rfc2396E" href="http://resolver.org/urn:catalog:MVZ:Mammals:14523">"http://resolver.org/urn:catalog:MVZ:Mammals:14523"</a>&gt;<br>
&nbsp;&nbsp;&nbsp; &lt;rdfs:type
rdf:resource=<a class="moz-txt-link-rfc2396E" href="http://rs.tdwg.org/dwc/terms/Occurrence">"http://rs.tdwg.org/dwc/terms/Occurrence"</a>/&gt;<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; ... metadata...<br>
&nbsp;&nbsp;&nbsp; &lt;dwc:locationID
rdf:resource=<a class="moz-txt-link-rfc2396E" href="http://guid.mvz.org/sites/arg/127">"http://guid.mvz.org/sites/arg/127"</a>/&gt;<br>
&lt;/rdf:Description&gt;<br>
<br>
To me this makes the most sense.&nbsp; It corresponds to the "second" 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).&nbsp;&nbsp; One could also do something like<br>
<br>
&lt;rdf:Description rdf:about=<a class="moz-txt-link-rfc2396E" href="http://guid.mvz.org/sites/arg/127">"http://guid.mvz.org/sites/arg/127"</a>&gt;<br>
&nbsp;&nbsp;&nbsp; &lt;dwc:locationID
rdf:resource=<a class="moz-txt-link-rfc2396E" href="http://guid.mvz.org/sites/arg/127">"http://guid.mvz.org/sites/arg/127"</a>/&gt;<br>
&nbsp;&nbsp;&nbsp; &lt;rdfs:type rdf:resource=<a class="moz-txt-link-rfc2396E" href="http://purl.org/dc/terms/Location">"http://purl.org/dc/terms/Location"</a>/&gt;<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; ...metadata...<br>
etc.<br>
<br>
or <br>
<br>
&lt;rdf:Description rdf:about=<a class="moz-txt-link-rfc2396E" href="http://guid.mvz.org/sites/arg/127">"http://guid.mvz.org/sites/arg/127"</a>&gt;<br>
&nbsp;&nbsp;&nbsp;
&lt;dwc:locationID&gt;<a class="moz-txt-link-freetext" href="http://guid.mvz.org/sites/arg/127">http://guid.mvz.org/sites/arg/127</a>&lt;/dwc:locationID&gt;<br>
&nbsp;&nbsp;&nbsp; &lt;rdfs:type rdf:resource=<a class="moz-txt-link-rfc2396E" href="http://purl.org/dc/terms/Location">"http://purl.org/dc/terms/Location"</a>/&gt;<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; ...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.&nbsp; 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 class="moz-txt-link-rfc2396E" href="http://guid.mvz.org/sites/arg/127">"http://guid.mvz.org/sites/arg/127"</a>&gt;<br>
&nbsp;&nbsp;&nbsp;
&lt;dcterms:identifier&gt;<a class="moz-txt-link-freetext" href="http://guid.mvz.org/sites/arg/127">http://guid.mvz.org/sites/arg/127</a>&lt;/dcterms:identifier&gt;<br>
&nbsp;&nbsp;&nbsp; &lt;rdfs:type rdf:resource=<a class="moz-txt-link-rfc2396E" href="http://purl.org/dc/terms/Location">"http://purl.org/dc/terms/Location"</a>/&gt;<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; ...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't call a
SIMPLE alternative) to using dwc:locationID as the predicate that
points to the Location object of an Occurrence subject.&nbsp; Darwin Core
doesn't have any terms specifically designed for this (such as
"hasLocation" or "hasIdentificatin" for example) but I don't see any
reason why the dwc:xxxxID terms couldn't be used this way.&nbsp; <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 .&nbsp; Although the term description comments at
<a class="moz-txt-link-freetext" href="http://darwincore.googlecode.com/svn/trunk/rdf/dwcterms.rdf">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't in the RDF.&nbsp; So the
only real clue to the intended subjects of the dwc:xxxxID terms is the
placement of the dwc:xxxxID terms into classes.&nbsp; 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.).&nbsp; This would
hint that the terms were intended to be used with instances of their
class as their subject.&nbsp; However, if the terms were used as IDRefs (the
"second" use shown in the XML example) then they really should be in
different classes.&nbsp; 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.&nbsp; But then
there might be the question of whether an Event could also have a
dwc:locationID as a property and dwc:locationID shouldn't be in two
classes.&nbsp; In the absence of defined rdfs:domains, I guess the terms can
be used with pretty much any subject a user thinks makes sense.&nbsp; As Bob
Morris pointed out in a recent post, there aren't very many
applications that are doing much in the way of semantic reasoning at
this point.&nbsp; 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.&nbsp;&nbsp; <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 class="moz-txt-link-freetext" href="http://bioimages.vanderbilt.edu/ind-baskauf/41870.rdf">http://bioimages.vanderbilt.edu/ind-baskauf/41870.rdf</a> and
<a class="moz-txt-link-freetext" href="http://bioimages.vanderbilt.edu/baskauf/51363.rdf">http://bioimages.vanderbilt.edu/baskauf/51363.rdf</a>), so unless somebody
tells me that's "wrong" and comes up with a better term to describe the
relationships I need to describe, I'll keep using the dwc:xxxxID terms
as IDRefs.<br>
<br>
Comments?<br>
Steve<br>
<br>
Markus D&ouml;ring wrote: <br>
<blockquote cite="mid:1B897EF9-6DFA-42CB-A9A8-57C55898F6EB@mac.com"
 type="cite">
  <pre wrap="">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="..." /&gt; and &lt;dwc:relatedResource rdf:resource="..." /&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 wrap=""><!----></pre>
</blockquote>
<pre class="moz-signature" 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 class="moz-txt-link-freetext" href="http://bioimages.vanderbilt.edu">http://bioimages.vanderbilt.edu</a>
</pre>
</body>
</html>