<!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">
In the specific case of RDF, having your cake and eating it doesn't
work.&nbsp; Paste this:<br>
<br>
&lt;rdf:RDF xmlns:rdf=<a class="moz-txt-link-rfc2396E" href="http://www.w3.org/1999/02/22-rdf-syntax-ns#">"http://www.w3.org/1999/02/22-rdf-syntax-ns#"</a><br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; xmlns:dwc=<a class="moz-txt-link-rfc2396E" href="http://rs.tdwg.org/dwc/terms/">"http://rs.tdwg.org/dwc/terms/"</a><br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt;<br>
&lt;dwc:Occurrence
rdf:about=<a class="moz-txt-link-rfc2396E" href="http://herbarium.org/hb123456">"http://herbarium.org/hb123456"</a>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>
&lt;dwc:recordedBy
rdf:resource=<a class="moz-txt-link-rfc2396E" href="http://people.vanderbilt.edu/~steve.baskauf/foaf.rdf#me">"http://people.vanderbilt.edu/~steve.baskauf/foaf.rdf#me"</a>&gt;Steve
Baskauf&lt;/dwc:recordedBy&gt;<br>
&lt;/dwc:Occurrence&gt;<br>
&lt;/rdf:RDF&gt;<br>
<br>
into the W3C RDF validator at:<br>
<a class="moz-txt-link-freetext" href="http://www.w3.org/RDF/Validator/">http://www.w3.org/RDF/Validator/</a><br>
and it will tell you "The attributes on this property element, are not
permitted with any content; expecting end element tag.".&nbsp; So in RDF
elements having the rdf:resource attribute have to be empty elements.&nbsp;
I tried validating an example where the recordedBy property was
included twice, once with a URI object and once with a string literal
object.&nbsp; It validated as "good" RDF, but I think it would be confusing
to a linked data client that would really have no clue that both
objects represented the same thing and would probably "assume" that the
occurrence was recorded by two entities rather than one..&nbsp; <br>
<br>
A possible solution would be to use dcterms:description as another
attribute.&nbsp; dcterms:description is defined as "An account of the
resource.&nbsp; Description may include ...a free-text account of the
resource."&nbsp; I couldn't find a more appropriate Dublin Core to use as an
attribute.&nbsp; So running this example:<br>
<br>
&lt;rdf:RDF xmlns:rdf=<a class="moz-txt-link-rfc2396E" href="http://www.w3.org/1999/02/22-rdf-syntax-ns#">"http://www.w3.org/1999/02/22-rdf-syntax-ns#"</a><br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; xmlns:dcterms=<a class="moz-txt-link-rfc2396E" href="http://purl.org/dc/terms/">"http://purl.org/dc/terms/"</a><br>
&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; xmlns:dwc=<a class="moz-txt-link-rfc2396E" href="http://rs.tdwg.org/dwc/terms/">"http://rs.tdwg.org/dwc/terms/"</a><br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gt;<br>
&lt;dwc:Occurrence
rdf:about=<a class="moz-txt-link-rfc2396E" href="http://herbarium.org/hb123456">"http://herbarium.org/hb123456"</a>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>
&lt;dwc:recordedBy
rdf:resource=<a class="moz-txt-link-rfc2396E" href="http://people.vanderbilt.edu/~steve.baskauf/foaf.rdf#me">"http://people.vanderbilt.edu/~steve.baskauf/foaf.rdf#me"</a>
dcterms:description="Steve Baskauf" /&gt;<br>
&lt;/dwc:Occurrence&gt;<br>
&lt;/rdf:RDF&gt;<br>
<br>
through the validator shows that this RDF asserts the following triples:<br>
<a class="moz-txt-link-freetext" href="http://herbarium.org/hb123456">http://herbarium.org/hb123456</a>&nbsp; dwc:recordedBy&nbsp; &nbsp;&nbsp;&nbsp;
<a class="moz-txt-link-freetext" href="http://people.vanderbilt.edu/~steve.baskauf/foaf.rdf#me">http://people.vanderbilt.edu/~steve.baskauf/foaf.rdf#me</a><br>
and that <br>
<a class="moz-txt-link-freetext" href="http://people.vanderbilt.edu/~steve.baskauf/foaf.rdf#me">http://people.vanderbilt.edu/~steve.baskauf/foaf.rdf#me</a>&nbsp;
dcterms:description&nbsp; "Steve Baskauf"<br>
<br>
In other words, the occurrence was recorded by me (identified by my
URI) and that the description of the thing represented by my URI is
"Steve Baskauf".&nbsp; That is pretty much a correct representation of the
situation, although the whole point of using a URI as the object of a
property is for a client to dereference the URI to find out more about
the object.&nbsp; The FOAF file (pointed to by the URI) would provide that
information without the dcterms:description attribute.<br>
<br>
Steve<br>
<br>
<br>
Jim Croft wrote:
<blockquote
 cite="mid:AANLkTilH3t5oHM1Vfq5IJF0_ewtdxkAt8Rb0ZgxuqpvT@mail.gmail.com"
 type="cite">
  <pre wrap="">wondering if
