generation to examplify ActivityInvolvement
authorStian Soiland-Reyes <soiland-reyes@cs.manchester.ac.uk>
Wed, 25 Apr 2012 15:27:04 +0100
changeset 2535 500a16d4fdd9
parent 2534 ae2fd4f4f232
child 2536 10f7a3e6ea41
generation to examplify ActivityInvolvement
examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_ActivityInvolvement.ttl
examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedGeneration.ttl
examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_wasGeneratedBy.ttl
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_ActivityInvolvement.ttl	Wed Apr 25 15:16:48 2012 +0100
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_ActivityInvolvement.ttl	Wed Apr 25 15:27:04 2012 +0100
@@ -4,4 +4,12 @@
 @prefix prov: <http://www.w3.org/ns/prov#> .
 @prefix :     <http://example.com/> .
 
-# TODO
+:bar_chart
+    prov:wasGeneratedBy :illustrating
+    prov:qualifiedGeneration :making-bar-chart .
+
+:making-bar-chart
+    a prov:Generation, prov:ActivityInvolvement ;
+    prov:activity :illustrating ;
+    rdfs:comment "Ended up with bar chart as line chart looked ugly."@en .
+
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedGeneration.ttl	Wed Apr 25 15:16:48 2012 +0100
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedGeneration.ttl	Wed Apr 25 15:27:04 2012 +0100
@@ -4,4 +4,11 @@
 @prefix prov: <http://www.w3.org/ns/prov#> .
 @prefix :     <http://example.com/> .
 
-# TODO
+:bar_chart
+    a prov:Entity;
+    prov:wasGeneratedBy :illustrating
+    prov:qualifiedGeneration [
+        a prov:Generation ;
+        prov:activity :illustrating ;
+        rdfs:comment "Ended up with bar chart as line chart looked ugly."@en .
+    ] .   
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_wasGeneratedBy.ttl	Wed Apr 25 15:16:48 2012 +0100
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_wasGeneratedBy.ttl	Wed Apr 25 15:27:04 2012 +0100
@@ -2,9 +2,8 @@
 @prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .
 @prefix owl:  <http://www.w3.org/2002/07/owl#> .
 @prefix prov: <http://www.w3.org/ns/prov#> .
-@prefix ex:   <http://example.com/> .
+@prefix :   <http://example.com/> .
 
-ex:bar_chart
-   a prov:Entity;
-   prov:wasGeneratedBy ex:illustrationActivity;
-.   
+:bar_chart
+   a prov:Entity ;
+   prov:wasGeneratedBy :illustrating .