[SPARQLクエリー例、緯度経度を持つデータを10件取得]
→ for IMI 2.3.2
Kyoto SPARQL Endpoint
prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>
prefix dc: <http://purl.org/dc/terms/>
prefix ic: <http://imi.go.jp/ns/core/rdf#>
select ?s ?name ?classified ?lat ?lng {
?s rdfs:label ?name;
ic:種別 ?classified;
ic:地理座標 / ic:緯度 ?lat;
ic:地理座標 / ic:経度 ?lng.
} limit 10
→ for IMI 2.3.1
odp SPARQL Endpoint,
Osaka SPARQL Endpoint
prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>
prefix dc: <http://purl.org/dc/terms/>
prefix ic: <http://imi.ipa.go.jp/ns/core/rdf#>
select ?s ?name ?classified ?lat ?lng {
?s rdfs:label ?name;
ic:種別 ?classified;
ic:地理座標 / ic:緯度 ?lat;
ic:地理座標 / ic:経度 ?lng.
} limit 10