&lt;dwc:recordedBy
rdf:resource=<a class="moz-txt-link-rfc2396E" href="http://people.vanderbilt.edu/~steve.baskauf/foaf.rdf#me">"http://people.vanderbilt.edu/~steve.baskauf/foaf.rdf#me"</a>&gt;Steve
Baskauf&lt;/dwc:recordedBy&gt;
is legit?

just a have your cake and eat it kinda guy...

jim

On Thu, May 20, 2010 at 7:41 AM, Kevin Richards
<a class="moz-txt-link-rfc2396E" href="mailto:RichardsK@landcareresearch.co.nz">&lt;RichardsK@landcareresearch.co.nz&gt;</a> wrote:
  </pre>
  <blockquote type="cite">
    <pre wrap="">From my understanding (and after reading the example Bob referred to), the difference is:

[referring to external id]
&lt;dwc:recordedBy rdf:resource=<a class="moz-txt-link-rfc2396E" href="http://people.vanderbilt.edu/~steve.baskauf/foaf.rdf#me">"http://people.vanderbilt.edu/~steve.baskauf/foaf.rdf#me"</a> /&gt;

[inline text]
&lt;dwc:recordedBy&gt;Steve Baskauf&lt;/dwc:recordedBy&gt;

Look right?

Kevin

-----Original Message-----
From: <a class="moz-txt-link-abbreviated" href="mailto:tdwg-tag-bounces@lists.tdwg.org">tdwg-tag-bounces@lists.tdwg.org</a> [<a class="moz-txt-link-freetext" href="mailto:tdwg-tag-bounces@lists.tdwg.org">mailto:tdwg-tag-bounces@lists.tdwg.org</a>] On Behalf Of Jim Croft
Sent: Thursday, 20 May 2010 9:37 a.m.
To: Bob Morris
Cc: <a class="moz-txt-link-abbreviated" href="mailto:tdwg-tag@lists.tdwg.org">tdwg-tag@lists.tdwg.org</a>
Subject: Re: [tdwg-tag] string literals vs. uris for dwc:recordedBy, dwc:identifiedBy, and dwc:georeferencedBy in RDF

Hi Bob - should the same term allow both types of content, or should
there be a different term for each? &nbsp;Does it matter? &nbsp;Should
applications be smart enough to tell the difference and know what to
do with it?

Not really asking what the specification says, but about purity and
wholesomeness of design... :)

jim

On Thu, May 20, 2010 at 4:26 AM, Bob Morris <a class="moz-txt-link-rfc2396E" href="mailto:morris.bob@gmail.com">&lt;morris.bob@gmail.com&gt;</a> wrote:
    </pre>
    <blockquote type="cite">
      <pre wrap="">Exactly this example is given in
<a class="moz-txt-link-freetext" href="http://web4.w3.org/TR/REC-rdf-syntax/#section-Syntax-property-attributes">http://web4.w3.org/TR/REC-rdf-syntax/#section-Syntax-property-attributes</a>
so I would find it regrettable if DwC does something somewhere that
makes this substitution impossible or discouraged, &nbsp;or encourages tool
construction that does so, or encourages documention be interpreted in
a way that does so.

Indeed <a class="moz-txt-link-freetext" href="http://rs.tdwg.org/dwc/rdf/dwcterms.rdf">http://rs.tdwg.org/dwc/rdf/dwcterms.rdf</a> defines its type to be
rdf:Property and is silent on any semantics &nbsp;but that. My own
conclusion is that neither the intent or the outcome of the rdf
version of dwcterms discourages what you want, though I suppose the
intent part would be clearer if the documentation also said that a URI
can always be used, but applications are responsible for interpreting
it.


On Wed, May 19, 2010 at 11:09 AM, Steve Baskauf
<a class="moz-txt-link-rfc2396E" href="mailto:steve.baskauf@vanderbilt.edu">&lt;steve.baskauf@vanderbilt.edu&gt;</a> wrote:
      </pre>
      <blockquote type="cite">
        <pre wrap="">The definition for the Darwin Core term recordedBy
