query-af98b2194a137e1f3f64a4051d2039ce
Cebuano-s genames import - Magyarországon ( tavak, patakok, dombok, hegyek, ... )Léteznek rossz importok például a cebuano geo-importok, amelyek megduplikálják és megnehezitik az adatlekérdezést. https://www.wikidata.org/wiki/Wikidata:Project_chat/Archive/2018/06#A_proposed_course_of_action_for_dealing_with_cebwiki/svwiki_geographic_duplicates listázza: gyanús földrajzi elemeketAzóta sokat javult a helyzet, csináltam egy sparql query-t ami a
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
PREFIX schema: <http://schema.org/>
# Wikidata geonames-es adatok - Magyarországon , de nincs róla hu-s wiki oldal
SELECT DISTINCT ?item ?itemLabel WHERE {
?item wdt:P17 wd:Q28.
?item wdt:P1566 ?geonames.
?ceb_article schema:about ?item.
?ceb_article schema:isPartOf <https://ceb.wikipedia.org/>.
MINUS {
?hu_article schema:about ?item.
?hu_article schema:isPartOf <https://hu.wikipedia.org/>.
}
SERVICE wikibase:label { bd:serviceParam wikibase:language "hu,en,ms,de,zh,lv,fi,id,ru,es,fr,da,pt,pl,it,sv,ceb". }
}
ORDER BY ?itemLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?ceb_article")
v3("?geonames")
v5("?hu_article")
v2("?item"):::projected
v1("?itemLabel"):::projected
c2(["wd:Q28"]):::iri
c11(["hu,en,ms,de,zh,lv,fi,id,ru,es,fr,da,pt,pl,it,sv,ceb"]):::literal
c7([https://hu.wikipedia.org/]):::iri
c9(["bd:serviceParam"]):::iri
c6([https://ceb.wikipedia.org/]):::iri
v2 --"wdt:P17"--> c2
v2 --"wdt:P1566"--> v3
v4 --"schema:about"--> v2
v4 --"schema:isPartOf"--> c6
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v5 --"schema:about"--> v2
v5 --"schema:isPartOf"--> c7
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c11
end