Dsy Network www | forum | my | didattica | howto | wiki | el goog | stats | blog | dona | rappresentanti
Homepage
 Register   Calendar   Members  Faq   Search  Logout 
.dsy:it. : Powered by vBulletin version 2.3.1 .dsy:it. > Didattica > Corsi N - Z > Ontologie e web semantico > esercizio slide lezione 07
  Last Thread   Next Thread
Author
Thread    Expand all | Contract all    Post New Thread    Post A Reply
Collapse
amari
.consigliere.

User info:
Registered: Aug 2006
Posts: 136 (0.02 al dì)
Location: Milano
Corso: Informatica
Anno: 3
Time Online: 21:56:15 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged
esercizio slide lezione 07

Ciao,

la slide su owl si conclude con questo esercizio:

Descrivere utilizzando OWL il seguente scenario
• Scenario:
– Un articolo è una pubblicazione che è stata pubblicata in
una rivista
– Una rivista ha un titolo ed è una pubblicazione
– Un articolo ha un autore che è una persona
– Una persona può scrivere pubblicazioni ma non è una
pubblicazione

Qualcuno l'ha fatto? L'ha per caso mostrato all'ultima lezione, quella di riepilogo?

A.

06-05-2008 14:56
Click Here to See the Profile for amari Click here to Send amari a Private Message Find more posts by amari Add amari to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
amari
.consigliere.

User info:
Registered: Aug 2006
Posts: 136 (0.02 al dì)
Location: Milano
Corso: Informatica
Anno: 3
Time Online: 21:56:15 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

Ho provato a farlo io. Commenti e considerazioni sono ben accetti.

<?xml version="1.0"?>
<rdf:RDF xml:base="http://www.am.com/2008/ontostudent" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">

<!-- definizione classe persona che non è una pubblicazione-->
<owl:Class rdf:about="#Persona">
<owl:disjointWith rdf:resource="#Pubblicazione"/>
</owl:Class>

<!-- definizione classe pubblicazione -->
<owl:Class rdf:about="#Pubblicazione"/>

<!-- una rivista è una pubblicazione -->
<owl:Class rdf:about="#Rivista">
<rdfs:subClassOf rdf:resource="#Pubblicazione"/>
</owl:Class>

<!-- definizione classe articolo che è una Pubblicazione -->
<owl:Class rdf:about="#Articolo">
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="#Pubblicazione"/>
<owl:Restriction>
<owl:onProperty rdf:resource="#published"/>
<owl:minCardinality rdf:datatype="xsd:nonNegativeInteger">1</owl:minCardinality>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>

<!-- una rivista ha un titolo -->
<owl:DatatypeProperty rdf:about="#titolo">
<rdfs:domain rdf:resource="#Rivista"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
</owl:DatatypeProperty>

<!-- un articolo ha un autore che è una persona -->
<!-- una persona può scrivere pubblicazioni -->
<owl:ObjectProperty rdf:about="#autore">
<rdfs:domain rdf:resource="#Articolo"/>
<rdfs:domain rdf:resource="#Pubblicazione"/>
<rdfs:range rdf:resource="#Persona"/>
</owl:ObjectProperty>

<!-- un articolo può essere pubblicato su una rivista -->
<owl:ObjectProperty rdf:about="#published">
<rdfs:domain rdf:resource="#Pubblicazione"/>
<rdfs:range rdf:resource="#Rivista"/>
</owl:ObjectProperty>
</rdf:RDF>

Ciao
A.

Last edited by amari on 06-05-2008 at 16:08

06-05-2008 16:04
Click Here to See the Profile for amari Click here to Send amari a Private Message Find more posts by amari Add amari to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
All times are GMT. The time now is 04:40.    Post New Thread    Post A Reply
  Last Thread   Next Thread
Show Printable Version | Email this Page | Subscribe to this Thread | Add to Bookmarks

Forum Jump:
Rate This Thread:

Forum Rules:
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is OFF
vB code is ON
Smilies are ON
[IMG] code is ON
 

Powered by: vBulletin v2.3.1 - Copyright ©2000 - 2002, Jelsoft Enterprises Limited
Mantained by dsy crew (email) | Collabora con noi | Segnalaci un bug | Archive | Regolamento | Licenze | Thanks | Syndacate
Pagina generata in 0.031 seconds (66.30% PHP - 33.70% MySQL) con 26 query.