실습 SQARPLE
둘러보기로 가기
검색하러 가기
목차
국가서지 LOD, 국립중앙도서관 http://lod.nl.go.kr/sparql
- 주제가 수원 화성인 도서를 검색 해보기 - ‘주제’ 클래스의 ‘수원 화성‘ 개체의 id > https://lod.nl.go.kr/page/KSH00246771
prefix dc: <http://purl.org/dc/elements/1.1/> PREFIX dcterms: <http://purl.org/dc/terms/> PREFIX nlon: <http://lod.nl.go.kr/ontology/> SELECT * WHERE { <http://lod.nl.go.kr/resource/KSH00246771> nlon:isSubjectOf ?book. ?book rdf:type nlon:Book. ?book dcterms:title ?bookname. ?book dc:creator ?creator. ?book nlon:remainderOfTitle ?subtitle. } limit 100
한국사LOD - http://lod.koreanhistory.or.kr/lodSparqlEndPoint.do
- 정약용이 역임했던 관직 검색해보기 - '인물’ 클래스의 ‘정약용‘ 개체의 id > http://lod.koreanhistory.or.kr/resources/page/인명_정약용
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX hlod: http://lod.koreanhistory.or.kr/ select * where { hlod:인명_정약용 hlod:hasCareerInfo ?careerinfo. ?careerinfo hlod:careerName ?career. ?careerinfo hlod:hasStartDate ?startDate. ?careerinfo hlod:hasEndDate ?endDate. ?careerinfo hlod:hasDynasty ?dynasty. }
스마트관광정보LOD - http://data.visitkorea.or.kr/sparql
- 수원에 있는 문화유적지와 위경도 검색해보기
PREFIX skos: <http://www.w3.org/2004/02/skos/core#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX kto: <http://data.visitkorea.or.kr/ontology/> PREFIX ktop: <http://data.visitkorea.or.kr/property/> PREFIX wgs: <http://www.w3.org/2003/01/geo/wgs84_pos#> SELECT ?HistoricalPlace ?label ?address ?lat ?long WHERE { ?HistoricalPlace rdf:type kto:HistoricalPlace. ?HistoricalPlace ktop:location ?location. ?location skos:broader <http://data.visitkorea.or.kr/resource/CATEGORY:311300>. ?HistoricalPlace ktop:address ?address. ?HistoricalPlace rdfs:label ?label. ?HistoricalPlace wgs:lat ?lat. ?HistoricalPlace wgs:long ?long. }
owl:sameAs와 SERVICE
- 서로 다른 LOD 서비스에서 동일한 개체들이 owl:sameAs로 연결되어 있으면 SERVICE 기능을 이용해 그 개체에 대한 정보를 통합 검색할 수 있다.
PREFIX owl: <http://www.w3.org/2002/07/owl#> PREFIX edm: <http://www.europeana.eu/schemas/edm/> SELECT ?person ?relatedData1 ?relatedData2 WHERE { ?person edm:isRelatedTo ?relatedData1. ?person owl:sameAs ?samePerson SERVICE <http://anotherLOD/sparql> {?sameperson edm:isRelatedTo ?relatedData2.} }
Encyves LOD, http://dh.aks.ac.kr:8890/sparql
- 정약용과 관련 있는 것
prefix ekc: <http://dh.aks.ac.kr/ontologies/ekc#> prefix ekci: <http://dh.aks.ac.kr/iri/ekc#> select distinct * where { ekci:정약용 ?rel ?thing. }