atom feed27 messages in org.w3.public-esw-thesRe: Scientific and common names in SKOS
FromSent OnAttachments
Rob TiceSep 28, 2008 11:56 pm 
De Smedt JohanSep 29, 2008 12:15 am 
Sini, Margherita (KCEW)Sep 29, 2008 1:30 am 
Aida SlavicSep 29, 2008 2:13 am 
De Smedt JohanSep 29, 2008 2:26 am 
Sini, Margherita (KCEW)Sep 29, 2008 2:32 am 
Rob TiceSep 29, 2008 3:30 am 
De Smedt JohanSep 29, 2008 4:05 am 
Aida SlavicSep 29, 2008 4:06 am 
Rob TiceSep 29, 2008 4:53 am 
Sini, Margherita (KCEW)Sep 29, 2008 5:05 am 
Sini, Margherita (KCEW)Sep 29, 2008 10:48 am 
Houghton,AndrewSep 29, 2008 11:07 am 
Sini, Margherita (KCEW)Sep 29, 2008 9:13 pm 
Alan RuttenbergSep 29, 2008 9:29 pm 
Sini, Margherita (KCEW)Sep 29, 2008 11:00 pm 
Alan RuttenbergSep 29, 2008 11:26 pm 
Antoine IsaacSep 30, 2008 2:55 am 
Stephen BoundsSep 30, 2008 3:49 am 
Leonard WillSep 30, 2008 4:43 am 
Panzer,MichaelOct 1, 2008 8:19 am 
Joseph TennisOct 1, 2008 1:02 pm 
Sini, Margherita (KCEW)Oct 1, 2008 1:04 pm 
Alan RuttenbergOct 2, 2008 3:16 am 
Antoine IsaacOct 2, 2008 7:23 am 
Alistair MilesOct 2, 2008 9:29 am 
Sini, Margherita (KCEW)Oct 2, 2008 11:27 am 
Subject:Re: Scientific and common names in SKOS
From:Alan Ruttenberg (alan@gmail.com)
Date:Sep 29, 2008 9:29:44 pm
List:org.w3.public-esw-thes

On Mon, Sep 29, 2008 at 2:08 PM, Houghton,Andrew <houg@oclc.org> wrote:

From: publ@w3.org [mailto:public-esw-thes- requ@w3.org] On Behalf Of Sini, Margherita (KCEW) Sent: Monday, September 29, 2008 1:49 PM To: publ@w3.org Subject: Scientific and common names in SKOS

Dear all,

I have the following problem: how to represent a KOS which contains organisms with scientific names and common names in SKOS?

example for plants: potatoes and "Solanum tuberosum", will these be 2 skos:concepts? NOTE: they may be both descriptors in the KOS, for indexing purposes. Both can have multiple non-descriptors...

[...]

OR

<skos:Concept rdf:about="http://www.fao.org/aims/aos/agrovoc#potatoes"> <skos:prefLabel xml:lang="en">potatoes</skos:prefLabel> <skos:prefLabel xml:lang="LA">Solanum tuberosum</skos:prefLabel> </skos:Concept>

What if in the terminology i use both scientific name and common name are preferred and they are both marked in English? ... i cannot use 2 skos:prefLabel for same language...

Why not just declare fao:commonLabel and fao:scientificLabel as sub-properties of skos:prefLabel?

Something like:

<rdf:Property rdf:about="http://www.fao.org/aims/aos/agrovoc/commonLabel"> <rdfs:subPropertyof rdf:resource=" http://www.w3.org/2008/05/skos#prefLabel"/> </rdf:Property>

<rdf:Property rdf:about=" http://www.fao.org/aims/aos/agrovoc/scientificLabel"> <rdfs:subPropertyof rdf:resource=" http://www.w3.org/2008/05/skos#prefLabel"/> </rdf:Property>

If you can't have two prefLabels, you can't do this. This means that each time you say

x commonLabel foo y scientificLabel bar

You have inferred (because of what subPropertyOf means - see rdfs7 in http://www.w3.org/TR/rdf-mt/)

x prefLabel foo y prefLabel bar

i.e. two values for prefLabel.

You can, however, have two altLabels.

-Alan