<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
  <title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
OK, Pete, I'm going to try to write the other half of the email that I
promised.&nbsp; I'm going to start by saying that some of what I'm talking
about here has already been posted on the Darwin-SW (DSW) wiki page
called RelationshipToExistingModels
(<a class="moz-txt-link-freetext"
 href="http://code.google.com/p/darwin-sw/wiki/RelationshipToExistingModels">http://code.google.com/p/darwin-sw/wiki/RelationshipToExistingModels</a>).&nbsp;
I've actually wanted to bring this up with you for about six months,
but have never taken the time to put it into an email.&nbsp; Since this is
going out to the list, I'll include some comments about background that
you already know (assuming a broader audience).&nbsp; I'd welcome your
comments and feedback on what I've said and
whether you think it is accurate or not.<br>
<br>
One of the things that I think makes it difficult for people to follow
what you are proposing on taxonconcept.org is that the
structure of your RDF is complex.&nbsp; I'm not saying that is a bad thing,
I'm just saying that if you combine that with people's general
unfamiliarity with RDF and the difficulty that some people have with
visualizing RDF in XML format, it just isn't accessible to most
people.&nbsp; Even that difficulty in itself isn't necessarily a bad thing
because RDF isn't really intended to be understood primarily by people
- it's designed to be understood by computers, so many people on this
list don't really need to care about it.&nbsp; Nevertheless, in order
to have a discussion about a proposal, one must be able to
visualize it.&nbsp; I am a very right-brained person and must have maps,
diagrams, and graphs to conceptualize things.&nbsp; So the first thing I did
was to go to <a class="moz-txt-link-freetext"
 href="http://www.w3.org/RDF/Validator/">http://www.w3.org/RDF/Validator/</a>,
put in the URI your
example, and tell the parser to give me graph only.&nbsp; In
the RelationshipToExistingModels wiki page, I looked at
<a class="moz-txt-link-freetext"
 href="http://ocs.taxonconcept.org/ocs/f522444a-2dd9-400e-be59-47213ef38cb9.rdf">http://ocs.taxonconcept.org/ocs/f522444a-2dd9-400e-be59-47213ef38cb9.rdf</a>
which provided information about an occurrence.&nbsp; One of the most
obvious features of the resulting graph is that it is complex.&nbsp; I used
the word "reticulated" because there are many cross-connections between
the nodes.&nbsp; It takes a bit of time and a large-screen monitor to sort
it all out, but if one ignores the literals and concentrates only on
the nodes that are labeled with URIs, the structure is actually very
similar to the structure we used in DSW.&nbsp; So that tells me that we (Cam
and I) are
seeing the biodiversity informatics world in a very similar manner to
the way you have been seeing it.&nbsp;
On obvious difference is in the class names used to type resources - we
mostly used DwC classes and you used ones that you defined in your
ontology, but that is a cosmetic difference if one assumes that the
classes in DSW and at taxonconcept.org represent the same thing. <br>
<br>
If one considers the basic RDF graph for DSW shown on the DSW home page
(<a class="moz-txt-link-freetext"
 href="http://code.google.com/p/darwin-sw/">http://code.google.com/p/darwin-sw/</a>),
with the exception of dsw:Token
which can be evidence for several things (and foaf:Person which was
kind of thrown in at the end), the basic structure of DSW is linear.&nbsp;
There is a connection between each class wherever there is a potential
need for a one-to-many join between class instances (see triangles
[="crow's feet"] on the Fully Normalized Model on the
RelationshipToExistingModels wiki page; DSW is like this diagram except
there
is no Time class, and TaxonNameUsage in the diagram is the Taxon class
in DSW).&nbsp; The connections are made by object properties that we defined
in the DSW ontology.&nbsp; A major difference between the DSW structure and
the structure that can be seen in the RDF graph of the taxonconcept.org
occurrence example is that there is not just one connection that can be
used to traverse the classes.&nbsp; For example, in DSW, to obtain
information about Occurrences that are associated with an
Identification, one would have to "surf" from a dwc:Identification
instance to dsw:Individual instance using the dsw:identifies property,
then from the dsw:Individual instance to the dwc:Occurrence instance
using the dsw:hasOccurrence property.&nbsp; Similarly, in the
taxonconcept.org example,
one could go from the txn:Identification instance to the
txn:SpeciesIndividual instance using the txn:identificationOfIndividual
property, then from the txn:SpeciesIndividual instance to the
txn:Occurrence instance using the txn:individualHasOccurrence
property.&nbsp; However, taxonconcept.org also allows one to make the
connection from the txn:Identification instance directly to the
txn:Occurrence instance using the txn:identificationHasOccurrence,
skipping the txn:SpeciesIndividual altogether.&nbsp; Similar "shortcuts"
connect other classes in taxonconcept.org whose analogues in DSW are
separated by intervening classes, e.g. from txn:Occurrence to
txn:SpeciesConcept (roughly analogous to dwc:Taxon) by
ttxn:occurrenceHasSpeciesConcept, from dwc_area:Area (roughly analogous
to
dcterms:Location) to txn:SpeciesConcept by
txn:areaHasObservedSpeciesConcept, etc.&nbsp; I don't think the
taxonconcept.org ontology has every possible connection between every
class, but in theory one could do that if one wanted.&nbsp; There would be
even more connections and shortcuts if the taxonconcept.org ontology
included a class that is analogous to dwc:Event (it's "flattened out"
of the taxonconcept.org model, see
<a class="moz-txt-link-freetext"
 href="http://lists.tdwg.org/pipermail/tdwg-content/2010-October/001710.html">http://lists.tdwg.org/pipermail/tdwg-content/2010-October/001710.html</a>
and the posts that precede and follow it for more on the topic of
"flattening" databases).&nbsp; It is the presence of these "shortcut"
properties in the taxonconcept.org ontology that makes it's RDF graph
so complex and "reticulated" and the absence of them that makes a DWC
RDF graph much simpler.<br>
<br>
Which approach is correct?&nbsp; As the old adage says "anybody can say
anything about anything".&nbsp; There isn't really anything intrinsically
"wrong" with either including or excluding "shortcut" properties.&nbsp; I am
guessing that the reason why your ontology has them and DSW doesn't may
be a reflection of the reasons why the ontologies were created.&nbsp; From
what you've said in the past, I gather that you would like to
facilitate assembling masses of metadata in triple stores and run
SPARQL
queries on them to discover interesting things.&nbsp; Cam and I want to make
it possible to apply GUIDs to very diverse kinds of things and be able
to track what happens to them if they end up in different places.&nbsp;
These are not necessarily mutually exclusive desires, but they do
represent a difference in outlook.&nbsp; I
know virtually nothing about SPARQL, but at the risk of exposing myself
as an ignoramus, I'm going to mention SPARQL queries in this post
anyway.&nbsp; I assume from your examples
that it is relatively easy to run a query to discover resources that
are one object property-step away from a subject resource.&nbsp; I would
assume that it would be much more difficult to run such queries on
things that are five object property-steps apart.&nbsp; For example, if one
wanted to know all of the instances of txn:SpeciesConcept's that
occurred at a dwc_area:Area all one would have to do is to search for
all of
the objects of the txn:areaHasObservedSpeciesConcept properties for
instances of that particular dwc_area:Area in a triple store.&nbsp; In
DSW, one would need to look for all of the dwc:Events that happened at
that dcterms:Location, then find all of the dwc:Occurrences that
happened at those dwc:Events, then find out which dsw:Individuals were
represented in those dwc:Occurrences, then look up all of the
dwc:Identifications for those dsw:Individuals, and finally make a
non-redundant list of dwc:Taxon instances that were represented in
those dwc:Identifications.&nbsp; I don't know if there is a simple SPARQL
query for that, but I doubt it.&nbsp; So from the standpoint of querying,
the "shortcut" property method that taxonconcept.org uses is much
better.<br>
<br>
However, there is an important problem with the "shortcut" strategy.&nbsp;
In order to be able to make a simple query that makes use of
single-step properties, one must know what kind of query a user will
want to make and then make sure that there is a shortcut property that
connects the classes of interest.&nbsp; This requires either a crystal ball
to be able to predict what people are interested in asking, or just
making up properties for every possible shortcut.&nbsp; If I'm doing the
math right, with the 6 classes that are included in the existing DwC
plus IndividualOrganism (or SpeciesIndividual if you prefer), there
would be 15 connections among the classes which would make 30 object
properties required to connect them if one wanted every connection to
have a pair of inverse properties to enable going in either direction.&nbsp;
If one included the Token class, that would make 21 pairs.&nbsp; The burden
would then fall on the metadata provider to provide values for all of
those properties. And although 21 connections doesn't sound that bad,
there could actually be a lot more actually property assignments than
that because there isn't any restriction that says that there will only
be one value for a property.&nbsp; If an organism has two Identifications,
then every xxxHasIdentification kind of property is going to have two
values.&nbsp; If there are many Identifications (e.g.
<a class="moz-txt-link-freetext" href="http://bioimages.vanderbilt.edu/rdf/examples/lsu000/0428.rdf">http://bioimages.vanderbilt.edu/rdf/examples/lsu000/0428.rdf</a>) there
would be many values.&nbsp; Essentially, the metadata provider is left with
the job of pre-running every kind of query that a user could possibly
want to do.&nbsp; <br>
<br>
An alternative to this would be to simply the model by "flattening out"
certain classes (making the model less "normalized").&nbsp; You did that
with Event.&nbsp; In my Biodiversity Informatics article
(<a class="moz-txt-link-freetext" href="https://journals.ku.edu/index.php/jbi/article/view/3664">https://journals.ku.edu/index.php/jbi/article/view/3664</a>) I did it for
Event and Location.&nbsp; Historically museum people have "flattened out"
IndividualOrganism and Token.&nbsp; People normalize out Identification all
of the time.&nbsp; As Rich Pyle pointed out in the post I cited above,
people "flatten" more complex models into simpler models all the time
because it is convenient and it makes their databases simpler and
easier to manage.&nbsp; But if our desire is to come up with a general model
that will work for museum people and their old specimen labels, bird
and whale observation people, DNA barcoding people, people who document
live organisms with images and sound, bioblitzers, etc. it has to
include every class that participants can reasonably need to have to
facilitate needed "one-to-many database joins" or whatever you want to
call that.&nbsp; In October, I posted a message to the tdwg-content list
where I warned against setting precedents for using "wrong" RDF
(<a class="moz-txt-link-freetext" href="http://lists.tdwg.org/pipermail/tdwg-content/2010-October/001663.html">http://lists.tdwg.org/pipermail/tdwg-content/2010-October/001663.html</a>).&nbsp;
In that post, my point was that people should not apply properties to
instances of the wrong class.&nbsp; That is exactly what happens when people
simplify models by eliminating classes that have only one-to-one
relationships with other classes in their database.&nbsp; So if I were to
restate my complaint again, I'd frame it this way: a "wrong" RDF model
is one that leaves out classes that potential users may need to express
the complexities of their data.&nbsp; This principle was an underlying
assumption when we constructed DSW, and to know what classes people
needed, we looked at the discussion that took place on the tdwg-content
list in Oct/Nov.&nbsp; As I point out on the RelationshipToExistingModels
wiki page, we could have included a Time class, but as a practical
matter, nobody has expressed a need for it (at least yet).&nbsp; So given
this principle, reducing the number of shortcut properties by getting
rid of classes is simply not an option for any model that hopes to
include all of the kinds of metadata that one would like to describe
within a community.&nbsp; <br>
<br>
So the bottom line, in my opinion, is that in a model as complex as
what we need in the biodiversity informatics community (i.e. a "fully
normalized" model) we simply cannot hope to create and assign object
properties that connect every class.&nbsp; Hence in DSW we only created the
minimum number of object properties needed to express what we
considered the fundamental relationships among the classes.&nbsp; What this
means is that it simply may not be possible to make simple SPARQL
queries on the data to find out what people want to know.&nbsp; Rather, the
burden will fall on software developers to create software that can
traverse the network of connections among the classes and extract the
information that they need to answer the questions they want people to
be able to pose through use of their software.&nbsp; Nailing down what the
community consensus is on the classes and their connections is the
first step to being able to create that kind of software.&nbsp; <br>
<br>
This email is already too long, but I think that I need to make one
more point about the impossibility of expecting a metadata provider
pre-populating all of the necessary "shortcut" properties that one
would want to use in simple SPARQL queries.&nbsp; If there is only one
person at one institution creating all of the
metadata, then it is easy to make sure that all of the subject
resources are assigned values for the appropriate shortcut object
properties.&nbsp; (I think this is the case in the example SPARQL queries
that you have put out on the list, i.e. all of the metadata was
provided by you - I didn't go back and look at the examples again, so I
could be wrong about that.)&nbsp; However, in the situation that Cam and I
are interested
in, the various connected resources may be at different institutions
with metadata submitted "to the cloud" by different people.&nbsp;
For example, the tree <a class="moz-txt-link-freetext"
 href="http://bioimages.vanderbilt.edu/uncg/84">http://bioimages.vanderbilt.edu/uncg/84</a>
is in the
University of North Carolina at Greensboro arboretum.&nbsp; An image of that
tree, <a class="moz-txt-link-freetext"
 href="http://bioimages.vanderbilt.edu/kirchoff/em1968">http://bioimages.vanderbilt.edu/kirchoff/em1968</a>
, is in the
Bioimages image collection.&nbsp; A specimen from that tree,
<a class="moz-txt-link-freetext"
 href="http://bioimages.vanderbilt.edu/specimen/ncu592805">http://bioimages.vanderbilt.edu/specimen/ncu592805</a>
, is in the
University of North Carolina herbarium in Chapel Hill.&nbsp; Although at the
moment these URIs are all under the <a class="moz-txt-link-freetext"
 href="http://bioimages.vanderbilt.edu">http://bioimages.vanderbilt.edu</a>
subdomain, I would hope that at some point in the future, there would
be permanent GUIDs for all of them (except the image) under someone
else's management other than me.&nbsp; Hopefully there will be a GUID for
the Taxon
assigned to an Identification of the tree which would
eventually be managed at some community-maintained place like the
Global Name Use Bank
(GNUB).&nbsp; So lets say I used the shortcut model and assigned a
""dsw:occurrenceHasTaxon" property (which doesn't actually exist in DSW
at the present) to the Occurrence documented by the
image in my collection
(URI=<a class="moz-txt-link-freetext"
 href="http://bioimages.vanderbilt.edu/kirchoff/em1968#occ">http://bioimages.vanderbilt.edu/kirchoff/em1968#occ</a>).&nbsp;
Now let's
say that a <i>Quercus </i>expert looks at the UNC specimen and
decides that it is some different species (i.e. creates a different
dwc:Identification).&nbsp; There now should be an additional value of the
"dsw:occurrenceHasTaxon" property of the Occurrence metadata that I'm
managing, but I'm not going to know that because the Identification has
been made by somebody else, not me.&nbsp; [I should note that the BiSciCol
project is hoping to make it possible for people to find out this kind
of thing, see <a class="moz-txt-link-freetext" href="http://biscicol.blogspot.com/">http://biscicol.blogspot.com/</a> .]&nbsp; Is it my responsibility
to continually trawl the cloud and always be updating all of the many
shortcut properties that would be possible to assign to the resources
whose metadata I'm managing?&nbsp; If I don't do that, then SPARQL queries
that people would run on "dsw:occurrenceHasTaxon" properties would miss
information that had been added to the cloud by others - it would only
find out things that I already knew when I created my metadata record
for the resource I control.&nbsp; It seems to me that a major point of
Linked Open Data is that individuals add to the cloud by contributing
their little bit to it and that Wonderful Things happen when people
find out stuff by connecting those bits with other bits contributed by
other people at another place in the cloud.&nbsp; If we create a system that
only works when people are expected to know in advance what those
Wonderful Things are, then the whole exercise becomes pointless.&nbsp; <br>
<br>
Anyway, I hope that this explains to some extent one of the reasons why
Cam and I created DSW rather than just jumping in and using the
taxonconcept.org ontology.&nbsp; We wanted something considerably simpler.<br>
<br>
I was going to comment/ask about at least one more thing about the
ontology at taxonconcept.org, but this email is already way too long,
so I'll take that up in a subsequent email.<br>
<br>
Steve<br>
<br>
<br>
Peter DeVries wrote:
<blockquote
 cite="mid:BANLkTikHB2yb6LtnEWLmwWN_wy7ObyZSiQ@mail.gmail.com"
 type="cite">I am still somewhat puzzled why TDWG seems so opposed to
adopting anything that comes from outside a small click?
  <div><br>
  </div>
  <div>
  <div>I was thinking that it would be best to create a separate class
that can be used for populations of a species.</div>
  <div><br>
  </div>
  <div>This would require adding an additional tag to the TaxonConcept
Species Concept Model, which currently includes several tags like
entities</div>
  <div><br>
  </div>
  <div><a moz-do-not-send="true"
 href="http://lod.taxonconcept.org/ses/mCcSp#Species">http://lod.taxonconcept.org/ses/mCcSp#Species</a>
&lt;- The Species Concept for the Cougar</div>
  <div><br>
  </div>
  <div>
  <div>See <a moz-do-not-send="true"
 href="http://lod.taxonconcept.org/ses/v6n7p.htm">http://lod.taxonconcept.org/ses/v6n7p.htm</a>l
HTML</div>
  <div>&nbsp; &nbsp; &nbsp; &nbsp;<a moz-do-not-send="true"
 href="http://lod.taxonconcept.org/ses/v6n7p.rdf">http://lod.taxonconcept.org/ses/v6n7p.rdf</a>
&nbsp;RDF</div>
  <div>&nbsp; &nbsp; &nbsp; &nbsp;<a moz-do-not-send="true"
 href="http://lsd.taxonconcept.org/describe/?url=http%3A%2F%2Flod.taxonconcept.org%2Fses%2Fv6n7p%23Species">http://lsd.taxonconcept.org/describe/?url=http%3A%2F%2Flod.taxonconcept.org%2Fses%2Fv6n7p%23Species</a>
Knowledge Base View (<a moz-do-not-send="true"
 href="http://bit.ly%20bit.ly/gMFqR1">http://bit.ly bit.ly/gMFqR1</a></div>
  <div>&nbsp;</div>
  </div>
  <div>The model mints URI's for the following related entities. See
RDF. or KB View</div>
  <div><br>
  </div>
  <div><a moz-do-not-send="true"
 href="http://lod.taxonconcept.org/ses/mCcSp#Image">http://lod.taxonconcept.org/ses/mCcSp#Image</a>
&nbsp; &nbsp; &nbsp;- An image of a Cougar</div>
  <div><a moz-do-not-send="true"
 href="http://lod.taxonconcept.org/ses/mCcSp#Occurrence">http://lod.taxonconcept.org/ses/mCcSp#Occurrence</a>
- An occurrence of a Cougar</div>
  <div><a moz-do-not-send="true"
 href="http://lod.taxonconcept.org/ses/mCcSp#Individual">http://lod.taxonconcept.org/ses/mCcSp#Individual</a>
- An individual Cougar</div>
  <div><a moz-do-not-send="true"
 href="http://lod.taxonconcept.org/ses/mCcSp#Taxonomy">http://lod.taxonconcept.org/ses/mCcSp#Taxonomy</a>
&nbsp; - A Basic Taxonomy for the Cougar, one alternative among many
potential classifications</div>
  <div><a moz-do-not-send="true"
 href="http://lod.taxonconcept.org/ses/mCcSp#NCBI_Taxonomy">http://lod.taxonconcept.org/ses/mCcSp#NCBI_Taxonomy</a>
- The NCBI Taxonomy for Cougar, or starting at the lowest available
clade</div>
  <div><a moz-do-not-send="true"
 href="http://lod.taxonconcept.org/ses/mCcSp#OriginalDescription">http://lod.taxonconcept.org/ses/mCcSp#OriginalDescription</a>
- The Original Description of the Cougar, ideally with links to the PDF
or BHL URI.</div>
  <div>&nbsp; &nbsp;&nbsp;</div>
  <div>&nbsp; &nbsp;&nbsp;</div>
  <div>Here is how a subset of these would relate to the new
#Population Tag and related semantic entities.</div>
  <div><br>
  </div>
  <div><br>
  </div>
  <div>This tag is used an individual organism that that is an instance
of the species concept pecies concept RDF.</div>
  </div>
  <div>
  <div>This allows you to refer to a individual cougar in a way that is
separate from the concept of cougar and retains links to other data
relating to that species concept.</div>
  <div><br>
  </div>
  <div><br>
  </div>
  <div><font class="Apple-style-span" face="tahoma, sans-serif">&nbsp;
&lt;txn:SpeciesIndividualTag rdf:about="<a moz-do-not-send="true"
 href="http://lod.taxonconcept.org/ses/v6n7p#Individual">http://lod.taxonconcept.org/ses/v6n7p#Individual</a>"&gt;</font></div>
  <div><font class="Apple-style-span" face="tahoma, sans-serif">&nbsp; &nbsp;
&lt;dcterms:title&gt;A Tag for individuals of the species concept Puma
concolor se:v6n7p&lt;/dcterms:title&gt;</font></div>
  <div><font class="Apple-style-span" face="tahoma, sans-serif">&nbsp; &nbsp;
&lt;skos:prefLabel&gt;A Tag-like resource that is used to label
individuals of the species concept Puma concolor
se:v6n7p&lt;/skos:prefLabel&gt;</font></div>
  <div><font class="Apple-style-span" face="tahoma, sans-serif">&nbsp; &nbsp;
&lt;dcterms:identifier&gt;<a moz-do-not-send="true"
 href="http://lod.taxonconcept.org/ses/v6n7p#Individual">http://lod.taxonconcept.org/ses/v6n7p#Individual</a>&lt;/dcterms:identifier&gt;</font></div>
  <div><font class="Apple-style-span" face="tahoma, sans-serif">&nbsp; &nbsp;
&lt;dcterms:description&gt;A lightweight tag that can be used to label
individuals of this species. These allow individual organisms to be
modeled as instances of SpeciesIndividualTag&lt;/dcterms:description&gt;</font></div>
  <div><font class="Apple-style-span" face="tahoma, sans-serif">&nbsp; &nbsp;
&lt;dcterms:isPartOf rdf:resource="<a moz-do-not-send="true"
 href="http://lod.taxonconcept.org/ses/v6n7p#Species">http://lod.taxonconcept.org/ses/v6n7p#Species</a>"/&gt;</font></div>
  <div><font class="Apple-style-span" face="tahoma, sans-serif">&nbsp; &nbsp;
&lt;wdrs:describedby rdf:resource="<a moz-do-not-send="true"
 href="http://lod.taxonconcept.org/ses/v6n7p.rdf">http://lod.taxonconcept.org/ses/v6n7p.rdf</a>"/&gt;</font></div>
  <div><font class="Apple-style-span" face="tahoma, sans-serif">&nbsp;
&lt;/txn:SpeciesIndividualTag&gt;</font></div>
  <div><br>
  </div>
  <div>Add a tag for a species population to the species concept RDF.</div>
  <div>This allows you to refer to a population of cougars in a way
that is separate for an individual cougar and retains links to other
data relating to that species concept.</div>
  <div><br>
  </div>
  <div><font class="Apple-style-span" face="tahoma, sans-serif">&nbsp;
&lt;txn:SpeciesPopulationTag rdf:about="<a moz-do-not-send="true"
 href="http://lod.taxonconcept.org/ses/v6n7p#Population">http://lod.taxonconcept.org/ses/v6n7p#Population</a>"&gt;</font></div>
  <div><font class="Apple-style-span" face="tahoma, sans-serif">&nbsp; &nbsp;
&lt;dcterms:title&gt;A Tag for populations of the species concept Puma
concolor se:v6n7p&lt;/dcterms:title&gt;</font></div>
  <div><font class="Apple-style-span" face="tahoma, sans-serif">&nbsp; &nbsp;
&lt;skos:prefLabel&gt;A Tag-like resource that is used to label
populations of the species concept Puma concolor
se:v6n7p&lt;/skos:prefLabel&gt;</font></div>
  <div><font class="Apple-style-span" face="tahoma, sans-serif">&nbsp; &nbsp;
&lt;dcterms:identifier&gt;<a moz-do-not-send="true"
 href="http://lod.taxonconcept.org/ses/v6n7p#Population">http://lod.taxonconcept.org/ses/v6n7p#Population</a>&lt;/dcterms:identifier&gt;</font></div>
  <div><font class="Apple-style-span" face="tahoma, sans-serif">&nbsp; &nbsp;
&lt;dcterms:description&gt;A lightweight tag that can be used to label
populations of this species. These allow populations of a species to be
modeled as instances of SpeciesIndividualTag&lt;/dcterms:description&gt;</font></div>
  <div><font class="Apple-style-span" face="tahoma, sans-serif">&nbsp; &nbsp;
&lt;dcterms:isPartOf rdf:resource="<a moz-do-not-send="true"
 href="http://lod.taxonconcept.org/ses/v6n7p#Species">http://lod.taxonconcept.org/ses/v6n7p#Species</a>"/&gt;</font></div>
  <div><font class="Apple-style-span" face="tahoma, sans-serif">&nbsp; &nbsp;
&lt;wdrs:describedby rdf:resource="<a moz-do-not-send="true"
 href="http://lod.taxonconcept.org/ses/v6n7p.rdf">http://lod.taxonconcept.org/ses/v6n7p.rdf</a>"/&gt;</font></div>
  <div><font class="Apple-style-span" face="tahoma, sans-serif">&nbsp;
&lt;/txn:SpeciesPopulationTag&gt;</font></div>
  <div><br>
  </div>
  <div><br>
  </div>
  <div>This is the RDF for a population, it has as one of it's parts an
individual organism.</div>
  <div>It is typed to indicate that it refers to a population of
Cougars.</div>
  <div><br>
  </div>
  <div><font class="Apple-style-span" face="tahoma, sans-serif">&nbsp;
&lt;owl:Class rdf:about="<a moz-do-not-send="true"
 href="http://lod.taxonconcept.org/pops/NorthAmericanCougarPopulation">http://lod.taxonconcept.org/pops/NorthAmericanCougarPopulation</a>"&gt;</font></div>
  <div><font class="Apple-style-span" face="tahoma, sans-serif">&nbsp; &nbsp;
&lt;rdf:type rdf:resource="<a moz-do-not-send="true"
 href="http://lod.taxonconcept.org/ses/v6n7p#Population">http://lod.taxonconcept.org/ses/v6n7p#Population</a>"/&gt;</font></div>
  <div><font class="Apple-style-span" face="tahoma, sans-serif">&nbsp; &nbsp;
&lt;skos:prefLabel&gt;The population of North American Cougars Puma
concolor se:v6n7 &lt;/skos:prefLabel&gt;</font></div>
  <div><font class="Apple-style-span" face="tahoma, sans-serif">&nbsp; &nbsp;
&lt;dcterms:hasPart rdf:resource="<a moz-do-not-send="true"
 href="http://ocs.taxonconcept.org/ocs/51cd124d-78c5-40aa-a7ff-2e3f58ca6ade#Individual">http://ocs.taxonconcept.org/ocs/51cd124d-78c5-40aa-a7ff-2e3f58ca6ade#Individual</a>"/&gt;</font></div>
  <div><font class="Apple-style-span" face="tahoma, sans-serif">&nbsp; &nbsp;
&lt;wdrs:describedby rdf:resource="<a moz-do-not-send="true"
 href="http://lod.taxonconcept.org/pops/NorthAmericanCougarPopulation.rdf">http://lod.taxonconcept.org/pops/NorthAmericanCougarPopulation.rdf</a>"/&gt;</font></div>
  <div><font class="Apple-style-span" face="tahoma, sans-serif">&nbsp;
&lt;/owl:Class&gt;</font></div>
  <div><br>
  </div>
  <div>Respectfully,</div>
  <div><br>
  </div>
  <div>- Pete</div>
  <p><font face="tahoma, sans-serif">-------------------------------------------------------------------------------------</font></p>
  <p><font face="tahoma, sans-serif">Pete DeVries</font></p>
  <p><font face="tahoma, sans-serif">Department of Entomology</font></p>
  <p><font face="tahoma, sans-serif">University of Wisconsin - Madison</font></p>
  <p><font face="tahoma, sans-serif">445 Russell Laboratories</font></p>
  <p><font face="tahoma, sans-serif">1630 Linden Drive</font></p>
  <p><font face="tahoma, sans-serif">Madison, WI 53706</font></p>
  <p><font face="tahoma, sans-serif">Email:&nbsp;<a moz-do-not-send="true"
 href="mailto:pdevries@wisc.edu" target="_blank">pdevries@wisc.edu</a></font></p>
  <p><font face="tahoma, sans-serif"><span><a moz-do-not-send="true"
 href="http://www.taxonconcept.org/" target="_blank">TaxonConcept&nbsp;</a></span><span>&nbsp;&amp;
&nbsp;<a moz-do-not-send="true" href="http://lod.geospecies.org/"
 target="_blank"><span>GeoSpecies</span></a>&nbsp;Knowledge Bases</span></font></p>
  <p><font face="tahoma, sans-serif">A Semantic Web,&nbsp;<a
 moz-do-not-send="true" href="http://linkeddata.org/" target="_blank"><span>Linked
Open Data&nbsp;</span></a>&nbsp;Project</font></p>
  <p><font face="tahoma, sans-serif">---------------------------------------------------------------------------------------</font></p>
  <br>
  </div>
</blockquote>
<br>
<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>