query-5c6ace39917050133621748b0a6c6f79
¿Qué terremotos han ocurrido en alguna parte del Peru? ¿Qué terremotos han ocurrido en alguna parte del Peru? ¿Qué terremotos han ocurrido en alguna parte del Peru? Welke aardbevingen waren er in Peru?
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#>
SELECT DISTINCT
?fecha
?item
?itemLabel
?itemDescription
?ubicación
?ubicaciónLabel
{
?item
wdt:P31/wdt:P279* wd:Q7944;
wdt:P276/wdt:P131* wd:Q419.
OPTIONAL{?item wdt:P276 ?ubicación}
OPTIONAL{?item wdt:P585 ?fecha}
SERVICE wikibase:label { bd:serviceParam wikibase:language "es". }
}
ORDER BY DESC(?fecha)
Query found at
- https://www.wikidata.org/wiki/Wikidata:SPARQL_query_service/queries/examples/Peru
- https://www.wikidata.org/wiki/Wikidata:SPARQL_query_service/queries/examples/Peru/de
- https://www.wikidata.org/wiki/Wikidata:SPARQL_query_service/queries/examples/Peru/es
- https://www.wikidata.org/wiki/Wikidata:SPARQL_query_service/queries/examples/Peru/nl
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?fecha"):::projected
v2("?item"):::projected
v3("?ubicación"):::projected
a1((" "))
a2((" "))
c9(["bd:serviceParam"]):::iri
c3(["wd:Q7944"]):::iri
c6(["wd:Q419"]):::iri
c11(["es"]):::literal
v2 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
v2 --"wdt:P276"--> a2
a2 --"wdt:P131"--> c6
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P276".-> v3
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P585".-> v1
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c11
end