Fixed editorial issues that Ivan has detected.
--- a/dc-note/Overview.html Tue Oct 23 14:42:11 2012 -0400
+++ b/dc-note/Overview.html Wed Oct 24 15:52:05 2012 +0200
@@ -637,6 +637,8 @@
prefix is used for the terms.
Consider the following example for a metadata record:
+</p><p>
+<a href="#example1">Example 1</a>: a simple metadata record:
<pre class="example" id="example1">
ex:doc1 dct:title "A mapping from Dublin Core..." ;
dct:creator ex:kai, ex:daniel, ex:simon, ex:michael ;
@@ -795,7 +797,7 @@
into the different characteristics of both data models (in particular it explains PROV from a Dublin Core point of view).
Second, such a mapping can be used to extract PROV data from the huge amount of Dublin Core data that is available on
the Web today. Third, it can translate PROV data to Dublin Core and make it accessible for applications that
- understand Dublin Core. And not least, it can lower the barrier to adopt PROV, as simple Dublin Core statements can be
+ understand Dublin Core. Last, but not least, it can lower the barrier to adopt PROV, as simple Dublin Core statements can be
used as starting point to generate PROV data. </p>
<div id="basic" class="section">
<h3>2.1 Basic considerations </h3>
@@ -846,7 +848,8 @@
<div id = "figure_mapping_example" class="figure" style="text-align: center;">
<img src="img/example1.png"></img>
<div style="text-align: center;">
- <a href="#figure_mapping_example">Figure 1</a>. A mapping example creating blank nodes for each state of the resource.
+ <a href="#figure_mapping_example">Figure 1</a>. A mapping example creating blank nodes for each state of the resource. In PROV entities are represented
+with circles, activities with rectangles and agents with pentagons.
</div>
</div>
</p><p>
@@ -889,7 +892,7 @@
<!--Direct mappings can particularly be provided for classes and the “shortcuts”, i.e. the direct relationships in PROV between
an entity and an agent or an entity and a date.-->
The direct mappings provide basic interoperability using the integration mechanisms of RDF. By means
- of RDFS-reasoning, any PROV application can at least make some sense from Dublin Core data. The direct mappings also
+ of OWL 2 RL reasoning, any PROV application can at least make some sense from Dublin Core data. The direct mappings also
contribute to the formal definition of the vocabularies by translating them to PROV.</p>
<p>Dublin Core, while less complex from a modeling perspective,
is more specific about the type of the activity taking place. PROV provides general attribution, and
@@ -1001,10 +1004,10 @@
<td><b>dct:dateAccepted</b></td>
<td>rdfs:subPropertyOf</td>
<td>prov:generatedAtTime</td>
- <td>The rationale is similar to the previous 2 properties: the version of the resource which was accepted could be different from the created or issued one.</td>
+ <td>The rationale is similar to the previous two properties: the version of the resource which was accepted could be different from the created or issued one.</td>
</tr>
<tr>
- <td><b>dct:dateCopyRighted</b></td>
+ <td><b>dct:dateCopyrighted</b></td>
<td>rdfs:subPropertyOf</td>
<td>prov:generatedAtTime</td>
<td>See <code>dct:dateAccepted</code></td>
@@ -1025,13 +1028,13 @@
</table>
</div>
With the direct mapping, a metadata record such as <a href="#example1">example 1</a> will infer that
-the resource was <code>prov:generatedAtTime</code> at two different times. Although this may seem inconsistent, it is supported by PROV and it is due the difference
+the resource was <code>prov:generatedAtTime</code> at two different times. Although this may seem inconsistent, it is supported by PROV and it is due to the difference
between Dublin Core and PROV resources: while the former conflates more than one version or "state" of the resource in a single entity, the latter
-proposes to separate all of them. Thus, the mapping would produce provenance that would comply with the current definition of entity but
-it would not comply with all the PROV constraints [<a href="#bib-Constraints">PROV_CONSTRAINTS]</a>.
+proposes to separate all of them. Thus, the mapping produces provenance that complies with the current definition of entity but
+it does not comply with all the PROV constraints [<a href="#bib-Constraints">PROV_CONSTRAINTS]</a>.
</p>
<p>
-Some properties have been found to be superproperties of certain prov concepts. The summary can be seen below in <a href="#list_of_direct_mappings2">Table 4</a>:
+Some properties have been found to be superproperties of certain prov concepts. These can be seen below in <a href="#list_of_direct_mappings2">Table 4</a>:
<!-- SHOULD ADD THIS FOR EACH
<pre rel="prov:wasQuotedFrom" resource="http://dvcs.w3.org/hg/prov/raw-file/tip/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedAttribution.ttl"
-->
@@ -1276,20 +1279,20 @@
<h5 id="term_created"><span class="secno">2.5.2.1 </span>dct:created</h5>
</p><p><pre class="code">
CONSTRUCT{
- ?document a prov:Entity .
+ ?document a prov:Entity .
- _:activity a prov:Activity, prov:CreationActivity ;
+ _:activity a prov:Activity, prov:CreationActivity ;
# The “output”
- _:created_entity a prov:Entity ;
- prov:specializationOf ?document ;
- prov:wasGeneratedBy _:activity ;
- prov:wasGeneratedAtTime ?date;
- prov:qualifiedGeneration [
- a prov:Generation ;
- prov:atTime ?date ;
- prov:activity _:activity .
- ] .
+ _:created_entity a prov:Entity ;
+ prov:specializationOf ?document ;
+ prov:wasGeneratedBy _:activity ;
+ prov:wasGeneratedAtTime ?date;
+ prov:qualifiedGeneration [
+ a prov:Generation ;
+ prov:atTime ?date ;
+ prov:activity _:activity .
+ ] .
} WHERE {
?document dct:created ?date.
}
@@ -1297,26 +1300,26 @@
<h5 id="term_issued"><span class="secno">2.5.2.2 </span>dct:issued</h5>
<p><pre class="code">
CONSTRUCT{
- ?document a prov:Entity .
+ ?document a prov:Entity .
- _:activity a prov:Activity, prov:PublicationActivity ;
- prov:used _:used_entity .
+ _:activity a prov:Activity, prov:PublicationActivity ;
+ prov:used _:used_entity .
# The “input”
- _:used_entity a prov:Entity .
- prov:specializationOf ?document .
+ _:used_entity a prov:Entity .
+ prov:specializationOf ?document .
# The “output”
- _:iss_entity a prov:Entity ;
- prov:specializationOf ?document ;
- prov:wasGeneratedBy _:activity ;
- prov:wasGeneratedAtTime ?date;
- prov:wasDerivedFrom _:used_entity ;
- prov:qualifiedGeneration [
- a prov:Generation ;
- prov:atTime ?date ;
- prov:activity _:activity .
- ] .
+ _:iss_entity a prov:Entity ;
+ prov:specializationOf ?document ;
+ prov:wasGeneratedBy _:activity ;
+ prov:wasGeneratedAtTime ?date;
+ prov:wasDerivedFrom _:used_entity ;
+ prov:qualifiedGeneration [
+ a prov:Generation ;
+ prov:atTime ?date ;
+ prov:activity _:activity .
+ ] .
} WHERE {
?document dct:issued ?date.
}
@@ -1327,26 +1330,26 @@
As seen with the previous terms, most entity/date properties will have a similar structure.
</p><p><pre class="code">
CONSTRUCT{
- ?document a prov:Entity .
+ ?document a prov:Entity .
- _:activity a prov:Activity, prov:ModificationActivity ;
- prov:used _:used_entity .
+ _:activity a prov:Activity, prov:ModificationActivity ;
+ prov:used _:used_entity .
# The “input”
- _:used_entity a prov:Entity .
- prov:specializationOf ?document .
+ _:used_entity a prov:Entity .
+ prov:specializationOf ?document .
# The “output”
- _:modified_entity a prov:Entity ;
- prov:specializationOf ?document ;
- prov:wasGeneratedBy _:activity ;
- prov:wasGeneratedAtTime ?date;
- prov:wasDerivedFrom _:used_entity ;
- prov:qualifiedGeneration [
- a prov:Generation ;
- prov:atTime ?date ;
- prov:activity _:activity .
- ] .
+ _:modified_entity a prov:Entity ;
+ prov:specializationOf ?document ;
+ prov:wasGeneratedBy _:activity ;
+ prov:wasGeneratedAtTime ?date;
+ prov:wasDerivedFrom _:used_entity ;
+ prov:qualifiedGeneration [
+ a prov:Generation ;
+ prov:atTime ?date ;
+ prov:activity _:activity .
+ ] .
} WHERE {
?document dct:modified ?date.
}
@@ -1355,26 +1358,26 @@
<h5 id="term_dateAccepted"><span class="secno">2.5.2.4 </span>dct:dateAccepted</h5>
</p><p><pre class="code">
CONSTRUCT{
- ?document a prov:Entity .
+ ?document a prov:Entity .
- _:activity a prov:Activity, prov:AcceptanceActivity ;
- prov:used _:used_entity .
+ _:activity a prov:Activity, prov:AcceptanceActivity ;
+ prov:used _:used_entity .
# The “input”
- _:used_entity a prov:Entity .
- prov:specializationOf ?document .
+ _:used_entity a prov:Entity .
+ prov:specializationOf ?document .
# The “output”
- _:accepted_entity a prov:Entity ;
- prov:specializationOf ?document ;
- prov:wasGeneratedBy _:activity ;
- prov:wasGeneratedAtTime ?date;
- prov:wasDerivedFrom _:used_entity ;
- prov:qualifiedGeneration [
- a prov:Generation ;
- prov:atTime ?date ;
- prov:activity _:activity .
- ] .
+ _:accepted_entity a prov:Entity ;
+ prov:specializationOf ?document ;
+ prov:wasGeneratedBy _:activity ;
+ prov:wasGeneratedAtTime ?date;
+ prov:wasDerivedFrom _:used_entity ;
+ prov:qualifiedGeneration [
+ a prov:Generation ;
+ prov:atTime ?date ;
+ prov:activity _:activity .
+ ] .
} WHERE {
?document dct:dateAccepted ?date.
}
@@ -1383,26 +1386,26 @@
<h5 id="term_dateCopyRighted"><span class="secno">2.5.2.5 </span>dct:dateCopyrighted</h5>
<p><pre class="code">
CONSTRUCT{
- ?document a prov:Entity .
+ ?document a prov:Entity .
- _:activity a prov:Activity, prov:CopyrightingActivity ;
- prov:used _:used_entity .
+ _:activity a prov:Activity, prov:CopyrightingActivity ;
+ prov:used _:used_entity .
# The “input”
- _:used_entity a prov:Entity .
- prov:specializationOf ?document .
+ _:used_entity a prov:Entity .
+ prov:specializationOf ?document .
# The “output”
- _:copyrighted_entity a prov:Entity ;
- prov:specializationOf ?document ;
- prov:wasGeneratedBy _:activity ;
- prov:wasGeneratedAtTime ?date;
- prov:wasDerivedFrom _:used_entity ;
- prov:qualifiedGeneration [
- a prov:Generation ;
- prov:atTime ?date ;
- prov:activity _:activity .
- ] .
+ _:copyrighted_entity a prov:Entity ;
+ prov:specializationOf ?document ;
+ prov:wasGeneratedBy _:activity ;
+ prov:wasGeneratedAtTime ?date;
+ prov:wasDerivedFrom _:used_entity ;
+ prov:qualifiedGeneration [
+ a prov:Generation ;
+ prov:atTime ?date ;
+ prov:activity _:activity .
+ ] .
} WHERE {
?document dct:dateCopyrighted ?date.
}
@@ -1410,26 +1413,26 @@
<h5 id="term_dateSubmitted"><span class="secno">2.5.2.6 </span>dct:dateSubmitted</h5>
<p><pre class="code">
CONSTRUCT{
- ?document a prov:Entity .
+ ?document a prov:Entity .
- _:activity a prov:Activity, prov:SubmissionActivity ;
- prov:used _:used_entity .
+ _:activity a prov:Activity, prov:SubmissionActivity ;
+ prov:used _:used_entity .
# The “input”
- _:used_entity a prov:Entity .
- prov:specializationOf ?document .
+ _:used_entity a prov:Entity .
+ prov:specializationOf ?document .
# The “output”
- _:submitted_entity a prov:Entity ;
- prov:specializationOf ?document ;
- prov:wasGeneratedBy _:activity ;
- prov:wasGeneratedAtTime ?date;
- prov:wasDerivedFrom _:used_entity ;
- prov:qualifiedGeneration [
- a prov:Generation ;
- prov:atTime ?date ;
- prov:activity _:activity .
- ] .
+ _:submitted_entity a prov:Entity ;
+ prov:specializationOf ?document ;
+ prov:wasGeneratedBy _:activity ;
+ prov:wasGeneratedAtTime ?date;
+ prov:wasDerivedFrom _:used_entity ;
+ prov:qualifiedGeneration [
+ a prov:Generation ;
+ prov:atTime ?date ;
+ prov:activity _:activity .
+ ] .
} WHERE {
?document dct:dateSubmitted ?date.
}
@@ -1542,26 +1545,26 @@
<p>The example below shows how to conflate the blank nodes for <code>dct:creator</code> and <code>dct:created</code> properties:
<pre class="code">
CONSTRUCT{
- ?document a prov:Entity .
+ ?document a prov:Entity .
- _:activity a prov:Activity, prov:CreationActivity.
- prov:wasAssociatedWith ?agent
- prov:qualifiedAssociation [
- a prov:Association;
- prov:agent ?agent;
- prov:hadRole prov:CreatorRole .
- ]
+ _:activity a prov:Activity, prov:CreationActivity.
+ prov:wasAssociatedWith ?agent
+ prov:qualifiedAssociation [
+ a prov:Association;
+ prov:agent ?agent;
+ prov:hadRole prov:CreatorRole .
+ ] .
# The “output”
- _:created_entity a prov:Entity ;
- prov:specializationOf ?document ;
- prov:wasGeneratedBy _:activity ;
- prov:wasGeneratedAtTime ?date;
- prov:qualifiedGeneration [
- a prov:Generation ;
- prov:atTime ?date ;
- prov:activity _:activity .
- ] .
+ _:created_entity a prov:Entity ;
+ prov:specializationOf ?document ;
+ prov:wasGeneratedBy _:activity ;
+ prov:wasGeneratedAtTime ?date;
+ prov:qualifiedGeneration [
+ a prov:Generation ;
+ prov:atTime ?date ;
+ prov:activity _:activity .
+ ] .
} WHERE {
?document dct:creator ?agent;
dct:created ?date.
@@ -1774,8 +1777,8 @@
The mapping from PROV to Dublin Core is not part of this note.
It can be questioned, if a mapping without additional information would provide meaningful data.
If refinements are used, the mapping would be straight forward using the inverse of the
- mapping patterns that we used. However, without such refinements, few Dublin Core statements can be inferred,
- besides some unqualified dates. Dublin Core includes provenance information, but the focus lies on
+ mapping patterns used in this document. However, without such refinements, few Dublin Core statements can be inferred,
+ apart from some unqualified dates. Dublin Core includes provenance information, but the focus lies on
the description of the resources. Pure PROV data models a provenance chain, but it contains almost
no information about the resulting resource itself. </p>
</div>
--- a/dc-note/img-files/cleanup1.graphml Tue Oct 23 14:42:11 2012 -0400
+++ b/dc-note/img-files/cleanup1.graphml Wed Oct 24 15:52:05 2012 +0200
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:y="http://www.yworks.com/xml/graphml" xmlns:yed="http://www.yworks.com/xml/yed/3" xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns http://www.yworks.com/xml/schema/graphml/1.1/ygraphml.xsd">
- <!--Created by yFiles for Java 2.8-->
+ <!--Created by yFiles for Java 2.9-->
<key for="graphml" id="d0" yfiles.type="resources"/>
<key for="port" id="d1" yfiles.type="portgraphics"/>
<key for="port" id="d2" yfiles.type="portgeometry"/>
@@ -59,7 +59,7 @@
<node id="n3">
<data key="d6">
<y:ShapeNode>
- <y:Geometry height="41.0" width="120.0" x="-223.31797235022987" y="444.052419354839"/>
+ <y:Geometry height="41.0" width="120.0" x="-256.31797235022987" y="430.71266021753934"/>
<y:Fill color="#FFFFFF" transparent="false"/>
<y:BorderStyle color="#3366FF" type="line" width="3.0"/>
<y:NodeLabel alignment="center" autoSizePolicy="node_width" fontFamily="Dialog" fontSize="13" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="19.92626953125" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="120.0" x="0.0" y="10.536865234375">ex:doc1</y:NodeLabel>
@@ -71,7 +71,7 @@
<node id="n4">
<data key="d6">
<y:ShapeNode>
- <y:Geometry height="41.0" width="120.0" x="91.49539170506876" y="412.052419354839"/>
+ <y:Geometry height="41.0" width="120.0" x="58.495391705068755" y="398.71266021753934"/>
<y:Fill color="#FFFFFF" transparent="false"/>
<y:BorderStyle color="#3366FF" type="line" width="3.0"/>
<y:NodeLabel alignment="center" autoSizePolicy="node_width" fontFamily="Dialog" fontSize="13" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="35.8525390625" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="120.0" x="0.0" y="2.57373046875">dct:Agent
@@ -84,7 +84,7 @@
<node id="n5">
<data key="d6">
<y:ShapeNode>
- <y:Geometry height="41.0" width="146.0" x="-78.91129032258056" y="902.0362903225808"/>
+ <y:Geometry height="41.0" width="146.0" x="-108.91129032258056" y="902.0362903225808"/>
<y:Fill color="#C0C0C0" transparent="false"/>
<y:BorderStyle color="#3366FF" type="line" width="3.0"/>
<y:NodeLabel alignment="center" autoSizePolicy="node_width" fontFamily="Dialog" fontSize="13" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="35.8525390625" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="146.0" x="0.0" y="2.57373046875">prov:Entity
@@ -97,20 +97,7 @@
<node id="n6">
<data key="d6">
<y:ShapeNode>
- <y:Geometry height="41.0" width="120.0" x="-65.91129032258056" y="578.7137096774196"/>
- <y:Fill color="#FFFFFF" transparent="false"/>
- <y:BorderStyle color="#3366FF" type="line" width="3.0"/>
- <y:NodeLabel alignment="center" autoSizePolicy="node_width" fontFamily="Dialog" fontSize="13" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="35.8525390625" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="120.0" x="0.0" y="2.57373046875">prov:Agent
-ex:creator</y:NodeLabel>
- <y:Shape type="ellipse"/>
- <y:DropShadow color="#B3A691" offsetX="5" offsetY="5"/>
- </y:ShapeNode>
- </data>
- </node>
- <node id="n7">
- <data key="d6">
- <y:ShapeNode>
- <y:Geometry height="59.0" width="212.6267281105993" x="-112.2246543778802" y="731.3750000000002"/>
+ <y:Geometry height="59.0" width="212.6267281105993" x="-142.2246543778802" y="731.3750000000002"/>
<y:Fill color="#C0C0C0" transparent="false"/>
<y:BorderStyle color="#3366FF" type="line" width="3.0"/>
<y:NodeLabel alignment="center" autoSizePolicy="node_width" fontFamily="Dialog" fontSize="13" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="51.77880859375" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="212.6267281105993" x="0.0" y="3.610595703125">prov:Activity,
@@ -121,10 +108,21 @@
</y:ShapeNode>
</data>
</node>
+ <node id="n7">
+ <data key="d6">
+ <y:ShapeNode>
+ <y:Geometry height="30.0" width="30.0" x="-53.911290322580555" y="460.0312086046357"/>
+ <y:Fill hasColor="false" transparent="false"/>
+ <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+ <y:NodeLabel alignment="center" autoSizePolicy="content" borderDistance="0.0" fontFamily="Dialog" fontSize="13" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="4.0" x="13.0" y="13.0"/>
+ <y:Shape type="rectangle"/>
+ </y:ShapeNode>
+ </data>
+ </node>
<node id="n8">
<data key="d6">
<y:ShapeNode>
- <y:Geometry height="30.0" width="30.0" x="-20.911290322580555" y="473.3709677419354"/>
+ <y:Geometry height="30.0" width="30.0" x="-20.911290322580555" y="566.3750000000003"/>
<y:Fill hasColor="false" transparent="false"/>
<y:BorderStyle hasColor="false" type="line" width="1.0"/>
<y:NodeLabel alignment="center" autoSizePolicy="content" borderDistance="0.0" fontFamily="Dialog" fontSize="13" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="4.0" x="13.0" y="13.0"/>
@@ -135,18 +133,7 @@
<node id="n9">
<data key="d6">
<y:ShapeNode>
- <y:Geometry height="30.0" width="30.0" x="-20.911290322580555" y="566.3750000000003"/>
- <y:Fill hasColor="false" transparent="false"/>
- <y:BorderStyle hasColor="false" type="line" width="1.0"/>
- <y:NodeLabel alignment="center" autoSizePolicy="content" borderDistance="0.0" fontFamily="Dialog" fontSize="13" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="4.0" x="13.0" y="13.0"/>
- <y:Shape type="rectangle"/>
- </y:ShapeNode>
- </data>
- </node>
- <node id="n10">
- <data key="d6">
- <y:ShapeNode>
- <y:Geometry height="41.0" width="120.0" x="91.49539170506876" y="483.052419354839"/>
+ <y:Geometry height="41.0" width="120.0" x="58.495391705068755" y="469.71266021753934"/>
<y:Fill color="#FFFFFF" transparent="false"/>
<y:BorderStyle color="#3366FF" type="line" width="3.0"/>
<y:NodeLabel alignment="center" autoSizePolicy="node_width" fontFamily="Dialog" fontSize="13" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="19.92626953125" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="120.0" x="0.0" y="10.536865234375">ex:dateCreation</y:NodeLabel>
@@ -155,7 +142,7 @@
</y:ShapeNode>
</data>
</node>
- <node id="n11">
+ <node id="n10">
<data key="d6">
<y:ShapeNode>
<y:Geometry height="41.0" width="120.0" x="228.02880184331838" y="902.0362903225808"/>
@@ -168,7 +155,7 @@
</y:ShapeNode>
</data>
</node>
- <node id="n12">
+ <node id="n11">
<data key="d6">
<y:ShapeNode>
<y:Geometry height="41.0" width="120.0" x="228.02880184331838" y="740.3750000000002"/>
@@ -180,7 +167,7 @@
</y:ShapeNode>
</data>
</node>
- <node id="n13">
+ <node id="n12">
<data key="d6">
<y:ShapeNode>
<y:Geometry height="35.0" width="127.62672811059929" x="100.40207373271909" y="650.7137096774196"/>
@@ -193,7 +180,7 @@
</y:ShapeNode>
</data>
</node>
- <node id="n14">
+ <node id="n13">
<data key="d6">
<y:ShapeNode>
<y:Geometry height="35.0" width="127.62672811059929" x="100.40207373271909" y="828.7056451612905"/>
@@ -206,7 +193,7 @@
</y:ShapeNode>
</data>
</node>
- <node id="n15">
+ <node id="n14">
<data key="d6">
<y:ShapeNode>
<y:Geometry height="41.0" width="120.0" x="228.02880184331838" y="578.7137096774196"/>
@@ -219,17 +206,41 @@
</y:ShapeNode>
</data>
</node>
+ <node id="n15">
+ <data key="d6">
+ <y:ShapeNode>
+ <y:Geometry height="35.796720787701815" width="96.0" x="-86.91129032258056" y="595.3264240000003"/>
+ <y:Fill color="#FFFFFF" transparent="false"/>
+ <y:BorderStyle color="#3366FF" type="line" width="3.0"/>
+ <y:NodeLabel alignment="center" autoSizePolicy="node_width" fontFamily="Dialog" fontSize="13" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="35.8525390625" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="96.0" x="0.0" y="-0.027909137399092288">dct:Agent
+ex:creator</y:NodeLabel>
+ <y:Shape type="rectangle"/>
+ <y:DropShadow color="#B3A691" offsetX="5" offsetY="5"/>
+ </y:ShapeNode>
+ </data>
+ </node>
+ <node id="n16">
+ <data key="d6">
+ <y:ShapeNode>
+ <y:Geometry height="27.902848000000006" width="96.0" x="-86.91129032258056" y="567.4235760000004"/>
+ <y:Fill color="#FFFFFF" transparent="false"/>
+ <y:BorderStyle color="#3366FF" type="line" width="3.0"/>
+ <y:NodeLabel alignment="center" autoSizePolicy="node_width" fontFamily="Dialog" fontSize="13" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="96.0" x="0.0" y="11.951423999999975"/>
+ <y:Shape type="triangle"/>
+ </y:ShapeNode>
+ </data>
+ </node>
<edge id="e0" source="n3" target="n4">
<data key="d10">
<y:BezierEdge>
<y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
<y:LineStyle color="#000000" type="line" width="1.0"/>
<y:Arrows source="none" target="standard"/>
- <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" bottomInset="5" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="24.701171875" leftInset="5" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" rightInset="5" textColor="#000000" topInset="5" visible="true" width="66.689453125" x="66.55303462859132" y="-22.504953692035997">dct:creator</y:EdgeLabel>
+ <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" bottomInset="5" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="24.701171875" leftInset="5" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" rightInset="5" textColor="#000000" topInset="5" visible="true" width="66.689453125" x="66.55303462859132" y="-22.504960632070038">dct:creator</y:EdgeLabel>
</y:BezierEdge>
</data>
</edge>
- <edge id="e1" source="n5" target="n6">
+ <edge id="e1" source="n5" target="n15">
<data key="d10">
<y:BezierEdge>
<y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0">
@@ -237,107 +248,107 @@
</y:Path>
<y:LineStyle color="#000000" type="line" width="1.0"/>
<y:Arrows source="none" target="standard"/>
- <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" bottomInset="5" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="24.701171875" leftInset="5" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" rightInset="5" textColor="#000000" topInset="5" visible="true" width="123.384765625" x="-169.9648263957654" y="-91.34336606917816">prov:wasAttributedTo</y:EdgeLabel>
+ <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" bottomInset="5" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="24.701171875" leftInset="5" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" rightInset="5" textColor="#000000" topInset="5" visible="true" width="123.384765625" x="-155.32394585977983" y="-91.02891294417816">prov:wasAttributedTo</y:EdgeLabel>
</y:BezierEdge>
</data>
</edge>
- <edge id="e2" source="n7" target="n6">
+ <edge id="e2" source="n6" target="n15">
<data key="d10">
<y:BezierEdge>
<y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
<y:LineStyle color="#000000" type="line" width="1.0"/>
<y:Arrows source="none" target="standard"/>
- <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" bottomInset="5" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="24.701171875" leftInset="5" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" rightInset="5" textColor="#000000" topInset="5" visible="true" width="140.716796875" x="-70.35839859131835" y="-68.18123109879002">prov:wasAssociatedWith</y:EdgeLabel>
+ <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" bottomInset="5" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="24.701171875" leftInset="5" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" rightInset="5" textColor="#000000" topInset="5" visible="true" width="140.716796875" x="-71.37687035069172" y="-62.47651354364882">prov:wasAssociatedWith</y:EdgeLabel>
</y:BezierEdge>
</data>
</edge>
- <edge id="e3" source="n8" target="n9">
+ <edge id="e3" source="n7" target="n8">
<data key="d10">
<y:BezierEdge>
- <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+ <y:Path sx="0.0" sy="0.0" tx="-33.0" ty="-18.87500000000034"/>
<y:LineStyle color="#000000" type="line" width="5.0"/>
<y:Arrows source="none" target="standard"/>
</y:BezierEdge>
</data>
</edge>
- <edge id="e4" source="n5" target="n7">
- <data key="d10">
- <y:PolyLineEdge>
- <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
- <y:LineStyle color="#000000" type="line" width="1.0"/>
- <y:Arrows source="none" target="standard"/>
- <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" bottomInset="5" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="24.701171875" leftInset="5" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" rightInset="5" textColor="#000000" topInset="5" visible="true" width="128.728515625" x="-64.36425796631835" y="-68.18125669417827">prov:wasGeneratedBy</y:EdgeLabel>
- <y:BendStyle smoothed="false"/>
- </y:PolyLineEdge>
- </data>
- </edge>
- <edge id="e5" source="n3" target="n10">
+ <edge id="e4" source="n5" target="n6">
<data key="d10">
<y:PolyLineEdge>
<y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
<y:LineStyle color="#000000" type="line" width="1.0"/>
<y:Arrows source="none" target="standard"/>
- <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" bottomInset="5" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="24.701171875" leftInset="5" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" rightInset="5" textColor="#000000" topInset="5" visible="true" width="69.3671875" x="66.31644710417726" y="0.16158073179212806">dct:created</y:EdgeLabel>
+ <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" bottomInset="5" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="24.701171875" leftInset="5" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" rightInset="5" textColor="#000000" topInset="5" visible="true" width="128.728515625" x="-64.36425891999266" y="-68.18125669417827">prov:wasGeneratedBy</y:EdgeLabel>
<y:BendStyle smoothed="false"/>
</y:PolyLineEdge>
</data>
</edge>
- <edge id="e6" source="n5" target="n11">
- <data key="d10">
- <y:PolyLineEdge>
- <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
- <y:LineStyle color="#000000" type="line" width="1.0"/>
- <y:Arrows source="none" target="standard"/>
- <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" bottomInset="5" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="24.701171875" leftInset="5" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" rightInset="5" textColor="#000000" topInset="5" visible="true" width="121.38671875" x="19.776689415154067" y="-12.35061153288791">prov:specializationOf</y:EdgeLabel>
- <y:BendStyle smoothed="false"/>
- </y:PolyLineEdge>
- </data>
- </edge>
- <edge id="e7" source="n7" target="n13">
+ <edge id="e5" source="n3" target="n9">
<data key="d10">
<y:PolyLineEdge>
<y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
<y:LineStyle color="#000000" type="line" width="1.0"/>
<y:Arrows source="none" target="standard"/>
- <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="18.701171875" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="136.744140625" x="-26.454858056839868" y="-32.18123109879002">prov:qualifiedAssociation</y:EdgeLabel>
+ <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" bottomInset="5" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="24.701171875" leftInset="5" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" rightInset="5" textColor="#000000" topInset="5" visible="true" width="69.3671875" x="66.31644710417726" y="0.16160430933621228">dct:created</y:EdgeLabel>
<y:BendStyle smoothed="false"/>
</y:PolyLineEdge>
</data>
</edge>
- <edge id="e8" source="n13" target="n6">
+ <edge id="e6" source="n5" target="n10">
<data key="d10">
<y:PolyLineEdge>
<y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
<y:LineStyle color="#000000" type="line" width="1.0"/>
<y:Arrows source="none" target="standard"/>
- <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="18.701171875" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="60.70703125" x="-70.52303517669681" y="-25.64251571756347">prov:agent</y:EdgeLabel>
+ <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" bottomInset="5" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="24.701171875" leftInset="5" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" rightInset="5" textColor="#000000" topInset="5" visible="true" width="121.38671875" x="34.7766856004568" y="-12.35061153288791">prov:specializationOf</y:EdgeLabel>
<y:BendStyle smoothed="false"/>
</y:PolyLineEdge>
</data>
</edge>
- <edge id="e9" source="n5" target="n14">
+ <edge id="e7" source="n6" target="n12">
<data key="d10">
<y:PolyLineEdge>
<y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
<y:LineStyle color="#000000" type="line" width="1.0"/>
<y:Arrows source="none" target="standard"/>
- <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="18.701171875" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="134.751953125" x="-17.699332742103635" y="-31.63898098853315">prov:qualifiedGeneration</y:EdgeLabel>
+ <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="18.701171875" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="136.744140625" x="-19.06321407450787" y="-32.18123109879002">prov:qualifiedAssociation</y:EdgeLabel>
<y:BendStyle smoothed="false"/>
</y:PolyLineEdge>
</data>
</edge>
- <edge id="e10" source="n14" target="n7">
+ <edge id="e8" source="n12" target="n15">
<data key="d10">
<y:PolyLineEdge>
<y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
<y:LineStyle color="#000000" type="line" width="1.0"/>
<y:Arrows source="none" target="standard"/>
- <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="18.701171875" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="67.3515625" x="-71.84593255806756" y="-28.495627126385898">prov:activity</y:EdgeLabel>
+ <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="18.701171875" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="60.70703125" x="-77.75981917139558" y="-22.184068297275644">prov:agent</y:EdgeLabel>
<y:BendStyle smoothed="false"/>
</y:PolyLineEdge>
</data>
</edge>
- <edge id="e11" source="n5" target="n12">
+ <edge id="e9" source="n5" target="n13">
+ <data key="d10">
+ <y:PolyLineEdge>
+ <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+ <y:LineStyle color="#000000" type="line" width="1.0"/>
+ <y:Arrows source="none" target="standard"/>
+ <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="18.701171875" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="134.751953125" x="-6.6615863821832875" y="-32.50775540259565">prov:qualifiedGeneration</y:EdgeLabel>
+ <y:BendStyle smoothed="false"/>
+ </y:PolyLineEdge>
+ </data>
+ </edge>
+ <edge id="e10" source="n13" target="n6">
+ <data key="d10">
+ <y:PolyLineEdge>
+ <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+ <y:LineStyle color="#000000" type="line" width="1.0"/>
+ <y:Arrows source="none" target="standard"/>
+ <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="18.701171875" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="67.3515625" x="-78.60124482955348" y="-28.506064138104648">prov:activity</y:EdgeLabel>
+ <y:BendStyle smoothed="false"/>
+ </y:PolyLineEdge>
+ </data>
+ </edge>
+ <edge id="e11" source="n5" target="n11">
<data key="d10">
<y:PolyLineEdge>
<y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0">
@@ -345,12 +356,12 @@
</y:Path>
<y:LineStyle color="#000000" type="line" width="1.0"/>
<y:Arrows source="none" target="standard"/>
- <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="18.701171875" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="122.728515625" x="38.05959836898316" y="-21.031116376948262">prov:generatedAtTime</y:EdgeLabel>
+ <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="18.701171875" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" textColor="#000000" visible="true" width="122.728515625" x="52.02383939681519" y="-21.25152050773113">prov:generatedAtTime</y:EdgeLabel>
<y:BendStyle smoothed="true"/>
</y:PolyLineEdge>
</data>
</edge>
- <edge id="e12" source="n14" target="n12">
+ <edge id="e12" source="n13" target="n11">
<data key="d10">
<y:PolyLineEdge>
<y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
@@ -361,7 +372,7 @@
</y:PolyLineEdge>
</data>
</edge>
- <edge id="e13" source="n13" target="n15">
+ <edge id="e13" source="n12" target="n14">
<data key="d10">
<y:PolyLineEdge>
<y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
--- a/dc-note/img-files/mapping-example - conflating.graphml Tue Oct 23 14:42:11 2012 -0400
+++ b/dc-note/img-files/mapping-example - conflating.graphml Wed Oct 24 15:52:05 2012 +0200
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:y="http://www.yworks.com/xml/graphml" xmlns:yed="http://www.yworks.com/xml/yed/3" xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns http://www.yworks.com/xml/schema/graphml/1.1/ygraphml.xsd">
- <!--Created by yFiles for Java 2.8-->
+ <!--Created by yFiles for Java 2.9-->
<key for="graphml" id="d0" yfiles.type="resources"/>
<key for="port" id="d1" yfiles.type="portgraphics"/>
<key for="port" id="d2" yfiles.type="portgeometry"/>
@@ -84,19 +84,6 @@
<node id="n5">
<data key="d6">
<y:ShapeNode>
- <y:Geometry height="41.0" width="120.0" x="-182.71716589861762" y="611.3750000000001"/>
- <y:Fill color="#FFFFFF" transparent="false"/>
- <y:BorderStyle color="#3366FF" type="line" width="3.0"/>
- <y:NodeLabel alignment="center" autoSizePolicy="node_width" fontFamily="Dialog" fontSize="13" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="35.8525390625" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="120.0" x="0.0" y="2.57373046875">prov:Agent
-ex:publisher</y:NodeLabel>
- <y:Shape type="ellipse"/>
- <y:DropShadow color="#B3A691" offsetX="5" offsetY="5"/>
- </y:ShapeNode>
- </data>
- </node>
- <node id="n6">
- <data key="d6">
- <y:ShapeNode>
<y:Geometry height="59.0" width="239.6267281105993" x="42.7753456221198" y="731.3750000000002"/>
<y:Fill color="#C0C0C0" transparent="false"/>
<y:BorderStyle color="#3366FF" type="line" width="3.0"/>
@@ -108,10 +95,21 @@
</y:ShapeNode>
</data>
</node>
+ <node id="n6">
+ <data key="d6">
+ <y:ShapeNode>
+ <y:Geometry height="30.0" width="30.0" x="146.08870967741944" y="502.375"/>
+ <y:Fill hasColor="false" transparent="false"/>
+ <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+ <y:NodeLabel alignment="center" autoSizePolicy="content" borderDistance="0.0" fontFamily="Dialog" fontSize="13" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="4.0" x="13.0" y="13.0"/>
+ <y:Shape type="rectangle"/>
+ </y:ShapeNode>
+ </data>
+ </node>
<node id="n7">
<data key="d6">
<y:ShapeNode>
- <y:Geometry height="30.0" width="30.0" x="146.08870967741944" y="502.375"/>
+ <y:Geometry height="30.0" width="30.0" x="146.08870967741944" y="595.379032258065"/>
<y:Fill hasColor="false" transparent="false"/>
<y:BorderStyle hasColor="false" type="line" width="1.0"/>
<y:NodeLabel alignment="center" autoSizePolicy="content" borderDistance="0.0" fontFamily="Dialog" fontSize="13" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="4.0" x="13.0" y="13.0"/>
@@ -122,17 +120,6 @@
<node id="n8">
<data key="d6">
<y:ShapeNode>
- <y:Geometry height="30.0" width="30.0" x="146.08870967741944" y="595.379032258065"/>
- <y:Fill hasColor="false" transparent="false"/>
- <y:BorderStyle hasColor="false" type="line" width="1.0"/>
- <y:NodeLabel alignment="center" autoSizePolicy="content" borderDistance="0.0" fontFamily="Dialog" fontSize="13" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="4.0" x="13.0" y="13.0"/>
- <y:Shape type="rectangle"/>
- </y:ShapeNode>
- </data>
- </node>
- <node id="n9">
- <data key="d6">
- <y:ShapeNode>
<y:Geometry height="41.0" width="153.1635944700463" x="82.08870967741944" y="611.3750000000001"/>
<y:Fill color="#FFFFFF" transparent="false"/>
<y:BorderStyle color="#3366FF" type="line" width="3.0"/>
@@ -143,6 +130,30 @@
</y:ShapeNode>
</data>
</node>
+ <node id="n9">
+ <data key="d6">
+ <y:ShapeNode>
+ <y:Geometry height="35.796720787701815" width="96.0" x="-159.71716589861762" y="613.9766396061492"/>
+ <y:Fill color="#FFFFFF" transparent="false"/>
+ <y:BorderStyle color="#3366FF" type="line" width="3.0"/>
+ <y:NodeLabel alignment="center" autoSizePolicy="node_width" fontFamily="Dialog" fontSize="13" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="35.8525390625" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="96.0" x="0.0" y="-0.027909137399092288">dct:Agent
+ex:publisher</y:NodeLabel>
+ <y:Shape type="rectangle"/>
+ <y:DropShadow color="#B3A691" offsetX="5" offsetY="5"/>
+ </y:ShapeNode>
+ </data>
+ </node>
+ <node id="n10">
+ <data key="d6">
+ <y:ShapeNode>
+ <y:Geometry height="27.902848000000006" width="96.0" x="-159.71716589861762" y="586.0737916061493"/>
+ <y:Fill color="#FFFFFF" transparent="false"/>
+ <y:BorderStyle color="#3366FF" type="line" width="3.0"/>
+ <y:NodeLabel alignment="center" autoSizePolicy="node_width" fontFamily="Dialog" fontSize="13" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="96.0" x="0.0" y="11.951423999999975"/>
+ <y:Shape type="triangle"/>
+ </y:ShapeNode>
+ </data>
+ </node>
<edge id="e0" source="n3" target="n4">
<data key="d10">
<y:BezierEdge>
@@ -153,17 +164,17 @@
</y:BezierEdge>
</data>
</edge>
- <edge id="e1" source="n6" target="n5">
+ <edge id="e1" source="n5" target="n9">
<data key="d10">
<y:BezierEdge>
<y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
<y:LineStyle color="#000000" type="line" width="1.0"/>
<y:Arrows source="none" target="standard"/>
- <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" bottomInset="5" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="24.701171875" leftInset="5" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" rightInset="5" textColor="#000000" topInset="5" visible="true" width="140.716796875" x="-157.71950218422262" y="-51.85058593749977">prov:wasAssociatedWith</y:EdgeLabel>
+ <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" bottomInset="5" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="24.701171875" leftInset="5" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" rightInset="5" textColor="#000000" topInset="5" visible="true" width="140.716796875" x="-157.28611582685625" y="-53.230772494477606">prov:wasAssociatedWith</y:EdgeLabel>
</y:BezierEdge>
</data>
</edge>
- <edge id="e2" source="n7" target="n8">
+ <edge id="e2" source="n6" target="n7">
<data key="d10">
<y:BezierEdge>
<y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
@@ -172,7 +183,7 @@
</y:BezierEdge>
</data>
</edge>
- <edge id="e3" source="n9" target="n6">
+ <edge id="e3" source="n8" target="n5">
<data key="d10">
<y:ArcEdge>
<y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0">
@@ -185,7 +196,7 @@
</y:ArcEdge>
</data>
</edge>
- <edge id="e4" source="n6" target="n9">
+ <edge id="e4" source="n5" target="n8">
<data key="d10">
<y:ArcEdge>
<y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0">
@@ -198,7 +209,7 @@
</y:ArcEdge>
</data>
</edge>
- <edge id="e5" source="n9" target="n9">
+ <edge id="e5" source="n8" target="n8">
<data key="d10">
<y:ArcEdge>
<y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0">
@@ -210,7 +221,7 @@
</y:ArcEdge>
</data>
</edge>
- <edge id="e6" source="n9" target="n9">
+ <edge id="e6" source="n8" target="n8">
<data key="d10">
<y:ArcEdge>
<y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0">
@@ -222,7 +233,7 @@
</y:ArcEdge>
</data>
</edge>
- <edge id="e7" source="n9" target="n9">
+ <edge id="e7" source="n8" target="n8">
<data key="d10">
<y:ArcEdge>
<y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0">
@@ -234,8 +245,7 @@
</y:ArcEdge>
</data>
</edge>
- <edge id="e8" source="n9" target="n5">
- <data key="d9"/>
+ <edge id="e8" source="n8" target="n9">
<data key="d10">
<y:PolyLineEdge>
<y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
--- a/dc-note/img-files/mapping-example - dani.graphml Tue Oct 23 14:42:11 2012 -0400
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,277 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:y="http://www.yworks.com/xml/graphml" xmlns:yed="http://www.yworks.com/xml/yed/3" xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns http://www.yworks.com/xml/schema/graphml/1.1/ygraphml.xsd">
- <!--Created by yFiles for Java 2.8-->
- <key for="graphml" id="d0" yfiles.type="resources"/>
- <key for="port" id="d1" yfiles.type="portgraphics"/>
- <key for="port" id="d2" yfiles.type="portgeometry"/>
- <key for="port" id="d3" yfiles.type="portuserdata"/>
- <key attr.name="url" attr.type="string" for="node" id="d4"/>
- <key attr.name="description" attr.type="string" for="node" id="d5"/>
- <key for="node" id="d6" yfiles.type="nodegraphics"/>
- <key attr.name="Description" attr.type="string" for="graph" id="d7"/>
- <key attr.name="url" attr.type="string" for="edge" id="d8"/>
- <key attr.name="description" attr.type="string" for="edge" id="d9"/>
- <key for="edge" id="d10" yfiles.type="edgegraphics"/>
- <graph edgedefault="directed" id="G">
- <data key="d7"/>
- <node id="n0">
- <data key="d4"/>
- <data key="d6">
- <y:GenericNode configuration="com.yworks.bpmn.Artifact.withShadow">
- <y:Geometry height="164.10822652164057" width="153.1635944700463" x="462.3652073732717" y="445.173709319825"/>
- <y:Fill color="#FFFFFF" transparent="false"/>
- <y:BorderStyle hasColor="false" type="line" width="3.0"/>
- <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="internal" modelPosition="b" textColor="#000000" visible="true" width="4.0" x="74.58179723502315" y="156.10822652164063"/>
- <y:StyleProperties>
- <y:Property class="com.yworks.yfiles.bpmn.view.BPMNTypeEnum" name="com.yworks.bpmn.type" value="ARTIFACT_TYPE_ANNOTATION"/>
- <y:Property name="com.yworks.bpmn.icon.line.color"/>
- <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.fill" value="#ffffff"/>
- <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.fill2" value="#ffffff"/>
- </y:StyleProperties>
- </y:GenericNode>
- </data>
- </node>
- <node id="n1">
- <data key="d6">
- <y:ShapeNode>
- <y:Geometry height="48.0" width="115.15668202764982" x="478.94700460829483" y="454.8491401425408"/>
- <y:Fill color="#FFFFFF" transparent="false"/>
- <y:BorderStyle color="#3366FF" type="line" width="3.0"/>
- <y:NodeLabel alignment="center" autoSizePolicy="node_width" fontFamily="Dialog" fontSize="13" fontStyle="bold" hasBackgroundColor="false" hasLineColor="false" height="35.8525390625" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="115.15668202764982" x="0.0" y="6.07373046875">Identified
-Resources</y:NodeLabel>
- <y:Shape type="ellipse"/>
- <y:DropShadow color="#B3A691" offsetX="5" offsetY="5"/>
- </y:ShapeNode>
- </data>
- </node>
- <node id="n2">
- <data key="d6">
- <y:ShapeNode>
- <y:Geometry height="48.0" width="115.15668202764982" x="478.94700460829483" y="544.1747587797053"/>
- <y:Fill color="#C0C0C0" transparent="false"/>
- <y:BorderStyle color="#3366FF" type="line" width="3.0"/>
- <y:NodeLabel alignment="center" autoSizePolicy="node_width" fontFamily="Dialog" fontSize="13" fontStyle="bold" hasBackgroundColor="false" hasLineColor="false" height="19.92626953125" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="115.15668202764982" x="0.0" y="14.036865234375">Blank nodes</y:NodeLabel>
- <y:Shape type="ellipse"/>
- <y:DropShadow color="#B3A691" offsetX="5" offsetY="5"/>
- </y:ShapeNode>
- </data>
- </node>
- <node id="n3">
- <data key="d6">
- <y:ShapeNode>
- <y:Geometry height="41.0" width="120.0" x="-63.34792626728142" y="474.052419354839"/>
- <y:Fill color="#FFFFFF" transparent="false"/>
- <y:BorderStyle color="#3366FF" type="line" width="3.0"/>
- <y:NodeLabel alignment="center" autoSizePolicy="node_width" fontFamily="Dialog" fontSize="13" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="19.92626953125" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="120.0" x="0.0" y="10.536865234375">ex:doc1</y:NodeLabel>
- <y:Shape type="ellipse"/>
- <y:DropShadow color="#B3A691" offsetX="5" offsetY="5"/>
- </y:ShapeNode>
- </data>
- </node>
- <node id="n4">
- <data key="d6">
- <y:ShapeNode>
- <y:Geometry height="41.0" width="120.0" x="258.49539170506876" y="474.052419354839"/>
- <y:Fill color="#FFFFFF" transparent="false"/>
- <y:BorderStyle color="#3366FF" type="line" width="3.0"/>
- <y:NodeLabel alignment="center" autoSizePolicy="node_width" fontFamily="Dialog" fontSize="13" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="35.8525390625" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="120.0" x="0.0" y="2.57373046875">dct:Agent
-ex:publisher</y:NodeLabel>
- <y:Shape type="ellipse"/>
- <y:DropShadow color="#B3A691" offsetX="5" offsetY="5"/>
- </y:ShapeNode>
- </data>
- </node>
- <node id="n5">
- <data key="d6">
- <y:ShapeNode>
- <y:Geometry height="41.0" width="120.0" x="-210.15668202764982" y="726.3750000000002"/>
- <y:Fill color="#FFFFFF" transparent="false"/>
- <y:BorderStyle color="#3366FF" type="line" width="3.0"/>
- <y:NodeLabel alignment="center" autoSizePolicy="node_width" fontFamily="Dialog" fontSize="13" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="35.8525390625" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="120.0" x="0.0" y="2.57373046875">prov:Entity
-ex:doc1</y:NodeLabel>
- <y:Shape type="ellipse"/>
- <y:DropShadow color="#B3A691" offsetX="5" offsetY="5"/>
- </y:ShapeNode>
- </data>
- </node>
- <node id="n6">
- <data key="d6">
- <y:ShapeNode>
- <y:Geometry height="41.0" width="120.0" x="102.28283410138238" y="604.3750000000002"/>
- <y:Fill color="#C0C0C0" transparent="false"/>
- <y:BorderStyle color="#3366FF" type="line" width="3.0"/>
- <y:NodeLabel alignment="center" autoSizePolicy="node_width" fontFamily="Dialog" fontSize="13" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="35.8525390625" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="120.0" x="0.0" y="2.57373046875">prov:Entity
-_:used_entity</y:NodeLabel>
- <y:Shape type="ellipse"/>
- <y:DropShadow color="#B3A691" offsetX="5" offsetY="5"/>
- </y:ShapeNode>
- </data>
- </node>
- <node id="n7">
- <data key="d6">
- <y:ShapeNode>
- <y:Geometry height="50.0" width="128.0" x="98.28283410138238" y="726.3750000000002"/>
- <y:Fill color="#C0C0C0" transparent="false"/>
- <y:BorderStyle color="#3366FF" type="line" width="3.0"/>
- <y:NodeLabel alignment="center" autoSizePolicy="node_width" fontFamily="Dialog" fontSize="13" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="35.8525390625" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="128.0" x="0.0" y="7.07373046875">prov:Entity
-_:resulting_entity</y:NodeLabel>
- <y:Shape type="ellipse"/>
- <y:DropShadow color="#B3A691" offsetX="5" offsetY="5"/>
- </y:ShapeNode>
- </data>
- </node>
- <node id="n8">
- <data key="d6">
- <y:ShapeNode>
- <y:Geometry height="41.0" width="120.0" x="102.28283410138238" y="871.3750000000001"/>
- <y:Fill color="#FFFFFF" transparent="false"/>
- <y:BorderStyle color="#3366FF" type="line" width="3.0"/>
- <y:NodeLabel alignment="center" autoSizePolicy="node_width" fontFamily="Dialog" fontSize="13" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="35.8525390625" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="120.0" x="0.0" y="2.57373046875">prov:Agent
-ex:publisher</y:NodeLabel>
- <y:Shape type="ellipse"/>
- <y:DropShadow color="#B3A691" offsetX="5" offsetY="5"/>
- </y:ShapeNode>
- </data>
- </node>
- <node id="n9">
- <data key="d6">
- <y:ShapeNode>
- <y:Geometry height="59.0" width="212.6267281105993" x="421.05990783410107" y="717.3750000000002"/>
- <y:Fill color="#C0C0C0" transparent="false"/>
- <y:BorderStyle color="#3366FF" type="line" width="3.0"/>
- <y:NodeLabel alignment="center" autoSizePolicy="node_width" fontFamily="Dialog" fontSize="13" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="51.77880859375" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="212.6267281105993" x="0.0" y="3.610595703125">prov:Activity,
-prov:PublicationActivity
-_:activity</y:NodeLabel>
- <y:Shape type="rectangle"/>
- <y:DropShadow color="#B3A691" offsetX="5" offsetY="5"/>
- </y:ShapeNode>
- </data>
- </node>
- <node id="n10">
- <data key="d6">
- <y:ShapeNode>
- <y:Geometry height="30.0" width="30.0" x="146.08870967741944" y="499.3709677419354"/>
- <y:Fill hasColor="false" transparent="false"/>
- <y:BorderStyle hasColor="false" type="line" width="1.0"/>
- <y:NodeLabel alignment="center" autoSizePolicy="content" borderDistance="0.0" fontFamily="Dialog" fontSize="13" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="4.0" x="13.0" y="13.0"/>
- <y:Shape type="rectangle"/>
- </y:ShapeNode>
- </data>
- </node>
- <node id="n11">
- <data key="d6">
- <y:ShapeNode>
- <y:Geometry height="30.0" width="30.0" x="146.08870967741944" y="592.3750000000003"/>
- <y:Fill hasColor="false" transparent="false"/>
- <y:BorderStyle hasColor="false" type="line" width="1.0"/>
- <y:NodeLabel alignment="center" autoSizePolicy="content" borderDistance="0.0" fontFamily="Dialog" fontSize="13" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="4.0" x="13.0" y="13.0"/>
- <y:Shape type="rectangle"/>
- </y:ShapeNode>
- </data>
- </node>
- <edge id="e0" source="n3" target="n4">
- <data key="d10">
- <y:BezierEdge>
- <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
- <y:LineStyle color="#000000" type="line" width="1.0"/>
- <y:Arrows source="none" target="standard"/>
- <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" bottomInset="5" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="24.701171875" leftInset="5" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" rightInset="5" textColor="#000000" topInset="5" visible="true" width="78.0390625" x="61.902128562399525" y="-12.350595781879747">dct:publisher</y:EdgeLabel>
- </y:BezierEdge>
- </data>
- </edge>
- <edge id="e1" source="n7" target="n5">
- <data key="d10">
- <y:BezierEdge>
- <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
- <y:LineStyle color="#000000" type="line" width="1.0"/>
- <y:Arrows source="none" target="standard"/>
- <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" bottomInset="5" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="24.701171875" leftInset="5" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" rightInset="5" textColor="#000000" topInset="5" visible="true" width="121.38671875" x="-154.95657728344622" y="-13.708248934647372">prov:specializationOf</y:EdgeLabel>
- </y:BezierEdge>
- </data>
- </edge>
- <edge id="e2" source="n6" target="n5">
- <data key="d10">
- <y:BezierEdge>
- <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
- <y:LineStyle color="#000000" type="line" width="1.0"/>
- <y:Arrows source="none" target="standard"/>
- <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" bottomInset="5" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="24.701171875" leftInset="5" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" rightInset="5" textColor="#000000" topInset="5" visible="true" width="121.38671875" x="-177.40280531078997" y="33.22161865234398">prov:specializationOf</y:EdgeLabel>
- </y:BezierEdge>
- </data>
- </edge>
- <edge id="e3" source="n7" target="n8">
- <data key="d10">
- <y:BezierEdge>
- <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
- <y:LineStyle color="#000000" type="line" width="1.0"/>
- <y:Arrows source="none" target="standard"/>
- <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" bottomInset="5" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="24.701171875" leftInset="5" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" rightInset="5" textColor="#000000" topInset="5" visible="true" width="123.384765625" x="-61.69238562518012" y="35.14941406250023">prov:wasAttributedTo</y:EdgeLabel>
- </y:BezierEdge>
- </data>
- </edge>
- <edge id="e4" source="n5" target="n8">
- <data key="d10">
- <y:BezierEdge>
- <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
- <y:LineStyle color="#000000" type="line" width="1.0"/>
- <y:Arrows source="none" target="standard"/>
- <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" bottomInset="5" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="24.701171875" leftInset="5" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" rightInset="5" textColor="#000000" topInset="5" visible="true" width="123.384765625" x="58.95528795092878" y="43.64074707031273">prov:wasAttributedTo</y:EdgeLabel>
- </y:BezierEdge>
- </data>
- </edge>
- <edge id="e5" source="n9" target="n8">
- <data key="d10">
- <y:BezierEdge>
- <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
- <y:LineStyle color="#000000" type="line" width="1.0"/>
- <y:Arrows source="none" target="standard"/>
- <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" bottomInset="5" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="24.701171875" leftInset="5" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" rightInset="5" textColor="#000000" topInset="5" visible="true" width="140.716796875" x="-192.6903673992465" y="36.23500702444221">prov:wasAssociatedWith</y:EdgeLabel>
- </y:BezierEdge>
- </data>
- </edge>
- <edge id="e6" source="n7" target="n6">
- <data key="d10">
- <y:BezierEdge>
- <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
- <y:LineStyle color="#000000" type="line" width="1.0"/>
- <y:Arrows source="none" target="standard"/>
- <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" bottomInset="5" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="24.701171875" leftInset="5" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" rightInset="5" textColor="#000000" topInset="5" visible="true" width="127.36328125" x="-63.68164343768012" y="-52.85058593749977">prov:wasDerivedFrom</y:EdgeLabel>
- </y:BezierEdge>
- </data>
- </edge>
- <edge id="e7" source="n7" target="n9">
- <data key="d10">
- <y:BezierEdge>
- <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0">
- <y:Point x="242.5" y="746.5"/>
- </y:Path>
- <y:LineStyle color="#000000" type="line" width="1.0"/>
- <y:Arrows source="none" target="standard"/>
- <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" bottomInset="5" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="24.701171875" leftInset="5" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" rightInset="5" textColor="#000000" topInset="5" visible="true" width="128.728515625" x="37.101059874081784" y="-13.978140721976843">prov:wasGeneratedBy</y:EdgeLabel>
- </y:BezierEdge>
- </data>
- </edge>
- <edge id="e8" source="n9" target="n6">
- <data key="d10">
- <y:BezierEdge>
- <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
- <y:LineStyle color="#000000" type="line" width="1.0"/>
- <y:Arrows source="none" target="standard"/>
- <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" bottomInset="5" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="24.701171875" leftInset="5" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" rightInset="5" textColor="#000000" topInset="5" visible="true" width="62.69921875" x="-148.77143909085203" y="-51.5887102896188">prov:used</y:EdgeLabel>
- </y:BezierEdge>
- </data>
- </edge>
- <edge id="e9" source="n10" target="n11">
- <data key="d10">
- <y:BezierEdge>
- <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
- <y:LineStyle color="#000000" type="line" width="5.0"/>
- <y:Arrows source="none" target="standard"/>
- </y:BezierEdge>
- </data>
- </edge>
- </graph>
- <data key="d0">
- <y:Resources/>
- </data>
-</graphml>
--- a/dc-note/img-files/mapping-example.graphml Tue Oct 23 14:42:11 2012 -0400
+++ b/dc-note/img-files/mapping-example.graphml Wed Oct 24 15:52:05 2012 +0200
@@ -1,275 +1,288 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:y="http://www.yworks.com/xml/graphml" xmlns:yed="http://www.yworks.com/xml/yed/3" xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns http://www.yworks.com/xml/schema/graphml/1.1/ygraphml.xsd">
- <!--Created by yFiles for Java 2.8-->
- <key for="graphml" id="d0" yfiles.type="resources"/>
- <key for="port" id="d1" yfiles.type="portgraphics"/>
- <key for="port" id="d2" yfiles.type="portgeometry"/>
- <key for="port" id="d3" yfiles.type="portuserdata"/>
- <key attr.name="url" attr.type="string" for="node" id="d4"/>
- <key attr.name="description" attr.type="string" for="node" id="d5"/>
- <key for="node" id="d6" yfiles.type="nodegraphics"/>
- <key attr.name="Description" attr.type="string" for="graph" id="d7"/>
- <key attr.name="url" attr.type="string" for="edge" id="d8"/>
- <key attr.name="description" attr.type="string" for="edge" id="d9"/>
- <key for="edge" id="d10" yfiles.type="edgegraphics"/>
- <graph edgedefault="directed" id="G">
- <data key="d7"/>
- <node id="n0">
- <data key="d4"/>
- <data key="d6">
- <y:GenericNode configuration="com.yworks.bpmn.Artifact.withShadow">
- <y:Geometry height="164.10822652164057" width="153.1635944700463" x="462.3652073732717" y="445.173709319825"/>
- <y:Fill color="#FFFFFF" transparent="false"/>
- <y:BorderStyle hasColor="false" type="line" width="3.0"/>
- <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="internal" modelPosition="b" textColor="#000000" visible="true" width="4.0" x="74.58179723502315" y="156.10822652164063"/>
- <y:StyleProperties>
- <y:Property class="com.yworks.yfiles.bpmn.view.BPMNTypeEnum" name="com.yworks.bpmn.type" value="ARTIFACT_TYPE_ANNOTATION"/>
- <y:Property name="com.yworks.bpmn.icon.line.color"/>
- <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.fill" value="#ffffff"/>
- <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.fill2" value="#ffffff"/>
- </y:StyleProperties>
- </y:GenericNode>
- </data>
- </node>
- <node id="n1">
- <data key="d6">
- <y:ShapeNode>
- <y:Geometry height="48.0" width="115.15668202764982" x="478.94700460829483" y="454.8491401425408"/>
- <y:Fill color="#FFFFFF" transparent="false"/>
- <y:BorderStyle color="#3366FF" type="line" width="3.0"/>
- <y:NodeLabel alignment="center" autoSizePolicy="node_width" fontFamily="Dialog" fontSize="13" fontStyle="bold" hasBackgroundColor="false" hasLineColor="false" height="34.265625" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="115.15668202764982" x="0.0" y="6.8671875">Identified
-Resources</y:NodeLabel>
- <y:Shape type="ellipse"/>
- <y:DropShadow color="#B3A691" offsetX="5" offsetY="5"/>
- </y:ShapeNode>
- </data>
- </node>
- <node id="n2">
- <data key="d6">
- <y:ShapeNode>
- <y:Geometry height="48.0" width="115.15668202764982" x="478.94700460829483" y="544.1747587797053"/>
- <y:Fill color="#C0C0C0" transparent="false"/>
- <y:BorderStyle color="#3366FF" type="line" width="3.0"/>
- <y:NodeLabel alignment="center" autoSizePolicy="node_width" fontFamily="Dialog" fontSize="13" fontStyle="bold" hasBackgroundColor="false" hasLineColor="false" height="19.1328125" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="115.15668202764982" x="0.0" y="14.43359375">Blank nodes</y:NodeLabel>
- <y:Shape type="ellipse"/>
- <y:DropShadow color="#B3A691" offsetX="5" offsetY="5"/>
- </y:ShapeNode>
- </data>
- </node>
- <node id="n3">
- <data key="d6">
- <y:ShapeNode>
- <y:Geometry height="41.0" width="120.0" x="-63.34792626728142" y="474.052419354839"/>
- <y:Fill color="#FFFFFF" transparent="false"/>
- <y:BorderStyle color="#3366FF" type="line" width="3.0"/>
- <y:NodeLabel alignment="center" autoSizePolicy="node_width" fontFamily="Dialog" fontSize="13" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="19.1328125" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="120.0" x="0.0" y="10.93359375">ex:doc1</y:NodeLabel>
- <y:Shape type="ellipse"/>
- <y:DropShadow color="#B3A691" offsetX="5" offsetY="5"/>
- </y:ShapeNode>
- </data>
- </node>
- <node id="n4">
- <data key="d6">
- <y:ShapeNode>
- <y:Geometry height="41.0" width="120.0" x="258.49539170506876" y="474.052419354839"/>
- <y:Fill color="#FFFFFF" transparent="false"/>
- <y:BorderStyle color="#3366FF" type="line" width="3.0"/>
- <y:NodeLabel alignment="center" autoSizePolicy="node_width" fontFamily="Dialog" fontSize="13" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="34.265625" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="120.0" x="0.0" y="3.3671875">dct:Agent
-ex:publisher</y:NodeLabel>
- <y:Shape type="ellipse"/>
- <y:DropShadow color="#B3A691" offsetX="5" offsetY="5"/>
- </y:ShapeNode>
- </data>
- </node>
- <node id="n5">
- <data key="d6">
- <y:ShapeNode>
- <y:Geometry height="41.0" width="120.0" x="-210.15668202764982" y="726.3750000000002"/>
- <y:Fill color="#FFFFFF" transparent="false"/>
- <y:BorderStyle color="#3366FF" type="line" width="3.0"/>
- <y:NodeLabel alignment="center" autoSizePolicy="node_width" fontFamily="Dialog" fontSize="13" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="34.265625" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="120.0" x="0.0" y="3.3671875">prov:Entity
-ex:doc1</y:NodeLabel>
- <y:Shape type="ellipse"/>
- <y:DropShadow color="#B3A691" offsetX="5" offsetY="5"/>
- </y:ShapeNode>
- </data>
- </node>
- <node id="n6">
- <data key="d6">
- <y:ShapeNode>
- <y:Geometry height="41.0" width="120.0" x="102.28283410138238" y="604.3750000000002"/>
- <y:Fill color="#C0C0C0" transparent="false"/>
- <y:BorderStyle color="#3366FF" type="line" width="3.0"/>
- <y:NodeLabel alignment="center" autoSizePolicy="node_width" fontFamily="Dialog" fontSize="13" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="34.265625" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="120.0" x="0.0" y="3.3671875">prov:Entity
-_:in</y:NodeLabel>
- <y:Shape type="ellipse"/>
- <y:DropShadow color="#B3A691" offsetX="5" offsetY="5"/>
- </y:ShapeNode>
- </data>
- </node>
- <node id="n7">
- <data key="d6">
- <y:ShapeNode>
- <y:Geometry height="41.0" width="120.0" x="102.28283410138238" y="726.3750000000002"/>
- <y:Fill color="#C0C0C0" transparent="false"/>
- <y:BorderStyle color="#3366FF" type="line" width="3.0"/>
- <y:NodeLabel alignment="center" autoSizePolicy="node_width" fontFamily="Dialog" fontSize="13" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="34.265625" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="120.0" x="0.0" y="3.3671875">prov:Entity
-_:out</y:NodeLabel>
- <y:Shape type="ellipse"/>
- <y:DropShadow color="#B3A691" offsetX="5" offsetY="5"/>
- </y:ShapeNode>
- </data>
- </node>
- <node id="n8">
- <data key="d6">
- <y:ShapeNode>
- <y:Geometry height="41.0" width="120.0" x="102.28283410138238" y="871.3750000000001"/>
- <y:Fill color="#FFFFFF" transparent="false"/>
- <y:BorderStyle color="#3366FF" type="line" width="3.0"/>
- <y:NodeLabel alignment="center" autoSizePolicy="node_width" fontFamily="Dialog" fontSize="13" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="34.265625" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="120.0" x="0.0" y="3.3671875">prov:Agent
-ex:publisher</y:NodeLabel>
- <y:Shape type="ellipse"/>
- <y:DropShadow color="#B3A691" offsetX="5" offsetY="5"/>
- </y:ShapeNode>
- </data>
- </node>
- <node id="n9">
- <data key="d6">
- <y:ShapeNode>
- <y:Geometry height="59.0" width="212.6267281105993" x="421.05990783410107" y="717.3750000000002"/>
- <y:Fill color="#C0C0C0" transparent="false"/>
- <y:BorderStyle color="#3366FF" type="line" width="3.0"/>
- <y:NodeLabel alignment="center" autoSizePolicy="node_width" fontFamily="Dialog" fontSize="13" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="49.3984375" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="212.6267281105993" x="0.0" y="4.80078125">prov:Activity,
-dcprov:PublicationActivity
-_:act</y:NodeLabel>
- <y:Shape type="ellipse"/>
- <y:DropShadow color="#B3A691" offsetX="5" offsetY="5"/>
- </y:ShapeNode>
- </data>
- </node>
- <node id="n10">
- <data key="d6">
- <y:ShapeNode>
- <y:Geometry height="30.0" width="30.0" x="146.08870967741944" y="499.3709677419354"/>
- <y:Fill hasColor="false" transparent="false"/>
- <y:BorderStyle hasColor="false" type="line" width="1.0"/>
- <y:NodeLabel alignment="center" autoSizePolicy="content" borderDistance="0.0" fontFamily="Dialog" fontSize="13" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="4.0" x="13.0" y="13.0"/>
- <y:Shape type="rectangle"/>
- </y:ShapeNode>
- </data>
- </node>
- <node id="n11">
- <data key="d6">
- <y:ShapeNode>
- <y:Geometry height="30.0" width="30.0" x="146.08870967741944" y="592.3750000000003"/>
- <y:Fill hasColor="false" transparent="false"/>
- <y:BorderStyle hasColor="false" type="line" width="1.0"/>
- <y:NodeLabel alignment="center" autoSizePolicy="content" borderDistance="0.0" fontFamily="Dialog" fontSize="13" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="4.0" x="13.0" y="13.0"/>
- <y:Shape type="rectangle"/>
- </y:ShapeNode>
- </data>
- </node>
- <edge id="e0" source="n3" target="n4">
- <data key="d10">
- <y:BezierEdge>
- <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
- <y:LineStyle color="#000000" type="line" width="1.0"/>
- <y:Arrows source="none" target="standard"/>
- <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" bottomInset="5" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="23.96875" leftInset="5" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" rightInset="5" textColor="#000000" topInset="5" visible="true" width="88.64453125" x="56.599394187399525" y="-11.984384844379747">dct:publisher</y:EdgeLabel>
- </y:BezierEdge>
- </data>
- </edge>
- <edge id="e1" source="n7" target="n5">
- <data key="d10">
- <y:BezierEdge>
- <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
- <y:LineStyle color="#000000" type="line" width="1.0"/>
- <y:Arrows source="none" target="standard"/>
- <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" bottomInset="5" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="23.96875" leftInset="5" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" rightInset="5" textColor="#000000" topInset="5" visible="true" width="136.55078125" x="-164.49515150219622" y="-11.984374999999773">prov:specializationOf</y:EdgeLabel>
- </y:BezierEdge>
- </data>
- </edge>
- <edge id="e2" source="n6" target="n5">
- <data key="d10">
- <y:BezierEdge>
- <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
- <y:LineStyle color="#000000" type="line" width="1.0"/>
- <y:Arrows source="none" target="standard"/>
- <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" bottomInset="5" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="23.96875" leftInset="5" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" rightInset="5" textColor="#000000" topInset="5" visible="true" width="136.55078125" x="-184.98483656078997" y="33.58782958984398">prov:specializationOf</y:EdgeLabel>
- </y:BezierEdge>
- </data>
- </edge>
- <edge id="e3" source="n7" target="n8">
- <data key="d10">
- <y:BezierEdge>
- <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
- <y:LineStyle color="#000000" type="line" width="1.0"/>
- <y:Arrows source="none" target="standard"/>
- <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" bottomInset="5" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="23.96875" leftInset="5" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" rightInset="5" textColor="#000000" topInset="5" visible="true" width="139.943359375" x="-69.97168250018012" y="40.01562500000023">prov:wasAttributedTo</y:EdgeLabel>
- </y:BezierEdge>
- </data>
- </edge>
- <edge id="e4" source="n5" target="n8">
- <data key="d10">
- <y:BezierEdge>
- <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
- <y:LineStyle color="#000000" type="line" width="1.0"/>
- <y:Arrows source="none" target="standard"/>
- <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" bottomInset="5" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="23.96875" leftInset="5" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" rightInset="5" textColor="#000000" topInset="5" visible="true" width="139.943359375" x="50.67599107592879" y="44.00695800781273">prov:wasAttributedTo</y:EdgeLabel>
- </y:BezierEdge>
- </data>
- </edge>
- <edge id="e5" source="n9" target="n8">
- <data key="d10">
- <y:BezierEdge>
- <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
- <y:LineStyle color="#000000" type="line" width="1.0"/>
- <y:Arrows source="none" target="standard"/>
- <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" bottomInset="5" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="23.96875" leftInset="5" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" rightInset="5" textColor="#000000" topInset="5" visible="true" width="157.01171875" x="-214.22646969416837" y="41.91866180959846">prov:wasAssociatedWith</y:EdgeLabel>
- </y:BezierEdge>
- </data>
- </edge>
- <edge id="e6" source="n7" target="n6">
- <data key="d10">
- <y:BezierEdge>
- <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
- <y:LineStyle color="#000000" type="line" width="1.0"/>
- <y:Arrows source="none" target="standard"/>
- <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" bottomInset="5" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="23.96875" leftInset="5" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" rightInset="5" textColor="#000000" topInset="5" visible="true" width="142.31640625" x="-71.15820593768012" y="-52.48437499999977">prov:wasDerivedFrom</y:EdgeLabel>
- </y:BezierEdge>
- </data>
- </edge>
- <edge id="e7" source="n7" target="n9">
- <data key="d10">
- <y:BezierEdge>
- <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
- <y:LineStyle color="#000000" type="line" width="1.0"/>
- <y:Arrows source="none" target="standard"/>
- <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" bottomInset="5" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="23.96875" leftInset="5" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" rightInset="5" textColor="#000000" topInset="5" visible="true" width="143.453125" x="27.661971553679223" y="-11.984374999999773">prov:wasGeneratedBy</y:EdgeLabel>
- </y:BezierEdge>
- </data>
- </edge>
- <edge id="e8" source="n9" target="n6">
- <data key="d10">
- <y:BezierEdge>
- <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
- <y:LineStyle color="#000000" type="line" width="1.0"/>
- <y:Arrows source="none" target="standard"/>
- <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" bottomInset="5" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="23.96875" leftInset="5" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" rightInset="5" textColor="#000000" topInset="5" visible="true" width="69.89453125" x="-172.7318577920239" y="-58.02700374665005">prov:used</y:EdgeLabel>
- </y:BezierEdge>
- </data>
- </edge>
- <edge id="e9" source="n10" target="n11">
- <data key="d10">
- <y:BezierEdge>
- <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
- <y:LineStyle color="#000000" type="line" width="5.0"/>
- <y:Arrows source="none" target="standard"/>
- </y:BezierEdge>
- </data>
- </edge>
- </graph>
- <data key="d0">
- <y:Resources/>
- </data>
-</graphml>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:y="http://www.yworks.com/xml/graphml" xmlns:yed="http://www.yworks.com/xml/yed/3" xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns http://www.yworks.com/xml/schema/graphml/1.1/ygraphml.xsd">
+ <!--Created by yFiles for Java 2.9-->
+ <key for="graphml" id="d0" yfiles.type="resources"/>
+ <key for="port" id="d1" yfiles.type="portgraphics"/>
+ <key for="port" id="d2" yfiles.type="portgeometry"/>
+ <key for="port" id="d3" yfiles.type="portuserdata"/>
+ <key attr.name="url" attr.type="string" for="node" id="d4"/>
+ <key attr.name="description" attr.type="string" for="node" id="d5"/>
+ <key for="node" id="d6" yfiles.type="nodegraphics"/>
+ <key attr.name="Description" attr.type="string" for="graph" id="d7"/>
+ <key attr.name="url" attr.type="string" for="edge" id="d8"/>
+ <key attr.name="description" attr.type="string" for="edge" id="d9"/>
+ <key for="edge" id="d10" yfiles.type="edgegraphics"/>
+ <graph edgedefault="directed" id="G">
+ <data key="d7"/>
+ <node id="n0">
+ <data key="d4"/>
+ <data key="d6">
+ <y:GenericNode configuration="com.yworks.bpmn.Artifact.withShadow">
+ <y:Geometry height="164.10822652164057" width="153.1635944700463" x="462.3652073732717" y="445.173709319825"/>
+ <y:Fill color="#FFFFFF" transparent="false"/>
+ <y:BorderStyle hasColor="false" type="line" width="3.0"/>
+ <y:NodeLabel alignment="center" autoSizePolicy="content" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="internal" modelPosition="b" textColor="#000000" visible="true" width="4.0" x="74.58179723502315" y="156.10822652164063"/>
+ <y:StyleProperties>
+ <y:Property class="com.yworks.yfiles.bpmn.view.BPMNTypeEnum" name="com.yworks.bpmn.type" value="ARTIFACT_TYPE_ANNOTATION"/>
+ <y:Property name="com.yworks.bpmn.icon.line.color"/>
+ <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.fill" value="#ffffff"/>
+ <y:Property class="java.awt.Color" name="com.yworks.bpmn.icon.fill2" value="#ffffff"/>
+ </y:StyleProperties>
+ </y:GenericNode>
+ </data>
+ </node>
+ <node id="n1">
+ <data key="d6">
+ <y:ShapeNode>
+ <y:Geometry height="48.0" width="115.15668202764982" x="478.94700460829483" y="454.8491401425408"/>
+ <y:Fill color="#FFFFFF" transparent="false"/>
+ <y:BorderStyle color="#3366FF" type="line" width="3.0"/>
+ <y:NodeLabel alignment="center" autoSizePolicy="node_width" fontFamily="Dialog" fontSize="13" fontStyle="bold" hasBackgroundColor="false" hasLineColor="false" height="35.8525390625" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="115.15668202764982" x="0.0" y="6.07373046875">Identified
+Resources</y:NodeLabel>
+ <y:Shape type="ellipse"/>
+ <y:DropShadow color="#B3A691" offsetX="5" offsetY="5"/>
+ </y:ShapeNode>
+ </data>
+ </node>
+ <node id="n2">
+ <data key="d6">
+ <y:ShapeNode>
+ <y:Geometry height="48.0" width="115.15668202764982" x="478.94700460829483" y="544.1747587797053"/>
+ <y:Fill color="#C0C0C0" transparent="false"/>
+ <y:BorderStyle color="#3366FF" type="line" width="3.0"/>
+ <y:NodeLabel alignment="center" autoSizePolicy="node_width" fontFamily="Dialog" fontSize="13" fontStyle="bold" hasBackgroundColor="false" hasLineColor="false" height="19.92626953125" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="115.15668202764982" x="0.0" y="14.036865234375">Blank nodes</y:NodeLabel>
+ <y:Shape type="ellipse"/>
+ <y:DropShadow color="#B3A691" offsetX="5" offsetY="5"/>
+ </y:ShapeNode>
+ </data>
+ </node>
+ <node id="n3">
+ <data key="d6">
+ <y:ShapeNode>
+ <y:Geometry height="41.0" width="120.0" x="-63.34792626728142" y="474.052419354839"/>
+ <y:Fill color="#FFFFFF" transparent="false"/>
+ <y:BorderStyle color="#3366FF" type="line" width="3.0"/>
+ <y:NodeLabel alignment="center" autoSizePolicy="node_width" fontFamily="Dialog" fontSize="13" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="19.92626953125" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="120.0" x="0.0" y="10.536865234375">ex:doc1</y:NodeLabel>
+ <y:Shape type="ellipse"/>
+ <y:DropShadow color="#B3A691" offsetX="5" offsetY="5"/>
+ </y:ShapeNode>
+ </data>
+ </node>
+ <node id="n4">
+ <data key="d6">
+ <y:ShapeNode>
+ <y:Geometry height="41.0" width="120.0" x="-210.15668202764982" y="726.3750000000002"/>
+ <y:Fill color="#FFFFFF" transparent="false"/>
+ <y:BorderStyle color="#3366FF" type="line" width="3.0"/>
+ <y:NodeLabel alignment="center" autoSizePolicy="node_width" fontFamily="Dialog" fontSize="13" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="35.8525390625" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="120.0" x="0.0" y="2.57373046875">prov:Entity
+ex:doc1</y:NodeLabel>
+ <y:Shape type="ellipse"/>
+ <y:DropShadow color="#B3A691" offsetX="5" offsetY="5"/>
+ </y:ShapeNode>
+ </data>
+ </node>
+ <node id="n5">
+ <data key="d6">
+ <y:ShapeNode>
+ <y:Geometry height="41.0" width="120.0" x="102.28283410138238" y="604.3750000000002"/>
+ <y:Fill color="#C0C0C0" transparent="false"/>
+ <y:BorderStyle color="#3366FF" type="line" width="3.0"/>
+ <y:NodeLabel alignment="center" autoSizePolicy="node_width" fontFamily="Dialog" fontSize="13" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="35.8525390625" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="120.0" x="0.0" y="2.57373046875">prov:Entity
+_:used_entity</y:NodeLabel>
+ <y:Shape type="ellipse"/>
+ <y:DropShadow color="#B3A691" offsetX="5" offsetY="5"/>
+ </y:ShapeNode>
+ </data>
+ </node>
+ <node id="n6">
+ <data key="d6">
+ <y:ShapeNode>
+ <y:Geometry height="50.0" width="128.0" x="98.28283410138238" y="726.3750000000002"/>
+ <y:Fill color="#C0C0C0" transparent="false"/>
+ <y:BorderStyle color="#3366FF" type="line" width="3.0"/>
+ <y:NodeLabel alignment="center" autoSizePolicy="node_width" fontFamily="Dialog" fontSize="13" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="35.8525390625" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="128.0" x="0.0" y="7.07373046875">prov:Entity
+_:resulting_entity</y:NodeLabel>
+ <y:Shape type="ellipse"/>
+ <y:DropShadow color="#B3A691" offsetX="5" offsetY="5"/>
+ </y:ShapeNode>
+ </data>
+ </node>
+ <node id="n7">
+ <data key="d6">
+ <y:ShapeNode>
+ <y:Geometry height="59.0" width="212.6267281105993" x="421.05990783410107" y="717.3750000000002"/>
+ <y:Fill color="#C0C0C0" transparent="false"/>
+ <y:BorderStyle color="#3366FF" type="line" width="3.0"/>
+ <y:NodeLabel alignment="center" autoSizePolicy="node_width" fontFamily="Dialog" fontSize="13" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="51.77880859375" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="212.6267281105993" x="0.0" y="3.610595703125">prov:Activity,
+prov:PublicationActivity
+_:activity</y:NodeLabel>
+ <y:Shape type="rectangle"/>
+ <y:DropShadow color="#B3A691" offsetX="5" offsetY="5"/>
+ </y:ShapeNode>
+ </data>
+ </node>
+ <node id="n8">
+ <data key="d6">
+ <y:ShapeNode>
+ <y:Geometry height="30.0" width="30.0" x="146.08870967741944" y="499.3709677419354"/>
+ <y:Fill hasColor="false" transparent="false"/>
+ <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+ <y:NodeLabel alignment="center" autoSizePolicy="content" borderDistance="0.0" fontFamily="Dialog" fontSize="13" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="4.0" x="13.0" y="13.0"/>
+ <y:Shape type="rectangle"/>
+ </y:ShapeNode>
+ </data>
+ </node>
+ <node id="n9">
+ <data key="d6">
+ <y:ShapeNode>
+ <y:Geometry height="30.0" width="30.0" x="146.08870967741944" y="592.3750000000003"/>
+ <y:Fill hasColor="false" transparent="false"/>
+ <y:BorderStyle hasColor="false" type="line" width="1.0"/>
+ <y:NodeLabel alignment="center" autoSizePolicy="content" borderDistance="0.0" fontFamily="Dialog" fontSize="13" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="4.0" x="13.0" y="13.0"/>
+ <y:Shape type="rectangle"/>
+ </y:ShapeNode>
+ </data>
+ </node>
+ <node id="n10">
+ <data key="d6">
+ <y:ShapeNode>
+ <y:Geometry height="41.0" width="120.0" x="258.49539170506876" y="474.052419354839"/>
+ <y:Fill color="#FFFFFF" transparent="false"/>
+ <y:BorderStyle color="#3366FF" type="line" width="3.0"/>
+ <y:NodeLabel alignment="center" autoSizePolicy="node_width" fontFamily="Dialog" fontSize="13" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="35.8525390625" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="120.0" x="0.0" y="2.57373046875">dct:Agent
+ex:publisher</y:NodeLabel>
+ <y:Shape type="ellipse"/>
+ <y:DropShadow color="#B3A691" offsetX="5" offsetY="5"/>
+ </y:ShapeNode>
+ </data>
+ </node>
+ <node id="n11">
+ <data key="d6">
+ <y:ShapeNode>
+ <y:Geometry height="35.796720787701815" width="96.0" x="114.28283410138238" y="873.9766396061492"/>
+ <y:Fill color="#FFFFFF" transparent="false"/>
+ <y:BorderStyle color="#3366FF" type="line" width="3.0"/>
+ <y:NodeLabel alignment="center" autoSizePolicy="node_width" fontFamily="Dialog" fontSize="13" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" height="35.8525390625" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="96.0" x="0.0" y="-0.027909137399092288">dct:Agent
+ex:publisher</y:NodeLabel>
+ <y:Shape type="rectangle"/>
+ <y:DropShadow color="#B3A691" offsetX="5" offsetY="5"/>
+ </y:ShapeNode>
+ </data>
+ </node>
+ <node id="n12">
+ <data key="d6">
+ <y:ShapeNode>
+ <y:Geometry height="27.902848000000006" width="96.0" x="114.28283410138238" y="846.0737916061493"/>
+ <y:Fill color="#FFFFFF" transparent="false"/>
+ <y:BorderStyle color="#3366FF" type="line" width="3.0"/>
+ <y:NodeLabel alignment="center" autoSizePolicy="node_width" fontFamily="Dialog" fontSize="13" fontStyle="plain" hasBackgroundColor="false" hasLineColor="false" hasText="false" height="4.0" modelName="internal" modelPosition="c" textColor="#000000" visible="true" width="96.0" x="0.0" y="11.951423999999975"/>
+ <y:Shape type="triangle"/>
+ </y:ShapeNode>
+ </data>
+ </node>
+ <edge id="e0" source="n3" target="n10">
+ <data key="d10">
+ <y:BezierEdge>
+ <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+ <y:LineStyle color="#000000" type="line" width="1.0"/>
+ <y:Arrows source="none" target="standard"/>
+ <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" bottomInset="5" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="24.701171875" leftInset="5" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" rightInset="5" textColor="#000000" topInset="5" visible="true" width="78.0390625" x="61.902128562399525" y="-12.350595781879747">dct:publisher</y:EdgeLabel>
+ </y:BezierEdge>
+ </data>
+ </edge>
+ <edge id="e1" source="n6" target="n4">
+ <data key="d10">
+ <y:BezierEdge>
+ <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+ <y:LineStyle color="#000000" type="line" width="1.0"/>
+ <y:Arrows source="none" target="standard"/>
+ <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" bottomInset="5" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="24.701171875" leftInset="5" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" rightInset="5" textColor="#000000" topInset="5" visible="true" width="121.38671875" x="-154.95657728344622" y="-13.708248934647372">prov:specializationOf</y:EdgeLabel>
+ </y:BezierEdge>
+ </data>
+ </edge>
+ <edge id="e2" source="n5" target="n4">
+ <data key="d10">
+ <y:BezierEdge>
+ <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+ <y:LineStyle color="#000000" type="line" width="1.0"/>
+ <y:Arrows source="none" target="standard"/>
+ <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" bottomInset="5" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="24.701171875" leftInset="5" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" rightInset="5" textColor="#000000" topInset="5" visible="true" width="121.38671875" x="-177.40280531078997" y="33.22161865234398">prov:specializationOf</y:EdgeLabel>
+ </y:BezierEdge>
+ </data>
+ </edge>
+ <edge id="e3" source="n6" target="n12">
+ <data key="d10">
+ <y:BezierEdge>
+ <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+ <y:LineStyle color="#000000" type="line" width="1.0"/>
+ <y:Arrows source="none" target="standard"/>
+ <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" bottomInset="5" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="24.701171875" leftInset="5" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" rightInset="5" textColor="#000000" topInset="5" visible="true" width="123.384765625" x="-61.69238562518012" y="22.498809865574685">prov:wasAttributedTo</y:EdgeLabel>
+ </y:BezierEdge>
+ </data>
+ </edge>
+ <edge id="e4" source="n4" target="n11">
+ <data key="d10">
+ <y:BezierEdge>
+ <y:Path sx="0.0" sy="0.0" tx="-20.282834101382377" ty="-4.375000000000114"/>
+ <y:LineStyle color="#000000" type="line" width="1.0"/>
+ <y:Arrows source="none" target="standard"/>
+ <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" bottomInset="5" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="24.701171875" leftInset="5" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" rightInset="5" textColor="#000000" topInset="5" visible="true" width="123.384765625" x="62.008841616207164" y="47.19104221098155">prov:wasAttributedTo</y:EdgeLabel>
+ </y:BezierEdge>
+ </data>
+ </edge>
+ <edge id="e5" source="n7" target="n11">
+ <data key="d10">
+ <y:BezierEdge>
+ <y:Path sx="0.0" sy="0.0" tx="10.717165898617623" ty="-0.3750000000001137"/>
+ <y:LineStyle color="#000000" type="line" width="1.0"/>
+ <y:Arrows source="none" target="standard"/>
+ <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" bottomInset="5" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="24.701171875" leftInset="5" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" rightInset="5" textColor="#000000" topInset="5" visible="true" width="140.716796875" x="-199.37877299740063" y="40.30455058898292">prov:wasAssociatedWith</y:EdgeLabel>
+ </y:BezierEdge>
+ </data>
+ </edge>
+ <edge id="e6" source="n6" target="n5">
+ <data key="d10">
+ <y:BezierEdge>
+ <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+ <y:LineStyle color="#000000" type="line" width="1.0"/>
+ <y:Arrows source="none" target="standard"/>
+ <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" bottomInset="5" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="24.701171875" leftInset="5" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" rightInset="5" textColor="#000000" topInset="5" visible="true" width="127.36328125" x="-63.68164343768012" y="-52.85058593749977">prov:wasDerivedFrom</y:EdgeLabel>
+ </y:BezierEdge>
+ </data>
+ </edge>
+ <edge id="e7" source="n6" target="n7">
+ <data key="d10">
+ <y:BezierEdge>
+ <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0">
+ <y:Point x="242.5" y="746.5"/>
+ </y:Path>
+ <y:LineStyle color="#000000" type="line" width="1.0"/>
+ <y:Arrows source="none" target="standard"/>
+ <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" bottomInset="5" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="24.701171875" leftInset="5" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" rightInset="5" textColor="#000000" topInset="5" visible="true" width="128.728515625" x="37.101059874081784" y="-13.978140721976843">prov:wasGeneratedBy</y:EdgeLabel>
+ </y:BezierEdge>
+ </data>
+ </edge>
+ <edge id="e8" source="n7" target="n5">
+ <data key="d10">
+ <y:BezierEdge>
+ <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+ <y:LineStyle color="#000000" type="line" width="1.0"/>
+ <y:Arrows source="none" target="standard"/>
+ <y:EdgeLabel alignment="center" backgroundColor="#FFFFFF" bottomInset="5" distance="2.0" fontFamily="Dialog" fontSize="12" fontStyle="plain" hasLineColor="false" height="24.701171875" leftInset="5" modelName="centered" modelPosition="center" preferredPlacement="anywhere" ratio="0.5" rightInset="5" textColor="#000000" topInset="5" visible="true" width="62.69921875" x="-148.77143909085203" y="-51.5887102896188">prov:used</y:EdgeLabel>
+ </y:BezierEdge>
+ </data>
+ </edge>
+ <edge id="e9" source="n8" target="n9">
+ <data key="d10">
+ <y:BezierEdge>
+ <y:Path sx="0.0" sy="0.0" tx="0.0" ty="0.0"/>
+ <y:LineStyle color="#000000" type="line" width="5.0"/>
+ <y:Arrows source="none" target="standard"/>
+ </y:BezierEdge>
+ </data>
+ </edge>
+ </graph>
+ <data key="d0">
+ <y:Resources/>
+ </data>
+</graphml>
Binary file dc-note/img/ComplexMapping.png has changed
Binary file dc-note/img/cleanup1.png has changed
Binary file dc-note/img/example1.png has changed
Binary file dc-note/img/mapping-example - conflating.png has changed