BioHackathon-RDF
提供:TogoWiki
グラフ構造 (TripleDataProfilerの結果を加工して、GraphVizで描画したもの)
SPARQL queries
- 2011年開催のBioHackathonの情報 exec
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix owl: <http://www.w3.org/2002/07/owl#> prefix xsd: <http://www.w3.org/2001/XMLSchema#> prefix bh: <http://purl.jp/bio/10/bh/> prefix bho: <http://purl.jp/bio/10/bh/ontology#> prefix event: <http://purl.org/NET/c4dm/event.owl#> prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> prefix foaf: <http://xmlns.com/foaf/0.1/> prefix vcard: <http://www.w3.org/2006/vcard/ns#> prefix time: <http://www.w3.org/2006/time#> prefix geo: <http://www.w3.org/2003/01/geo/wgs84_pos#> prefix skos: <http://www.w3.org/2004/02/skos/core#> SELECT ?label (COUNT(?agent) AS ?number_of_participants) ?place_label ?begin_date ?end_date ?address_string ?lat ?lon FROM <http://biohackathon.org/> WHERE { ?bh a event:Event . ?bh event:agent ?agent . ?bh rdfs:label ?label . ?bh time:year 2011 . ?bh event:time ?interval . ?interval time:hasBeginning ?begin . ?begin time:inXSDDate ?begin_date . ?interval time:hasEnd ?end . ?end time:inXSDDate ?end_date . ?bh event:place ?place . ?place rdfs:label ?place_label . ?place vcard:address ?address . ?address rdfs:label ?address_string . ?place vcard:hasGeo ?geo . ?geo vcard:latitude ?lat . ?geo vcard:longitude ?lon . }
- 参加者一覧(参加回数順)exec
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix owl: <http://www.w3.org/2002/07/owl#> prefix xsd: <http://www.w3.org/2001/XMLSchema#> prefix bh: <http://purl.jp/bio/10/bh/> prefix bho: <http://purl.jp/bio/10/bh/ontology#> prefix event: <http://purl.org/NET/c4dm/event.owl#> prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> prefix foaf: <http://xmlns.com/foaf/0.1/> prefix vcard: <http://www.w3.org/2006/vcard/ns#> prefix time: <http://www.w3.org/2006/time#> prefix geo: <http://www.w3.org/2003/01/geo/wgs84_pos#> prefix skos: <http://www.w3.org/2004/02/skos/core#> SELECT ?person ?name (COUNT(?bh) AS ?bh) FROM <http://biohackathon.org/> WHERE { ?bh event:agent ?participant . ?participant rdfs:seeAlso ?person . ?person foaf:name ?name . } ORDER BY DESC (?bh)
- 年ごとの参加回数stanza
- 参加者一覧 (with 国, 参加した年) exec
- 参加国一覧 (2017年) exec
- BioHackathon一覧 exec
各回の参加者数、そのうち海外からの参加者数、計何カ国が参加したかなど
- 特定のpersonの履歴 (例: Rutger) [PREFIX+rdfs%3A+%3Chttp%3A%2F%2Fwww.w3.org%2F2000%2F01%2Frdf-schema%23%3E%0APREFIX+time%3A+%3Chttp%3A%2F%2Fwww.w3.org%2F2006%2Ftime%23%3E%0APREFIX+bho%3A+%3Chttp%3A%2F%2Fpurl.jp%2Fbio%2F10%2Fbh%2Fontology%23%3E%0APREFIX+vcard%3A+%3Chttp%3A%2F%2Fwww.w3.org%2F2006%2Fvcard%2Fns%23%3E%0APREFIX+event%3A+%3Chttp%3A%2F%2Fpurl.org%2FNET%2Fc4dm%2Fevent.owl%23%3E%0APREFIX+foaf%3A+%3Chttp%3A%2F%2Fxmlns.com%2Ffoaf%2F0.1%2F%3E%0A%0ASELECT+%3Fyear+%3Fname+%3Fcounty+%3Flabel%0AFROM+%3Chttp%3A%2F%2Fbiohackathon.org%2F%3E%0AWHERE+%7B%0A++++%3Chttp%3A%2F%2Fpurl.jp%2Fbio%2F10%2Fbh%2Fperson%2F37%3E+%5Erdfs%3AseeAlso+%3Fagent+%3B%0A++++++++foaf%3Aname+%3Fname+.%0A++++%3Fbh+event%3Aagent+%3Fagent+%3B%0A++++++++time%3Ayear+%3Fyear+.%0A++++%3Fagent+bho%3Aaffiliation+%3Faffiliation+.%0A++++%3Faffiliation+vcard%3Acountry-name+%3Fcounty+%3B%0A++++++++rdfs%3Alabel+%3Flabel+.%0A%7D%0AORDER+BY+%3Fyear%0A%0A exec]
- ボトル一覧 exec