Contact

Link and Publish your data

to the Linked Open Data Community

Linkdata Work Information

SPARQLエンドポイントとサンプルクエリ

SPARQLエンドポイントとサンプルクエリを記載したデータセットです。「誰でもかんたんSPARQL実行」の入力データとして使用しています。
11

value

useful
0
Loading...



Select a file name to see the detais.
   
#LINK
#lang ja
#attribution_name Sayoko Shimoyama
#attribution_url http://linkdata.org/user/Sayoko_Shimoyama
#license http://creativecommons.org/publicdomain/zero/1.0/deed.ja
#file_name sparql_queries
#download_from http://linkdata.org/work/rdf1s1247i
#property http://www.w3.org/2000/01/rdf-schema#label http://purl.org/dc/elements/1.1/description http://purl.org/dc/elements/1.1/creator license http://xmlns.com/foaf/0.1/homepage ex1-query ex1-comment ex2-query ex2-comment ex3-query ex3-comment
#object_type_xsd string:ja string:ja string string string string string:ja string string:ja string string:ja
#property_context Assertion Assertion Assertion Assertion Assertion Assertion Assertion Assertion Assertion Assertion Assertion
http://opendata.elg-front.jp/api/v1/sparql 情報流通連携基盤の社会資本情報 H25年度総務省の実証実験による、地方自治体等が保有している社会資本情報や工事実績情報、入札情報等。 富士通株式会社 http://creativecommons.org/licenses/by/2.1/jp/ http://opendata.elg-front.jp/ select ?s ?p ?o where { GRAPH < http://opendata.elg-front.jp/marketing/tunnel# > {?s ?p ?o} } limit 100 トンネル諸元データのうち任意の100件を取得するクエリ。 select ?s ?p ?o where { GRAPH < http://opendata.elg-front.jp/tenken/schools# > {?s ?p ?o} } limit 100 小学校データのうち任意の100件を取得するクエリ。 select ?s ?p ?o where { GRAPH < http://opendata.elg-front.jp/tenken/tenken# > {?s ?p ?o} } limit 100 通学路点検データのうち任意の100件を取得するクエリ。
http://lod.hozo.jp/repositories/OsakaCityMap 大阪市の施設情報 大阪市より「Linked Open Dataハッカソン関西 in 大阪」向けにご提供頂いた、マップナビおおさかに掲載されている施設情報等のデータ。 Linked Open Dataハッカソン関西in大阪,大阪市 http://creativecommons.org/licenses/by/2.1/jp/ http://lodosaka.hozo.jp/OsakaCityMapLOD.htm PREFIX schema: < http://schema.org/ > PREFIX geo: < http://www.w3.org/2003/01/geo/wgs84_pos# > SELECT DISTINCT * WHERE{ ?uri schema:name ?label; geo:lat ?lat; geo:long ?long. } 緯度・経度を持つリソースのURI,名称,緯度,経度を取得するクエリ。 PREFIX schema: < http://schema.org/ > PREFIX geo: < http://www.w3.org/2003/01/geo/wgs84_pos# > SELECT DISTINCT * WHERE{ ?uri schema:name ?name; geo:lat ?lat; geo:long ?long. FILTER regex(str(?name), " 古墳 " ) } 「古墳」という文字列を名称に含むリソースのURI,名称,緯度,経度を取得するクエリ。 PREFIX schema: < http://schema.org/ > PREFIX geo: < http://www.w3.org/2003/01/geo/wgs84_pos# > PREFIX lodosaka: < http://lodosaka.hozo.jp/ > SELECT DISTINCT * WHERE{ ?uri lodosaka:category_1 " 公衆トイレ " @ja; schema:name ?name; geo:lat ?lat; geo:long ?long. FILTER ( ?lat > 34.7 & & ?lat < 34.75 & & ?long > 135.4 & & ?long < 135.45 ) } 指定された範囲にあるトイレのURI,名称,緯度,経度を取得するクエリ。
http://archive.yafjp.org/test/inspection.php ヨコハマ・アート・LOD 「ヨコハマ・アートナビ」に登録されている全てのイベント情報、イベント会場となっている場所情報、アートデータバンクのアーティスト情報のメタ情報等。 公益財団法人横浜市芸術文化振興財団 http://creativecommons.org/licenses/by-nd/2.1/jp/ http://fp.yafjp.org/yokohama_art_lod PREFIX rdfs: < http://www.w3.org/2000/01/rdf-schema# > SELECT DISTINCT ?label ?uri WHERE { ?uri rdf:type < http://fp.yafjp.org/terms/event#Event > ; rdfs:label ?label . } LIMIT 30 イベント情報のタイトルとURIを30件取得するクエリ。 PREFIX rdfs: < http://www.w3.org/2000/01/rdf-schema# > PREFIX schema: < http://schema.org/ > SELECT DISTINCT * WHERE { ?uri rdf:type < http://fp.yafjp.org/terms/event#Event > ; schema:startDate ?start; schema:endDate ?end; rdfs:label ?label . FILTER regex(str(?label), " 音楽 " ) } order by desc(?start) LIMIT 30 「音楽」という文字列をタイトルに含むイベント情報のタイトル, URI, 開催期間を30件取得し、日付の新しい順にソートするクエリ。 PREFIX rdfs: < http://www.w3.org/2000/01/rdf-schema# > PREFIX schema: < http://schema.org/ > PREFIX event: < http://fp.yafjp.org/terms/event# > PREFIX geo: < http://www.w3.org/2003/01/geo/wgs84_pos# > SELECT * WHERE{ ?sourceurl a event:Event; schema:name ?title; schema:startDate ?start; schema:endDate ?end; event:location ?place. ?place rdfs:label ?description; geo:lat ?lat; geo:long ?long. filter(lang(?description)= " ja " ). } order by desc(?start) LIMIT 30 イベントのタイトル, URI, 開催期間, 開催場所の情報を30件取得し、日付の新しい順にソートするクエリ。
http://datameti.go.jp/sparql Open DATA METI SPARQLエンドポイント 経済産業省がオープンデータを実践するために設置した試験サイト(β版)の SPARQLエンドポイント。 経済産業省 http://creativecommons.org/licenses/by/2.1/jp/ http://datameti.go.jp/ select distinct * where{ ?s ?p ?o }LIMIT 100 任意のトリプルを100件取得する. select distinct ?class where{ ?resource a ?class }LIMIT 100 使用されているクラス一覧を取得する。 select distinct ?pred where{ ?x ?pred ?y }LIMIT 100 使用されているプロパティの一覧(サンプル)を取得する。
http://id.ndl.go.jp/auth/ndla 国立国会図書館典拠データ検索・提供サービス(Web NDL Authorities) 国立国会図書館が維持管理する典拠データを一元的に検索・提供するサービス。 国立国会図書館 http://iss.ndl.go.jp/ndla/use/ http://id.ndl.go.jp/auth/ndla/ PREFIX skos: < http://www.w3.org/2004/02/skos/core# > PREFIX rdfs: < http://www.w3.org/2000/01/rdf-schema# > PREFIX rda: < http://RDVocab.info/ElementsGr2/ > PREFIX foaf: < http://xmlns.com/foaf/0.1/ > PREFIX xl: < http://www.w3.org/2008/05/skos-xl# > PREFIX ndl: < http://ndl.go.jp/dcndl/terms/ > SELECT * WHERE { ?uri1 foaf:primaryTopic ?uri2. ?uri1 xl:prefLabel [ xl:literalForm ?heading; ndl:transcription ?yomi ]. ?uri2 rda:dateOfBirth ?birth. ?uri2 rda:dateOfDeath ?death. ?uri2 foaf:name " 夏目漱石 " . FILTER (lang(?yomi) = 'ja-Kana'). } 「夏目漱石」の典拠情報URI、名称実体URI、生年、没年、標目、標目カナヨミを調べる. PREFIX skos: < http://www.w3.org/2004/02/skos/core# > PREFIX rdfs: < http://www.w3.org/2000/01/rdf-schema# > PREFIX rda: < http://RDVocab.info/ElementsGr2/ > PREFIX foaf: < http://xmlns.com/foaf/0.1/ > PREFIX xl: < http://www.w3.org/2008/05/skos-xl# > PREFIX ndl: < http://ndl.go.jp/dcndl/terms/ > SELECT * WHERE { ?uri1 foaf:primaryTopic ?uri2. ?uri1 xl:prefLabel [ xl:literalForm ?heading; ndl:transcription ?yomi ]. ?uri2 rda:dateOfDeath " 1962 " . FILTER (lang(?yomi) = 'ja-Kana'). }LIMIT 100 没年が「1962」である典拠URI、名称実体URI、標目、標目カナヨミを調べる. PREFIX skos: < http://www.w3.org/2004/02/skos/core# > PREFIX rdfs: < http://www.w3.org/2000/01/rdf-schema# > SELECT * WHERE { ?uri1 rdfs:label " インターネット " ; skos:broader ?uri2. ?uri2 rdfs:label ?label. } 件名標目「インターネット」の典拠URI、上位語のURI、上位語のラベルを取得する。
http://statdb.nstac.go.jp/lod/sparql 都道府県・市区町村コード情報 都道府県・市区町村コード情報をLOD(Linked Open Data)で提供。 独立行政法人統計センター http://statdb.nstac.go.jp/agreement/ http://statdb.nstac.go.jp/system-info/api/api-spec/ select distinct * where{ ?s ?p ?o }LIMIT 100 任意のトリプルを100件取得する. select distinct ?class where{ ?resource a ?class }LIMIT 100 使用されているクラス一覧を取得する。 select distinct ?pred where{ ?x ?pred ?y }LIMIT 100 使用されているプロパティの一覧(サンプル)を取得する。
* Row count is limited to 100.