query-92d6fe26b4913ed497f192214fe13831
Aqüeductes que són ponts, i el problema és que molts aqüeductes que sí que són ponts no tenen instància de cap subcategoria de pont perquè els que li hem posat la instància (suposo que jo també) hem entès aqüeducte en el segon sentit. (Q12280)bridge que estem fent servir per les dues coses, i per tant no és una subclasse de (Q474)aqueduct En català i crec que en moltes llengües, un aqüeducte és una conducció artificial d'aigua en general i també és un pont per portar una conducció d'aigua. Diria que tenim un problema que és que hi ha un sol element Aquests són els aqüeductes del món que no són ponts a Wikidata:
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#>
# aqüeductes que no són ponts
SELECT ?aqueducte ?aqueducteLabel ?coord WHERE {
?aqueducte wdt:P31/wdt:P279* wd:Q474.
?aqueducte wdt:P625 ?coord.
MINUS{?aqueducte wdt:P31/wdt:P279* wd:Q12280}
SERVICE wikibase:label {
bd:serviceParam wikibase:language "[AUTO_LANGUAGE],ca,en,es" . }
}
#defaultView:Map
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?aqueducte"):::projected
v2("?coord"):::projected
a1((" "))
a2((" "))
c7(["bd:serviceParam"]):::iri
c5(["wd:Q12280"]):::iri
c3(["wd:Q474"]):::iri
c9(["#91;AUTO_LANGUAGE#93;,ca,en,es"]):::literal
v1 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
v1 --"wdt:P625"--> v2
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v1 --"wdt:P31"--> a2
a2 --"wdt:P279"--> c5
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end