Mercurial > hg > dbtune-site
annotate echonest/structure.rq @ 19:1e79ce3ff5f5 tip
Simplify and cut some non-working resource paths
author | Chris Cannam |
---|---|
date | Wed, 08 Nov 2017 15:27:23 +0000 |
parents | 1e44d666ced1 |
children |
rev | line source |
---|---|
Chris@0 | 1 PREFIX af: <http://purl.org/ontology/af/> |
Chris@0 | 2 PREFIX event: <http://purl.org/NET/c4dm/event.owl#> |
Chris@0 | 3 PREFIX tl: <http://purl.org/NET/c4dm/timeline.owl#> |
Chris@0 | 4 |
Chris@0 | 5 SELECT ?start ?duration |
Chris@0 | 6 FROM <http://dbtune.org/echonest/analyze-example.rdf> |
Chris@0 | 7 WHERE |
Chris@0 | 8 { |
Chris@0 | 9 ?e a af:StructuralSegment; |
Chris@0 | 10 event:time ?time. |
Chris@0 | 11 ?time tl:start ?start; |
Chris@0 | 12 tl:duration ?duration. |
Chris@0 | 13 } |
Chris@0 | 14 |