Skip to content
Snippets Groups Projects
Commit 9b9550d0 authored by Brutzman, Don's avatar Brutzman, Don
Browse files

remove superfluous file from version control

parent 74caa539
No related branches found
No related tags found
No related merge requests found
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX x3d: <http://www.web3d.org/specifications/x3d-4.0.xsd#>
PREFIX x3do: <http://www.web3d.org/semantics/ontologies/X3dOntology4.0#>
# X3dHelloWorldQuery_03.rq Query HelloWorld.ttl to show title given to model within a WorldInfo node.
###############################################
SELECT ?WorldInfoNode ?title ?parentNode
WHERE
{
?WorldInfo rdf:type x3do:WorldInfo ;
x3do:title ?title ;
x3do:hasParent ?parent .
BIND (strafter(xsd:string(?WorldInfo),"#") AS ?WorldInfoNode)
BIND (strafter(xsd:string(?parent),"#") AS ?parentNode)
}
###############################################
---------------------------------------------------------
| WorldInfoNode | title | parentNode |
=========================================================
| "WorldInfo_2_1" | "HTVSCMGPrototype.x3d" | "Scene" |
---------------------------------------------------------
---------------------------------------------------------
| WorldInfoNode | title | parentNode |
=========================================================
| "WorldInfo_2_1" | "HTVSCMGPrototype.x3d" | "Scene" |
---------------------------------------------------------
---------------------------------------------------------
| WorldInfoNode | title | parentNode |
=========================================================
| "WorldInfo_2_1" | "HTVSCMGPrototype.x3d" | "Scene" |
---------------------------------------------------------
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment