"RCCTD WikiDataCuration08"의 두 판 사이의 차이
CNUDH
(→쿼리작성) |
(→쿼리작성) |
||
| 158번째 줄: | 158번째 줄: | ||
LIMIT 100 | LIMIT 100 | ||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
</big> | </big> | ||
2025년 12월 2일 (화) 13:25 판
목차
Contents
연구배경
(내용 서술)
연구목적
(내용 서술)
대상주제
(내용 서술)
쿼리작성
중국의 1급 행정구역별 사찰개수를 버블차트로 시각화
#defaultView:BubbleChart
SELECT ?province ?provinceLabel (COUNT(DISTINCT ?temple) AS ?templeCount) WHERE {
?temple wdt:P31/wdt:P279* wd:Q5393308.
?temple wdt:P17 wd:Q148.
?temple wdt:P131+ ?province. ?province wdt:P131 wd:Q148.
SERVICE wikibase:label { bd:serviceParam wikibase:language "ko,en". }
} GROUP BY ?province ?provinceLabel ORDER BY DESC(?templeCount) LIMIT 50
베이징 사찰 목록
SELECT DISTINCT ?temple ?templeLabel WHERE {
hint:Query hint:optimizer "None".
?temple wdt:P131+ wd:Q956.
?temple wdt:P31/wdt:P279* wd:Q5393308.
SERVICE wikibase:label { bd:serviceParam wikibase:language "ko,en". }
} LIMIT 100
베이징 사찰 위치 좌표
- defaultView:Map
SELECT DISTINCT ?temple ?templeLabel ?coord WHERE {
hint:Query hint:optimizer "None".
?temple wdt:P131+ wd:Q956.
?temple wdt:P31/wdt:P279* wd:Q5393308.
?temple wdt:P625 ?coord.
SERVICE wikibase:label { bd:serviceParam wikibase:language "ko,en". }
} LIMIT 100
중국의 불교 석굴 및 석굴 사원의 위치 좌표
SELECT DISTINCT ?item ?itemLabel ?coord ?image WHERE {
?item wdt:P17 wd:Q148;
wdt:P625 ?coord.
?item rdfs:label ?label.
FILTER(LANG(?label) = "zh")
FILTER(CONTAINS(?label, "窟") || CONTAINS(?label, "石窟") || CONTAINS(?label, "Grotto"))
MINUS { ?item wdt:P140 wd:Q9598. }
MINUS { ?item wdt:P31/wdt:P279* wd:Q1980295. }
MINUS { ?item wdt:P31/wdt:P279* wd:Q23442. }
MINUS { ?item wdt:P31/wdt:P279* wd:Q4022. }
OPTIONAL { ?item wdt:P18 ?image. }
SERVICE wikibase:label { bd:serviceParam wikibase:language "ko,en,zh". }
} LIMIT 200
중국에서 만들어진(발견된) 불교유물이지만 현재는 해외에서 보관중인 박물관의 위치 좌표
SELECT DISTINCT ?item ?itemLabel ?museumLabel ?cityLabel ?coord ?image WHERE {
{ VALUES ?origin { wd:Q148 wd:Q29520 wd:Q9683 wd:Q7462 wd:Q7313 wd:Q8733 }
?item wdt:P495 ?origin. }
UNION
{ ?item wdt:P189 ?place.
?place wdt:P17 wd:Q148. }
{ ?item wdt:P140 wd:Q748. }
UNION
{ ?item wdt:P180 wd:Q748. }
UNION
{ ?item wdt:P31/wdt:P279* wd:Q1000809. }
UNION
{ ?item wdt:P31/wdt:P279* wd:Q860861. }
UNION
{ ?item wdt:P31/wdt:P279* wd:Q11377547. }
?item wdt:P195 ?museum. ?museum wdt:P17 ?country. FILTER(?country != wd:Q148 && ?country != wd:Q865)
?museum wdt:P625 ?coord.
OPTIONAL { ?museum wdt:P131 ?city. }
OPTIONAL { ?item wdt:P18 ?image. }
SERVICE wikibase:label { bd:serviceParam wikibase:language "ko,en,zh". }
} LIMIT 100
결과해석
(내용 서술)
참고자원
(내용 서술)
주석