"RCCTD WikiDataCuration08"의 두 판 사이의 차이
CNUDH
(→쿼리작성) |
(→쿼리작성) |
||
| 102번째 줄: | 102번째 줄: | ||
LIMIT 100 | 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. } # 섬 (Island) 제외 | ||
| + | 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 | ||
</big> | </big> | ||
2025년 11월 27일 (목) 01:05 판
목차
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. } # 섬 (Island) 제외
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
결과해석
(내용 서술)
참고자원
(내용 서술)
주석