David Price

Merge branch 'drilling-rdwed'

This diff could not be displayed because it is too large.
1 -SELECT DISTINCT ?RDLDesignation ?RDLDefinition ?EntityType ?RDLSuperclass ?ERHLocalname ?ERHOntology 1 +SELECT DISTINCT ?RDLDesignation ?RDLDefinition ?EntityType ?RDLSuperclass ?RDLSuperclassId ?ERHLocalname ?ERHOntology
2 WHERE { 2 WHERE {
3 ?s pca-rdl:hasDesignation ?RDLDesignation . 3 ?s pca-rdl:hasDesignation ?RDLDesignation .
4 ?s pca-rdl:hasDefinition ?RDLDefinition . 4 ?s pca-rdl:hasDefinition ?RDLDefinition .
...@@ -8,6 +8,7 @@ WHERE { ...@@ -8,6 +8,7 @@ WHERE {
8 ?spec ISO-15926-2_2003:hasSubclass ?s . 8 ?spec ISO-15926-2_2003:hasSubclass ?s .
9 ?spec ISO-15926-2_2003:hasSuperclass ?sup . 9 ?spec ISO-15926-2_2003:hasSuperclass ?sup .
10 ?sup pca-rdl:hasDesignation ?RDLSuperclass . 10 ?sup pca-rdl:hasDesignation ?RDLSuperclass .
11 + ?sup pca-rdl:hasIdPCA ?RDLSuperclassId .
11 } 12 }
12 13
13 ?erh owl:sameAs ?s . 14 ?erh owl:sameAs ?s .
......
1 +SELECT DISTINCT ?RDLDesignation ?RDLDefinition ?EntityType ?CoPossessor ?ERHLocalname ?ERHOntology
2 +WHERE {
3 + ?s pca-rdl:hasDesignation ?RDLDesignation .
4 + ?s ISO-15926-2_2003:hasClassOfPossessor ?CoPossessor .
5 + ?s pca-rdl:hasDefinition ?RDLDefinition .
6 + ?s rdf:type ?p2 .
7 + BIND (afn:localname(?p2) AS ?EntityType )
8 + OPTIONAL {
9 + ?spec ISO-15926-2_2003:hasSubclass ?s .
10 + ?spec ISO-15926-2_2003:hasSuperclass ?sup .
11 + ?sup pca-rdl:hasDesignation ?RDLSuperclass .
12 + ?sup pca-rdl:hasIdPCA ?RDLSuperclassId .
13 + }
14 +
15 + ?erh owl:sameAs ?s .
16 + BIND (afn:localname(?erh) AS ?ERHLocalname )
17 + BIND (afn:namespace(?erh) AS ?ERHOntology )
18 +}
...\ No newline at end of file ...\ No newline at end of file