Mercurial > hg > dbtune-site
annotate echonest/structure.rq @ 0:1e44d666ced1
Import site from parrot
author | Chris Cannam |
---|---|
date | Fri, 13 Oct 2017 09:23:49 +0100 |
parents | |
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 |