<a class="moz-txt-link-freetext" href="http://rs.tdwg.org/dwc/terms/index.htm#recordedBy">http://rs.tdwg.org/dwc/terms/index.htm#recordedBy</a>
says "A list (concatenated and separated) of names ...". &nbsp;The examples
given are string literals. &nbsp;However, when using this term as a predicate
in RDF, it would seem preferable to use a URI to an RDF representation
of the entity (if one exists) rather than a string literal. &nbsp;For
example, can I use:
&lt;dwc:recordedBy
rdf:resource=<a class="moz-txt-link-rfc2396E" href="http://people.vanderbilt.edu/~steve.baskauf/foaf.rdf#me">"http://people.vanderbilt.edu/~steve.baskauf/foaf.rdf#me"</a>/&gt;
rather than
&lt;dwc:recordedBy&gt;Steven J. Baskauf&lt;/dwc:recordedBy&gt;
?

Steve Baskauf
--

Steven J. Baskauf, Ph.D., Senior Lecturer
Vanderbilt University Dept. of Biological Sciences

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

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

office: 2128 Stevenson Center
phone: (615) 343-4582, &nbsp;fax: (615) 343-6707
<a class="moz-txt-link-freetext" href="http://bioimages.vanderbilt.edu">http://bioimages.vanderbilt.edu</a>

_______________________________________________
tdwg-tag mailing list
<a class="moz-txt-link-abbreviated" href="mailto:tdwg-tag@lists.tdwg.org">tdwg-tag@lists.tdwg.org</a>
<a class="moz-txt-link-freetext" href="http://lists.tdwg.org/mailman/listinfo/tdwg-tag">http://lists.tdwg.org/mailman/listinfo/tdwg-tag</a>


        </pre>
      </blockquote>
      <pre wrap="">

--
Robert A. Morris
Emeritus Professor &nbsp;of Computer Science
UMASS-Boston
100 Morrissey Blvd
Boston, MA 02125-3390
Associate, Harvard University Herbaria
email: <a class="moz-txt-link-abbreviated" href="mailto:ram@cs.umb.edu">ram@cs.umb.edu</a>
web: <a class="moz-txt-link-freetext" href="http://bdei.cs.umb.edu/">http://bdei.cs.umb.edu/</a>
web: <a class="moz-txt-link-freetext" href="http://etaxonomy.org/FilteredPush">http://etaxonomy.org/FilteredPush</a>
<a class="moz-txt-link-freetext" href="http://www.cs.umb.edu/~ram">http://www.cs.umb.edu/~ram</a>
phone (+1)617 287 6466
_______________________________________________
tdwg-tag mailing list
<a class="moz-txt-link-abbreviated" href="mailto:tdwg-tag@lists.tdwg.org">tdwg-tag@lists.tdwg.org</a>
<a class="moz-txt-link-freetext" href="http://lists.tdwg.org/mailman/listinfo/tdwg-tag">http://lists.tdwg.org/mailman/listinfo/tdwg-tag</a>

      </pre>
    </blockquote>
    <pre wrap="">

--
_________________
Jim Croft ~ <a class="moz-txt-link-abbreviated" href="mailto:jim.croft@gmail.com">jim.croft@gmail.com</a> ~ +61-2-62509499 ~
<a class="moz-txt-link-freetext" href="http://www.google.com/profiles/jim.croft">http://www.google.com/profiles/jim.croft</a>
'A civilized society is one which tolerates eccentricity to the point
of doubtful sanity.'
&nbsp;- Robert Frost, poet (1874-1963)
_______________________________________________
tdwg-tag mailing list
<a class="moz-txt-link-abbreviated" href="mailto:tdwg-tag@lists.tdwg.org">tdwg-tag@lists.tdwg.org</a>
<a class="moz-txt-link-freetext" href="http://lists.tdwg.org/mailman/listinfo/tdwg-tag">http://lists.tdwg.org/mailman/listinfo/tdwg-tag</a>

Please consider the environment before printing this email
Warning: &nbsp;This electronic message together with any attachments is confidential. If you receive it in error: (i) you must not read, use, disclose, copy or retain it; (ii) please contact the sender immediately by reply email and then delete the emails.
The views expressed in this email may not be those of Landcare Research New Zealand Limited. <a class="moz-txt-link-freetext" href="http://www.landcareresearch.co.nz">http://www.landcareresearch.co.nz</a>

    </pre>
  </blockquote>
  <pre wrap=""><!---->


  </pre>
</blockquote>
<br>
<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>