David Price

First Upload of Drilling Classes RD Work

This diff could not be displayed because it is too large.
1 +SELECT DISTINCT ?RDLDesignation ?RDLDefinition ?EntityType ?RDLSuperclass ?ERHLocalname ?ERHOntology
2 +WHERE {
3 + ?s pca-rdl:hasDesignation ?RDLDesignation .
4 + ?s pca-rdl:hasDefinition ?RDLDefinition .
5 + ?s rdf:type ?p2 .
6 + BIND (afn:localname(?p2) AS ?EntityType )
7 + OPTIONAL {
8 + ?spec ISO-15926-2_2003:hasSubclass ?s .
9 + ?spec ISO-15926-2_2003:hasSuperclass ?sup .
10 + ?sup pca-rdl:hasDesignation ?RDLSuperclass .
11 + }
12 +
13 + ?erh owl:sameAs ?s .
14 + BIND (afn:localname(?erh) AS ?ERHLocalname )
15 + BIND (afn:namespace(?erh) AS ?ERHOntology )
16 +}
...\ No newline at end of file ...\ No newline at end of file
This diff is collapsed. Click to expand it.
1 +# baseURI: null
2 +
3 +@prefix composite: <http://www.topbraid.org/2007/05/composite.owl#> .
4 +@prefix forms: <http://www.topbraid.org/2007/01/forms.owl#> .
5 +@prefix inference: <http://www.topbraid.org/2007/06/inference.owl#> .
6 +@prefix owl: <http://www.w3.org/2002/07/owl#> .
7 +@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
8 +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
9 +@prefix visual: <http://topbraid.org/visual#> .
10 +@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
11 +
12 +[] rdf:type inference:Configuration ;
13 + composite:child
14 + [ rdf:type <http://spinrdf.org/spin#TopSPIN> ;
15 + <http://spinrdf.org/spin#topSPINOptions>
16 + "singlePass" ;
17 + composite:index "0"^^xsd:int
18 + ] .