From: <ku...@us...> - 2007-08-22 10:19:43
|
Revision: 18 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=18&view=rev Author: kurzum Date: 2007-08-22 03:19:42 -0700 (Wed, 22 Aug 2007) Log Message: ----------- added arch.owl Added Paths: ----------- trunk/src/php-client/ontologies/arch.owl Added: trunk/src/php-client/ontologies/arch.owl =================================================================== --- trunk/src/php-client/ontologies/arch.owl (rev 0) +++ trunk/src/php-client/ontologies/arch.owl 2007-08-22 10:19:42 UTC (rev 18) @@ -0,0 +1,149 @@ +<?xml version="1.0" encoding="ISO-8859-1"?> +<!DOCTYPE rdf:RDF [ + <!ENTITY owl 'http://www.w3.org/2002/07/owl#'> +]> + +<rdf:RDF + xml:base="http://localhost/foo" + xmlns:a="http://localhost/foo#" + 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#"> + +<owl:Ontology rdf:about=""/> + +<owl:Class rdf:ID="freeStandingPillar"> + <owl:equivalentClass> + <owl:Class> + <owl:intersectionOf rdf:parseType="Collection"> + <owl:Class rdf:about="#pillar"/> + <owl:Class> + <owl:complementOf> + <owl:Restriction> + <owl:onProperty rdf:resource="#touches"/> + <owl:someValuesFrom rdf:resource="&owl;Thing"/> + </owl:Restriction> + </owl:complementOf> + </owl:Class> + </owl:intersectionOf> + </owl:Class> + </owl:equivalentClass> +</owl:Class> + +<owl:Class rdf:ID="parallelpipe"> + <owl:equivalentClass> + <owl:Class> + <owl:unionOf rdf:parseType="Collection"> + <owl:Class rdf:about="#brick"/> + <owl:Class rdf:about="#wedge"/> + </owl:unionOf> + </owl:Class> + </owl:equivalentClass> +</owl:Class> + +<a:brick rdf:ID="a"/> + +<a:brick rdf:ID="b"/> + +<a:brick rdf:ID="c"/> + +<a:construction rdf:ID="c1"> + <a:hasParallelpipe rdf:resource="#a"/> + <a:hasPillar rdf:resource="#p1"/> + <a:hasPillar rdf:resource="#p2"/> +</a:construction> + +<a:construction rdf:ID="c2"> + <a:hasParallelpipe rdf:resource="#b"/> + <a:hasPillar rdf:resource="#p3"/> + <a:hasPillar rdf:resource="#p4"/> +</a:construction> + +<a:construction rdf:ID="c3"> + <a:hasParallelpipe rdf:resource="#c"/> + <a:hasPillar rdf:resource="#p5"/> + <a:hasPillar rdf:resource="#p6"/> +</a:construction> + +<a:construction rdf:ID="c4"> + <a:hasParallelpipe rdf:resource="#d"/> + <a:hasPillar rdf:resource="#p7"/> + <a:hasPillar rdf:resource="#p8"/> +</a:construction> + +<a:construction rdf:ID="c5"> + <a:hasParallelpipe rdf:resource="#e"/> + <a:hasPillar rdf:resource="#p9"/> +</a:construction> + +<a:wedge rdf:ID="d"/> + +<a:wedge rdf:ID="e"/> + +<a:freeStandingPillar rdf:ID="p1"> + <rdf:type rdf:resource="#pillar"/> + <a:leftof rdf:resource="#p2"/> + <a:supports rdf:resource="#a"/> +</a:freeStandingPillar> + +<a:freeStandingPillar rdf:ID="p2"> + <rdf:type rdf:resource="#pillar"/> + <a:supports rdf:resource="#a"/> +</a:freeStandingPillar> + +<a:freeStandingPillar rdf:ID="p3"> + <rdf:type rdf:resource="#pillar"/> + <a:leftof rdf:resource="#p4"/> +</a:freeStandingPillar> + +<a:freeStandingPillar rdf:ID="p4"> + <rdf:type rdf:resource="#pillar"/> +</a:freeStandingPillar> + +<a:pillar rdf:ID="p5"> + <a:leftof rdf:resource="#p6"/> + <a:supports rdf:resource="#c"/> + <a:touches rdf:resource="#p6"/> +</a:pillar> + +<a:pillar rdf:ID="p6"> + <a:supports rdf:resource="#c"/> +</a:pillar> + +<a:freeStandingPillar rdf:ID="p7"> + <rdf:type rdf:resource="#pillar"/> + <a:leftof rdf:resource="#p8"/> + <a:supports rdf:resource="#d"/> +</a:freeStandingPillar> + +<a:freeStandingPillar rdf:ID="p8"> + <rdf:type rdf:resource="#pillar"/> + <a:supports rdf:resource="#d"/> +</a:freeStandingPillar> + +<a:freeStandingPillar rdf:ID="p9"> + <rdf:type rdf:resource="#pillar"/> + <a:supports rdf:resource="#e"/> +</a:freeStandingPillar> + +<owl:Class rdf:ID="brick"/> + +<owl:Class rdf:ID="construction"/> + +<owl:Class rdf:ID="pillar"/> + +<owl:Class rdf:ID="wedge"/> + +<owl:Class rdf:about="&owl;Thing"/> + +<owl:ObjectProperty rdf:ID="hasParallelpipe"/> + +<owl:ObjectProperty rdf:ID="hasPillar"/> + +<owl:ObjectProperty rdf:ID="leftof"/> + +<owl:ObjectProperty rdf:ID="supports"/> + +<owl:ObjectProperty rdf:ID="touches"/> + +</rdf:RDF> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |