H:::SPARQL

H_8. KDATA 서울시에 속한 행정구 목록

joyHong 2012. 12. 6. 18:22

KDATA (http://kdata.kr)

에서 제공하고 있는 행정구역 중

서울시에 속한 행정구 목록 쿼리


-------------------------------------------------------

PREFIX adsec: <http://data.kdata.kr/administrative_section/>

PREFIX fn: <http://www.w3.org/2005/xpath-functions/>

PREFIX afn: <http://jena.hpl.hp.com/ARQ/function#>

select * where {

?s adsec:isPartOf adsec:Seoul.

filter(afn:substr(str(?s),0,11)="http://data")

?s rdfs:label ?label.

filter(lang(?label)="")

-------------------------------------


실행하기 클릭


--------------------

afn:substr(str(?s),0,11)="http://data"

dbpedia의 자원이 포함되어 있음으로 kdata 자원만을 추출하기 위해

arq function을 이용해 substring 함


lang(?label)=""

language type이 en, cn 등

여러가지가 있음으로 

language type을 표시하지 않은 label을 추출하기 위해 사용