query-8ded97e71b77d876f3b234b792484dcc
title:All MAB (including subclass of museum) in Marche with coordinates SELECT DISTINCT ?item ?name ?coord ?lat ?lon WHERE { hint:Query hint:optimizer "None" . ?item wdt:P131 wd:Q1279 . ?item wdt:P31/wdt:P279 wd:Q11834910 .
SERVICE wikibase:label { bd:serviceParam wikibase:language "it" . ?item rdfs:label ?name } } ORDER BY ASC (?name)
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 rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
#title:All MAB (including subclass of museum) in Marche with coordinates
SELECT DISTINCT ?item ?name ?coord ?lat ?lon
WHERE
{
?item wdt:P131* wd:Q1279 .
?item wdt:P31/wdt:P279* wd:Q11834910 .
SERVICE wikibase:label { bd:serviceParam wikibase:language "it" . ?item rdfs:label ?name }
}
ORDER BY ASC (?name)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?name"):::projected
a1((" "))
c7(["bd:serviceParam"]):::iri
c5(["wd:Q11834910"]):::iri
c9(["it"]):::literal
c2(["wd:Q1279"]):::iri
v2 --"wdt:P131"--> c2
v2 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
v2 --"rdfs:label"--> v1
end