SPARQL examples: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 67: | Line 67: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
[https://wikihum.lab.dariah.pl/wdqs/#SELECT%20%3Fsettlement%20%3FsettlementLabel%20%3Fcoordinate16thCentury%20WHERE%20%7B%0A%20%20%23%20Warunek%20dla%20miejscowo%C5%9Bci%0A%20%20%3Fsettlement%20wdt%3AP27%20wd%3AQ175698.%0A%0A%20%20%23%20Miejscowo%C5%9B%C4%87%20by%C5%82a%20miastem%20w%20XVI%20wieku%0A%20%20%3Fsettlement%20p%3AP62%20%3FcityStatement.%0A%20%20%3FcityStatement%20ps%3AP62%20wd%3AQ622%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20pq%3AP40%20%3FpointInTime16thCentury.%0A%20%20FILTER%28YEAR%28%3FpointInTime16thCentury%29%20%3E%201500%20%26%26%20YEAR%28%3FpointInTime16thCentury%29%20%3C%3D%201600%29%0A%0A%20%20%23%20Miejscowo%C5%9B%C4%87%20jest%20wsi%C4%85%20w%20roku%202022%0A%20%20%3Fsettlement%20p%3AP62%20%3FvillageStatement.%0A%20%20%3FvillageStatement%20ps%3AP62%20wd%3AQ653%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20pq%3AP40%20%3FpointInTime2022.%0A%20%20FILTER%28YEAR%28%3FpointInTime2022%29%20%3D%202022%29%0A%0A%20%20%23%20Pobieranie%20wsp%C3%B3%C5%82rz%C4%99dnych%20z%20XVI%20wieku%0A%20%20%3Fsettlement%20p%3AP63%20%3FcoordStatement.%0A%20%20%3FcoordStatement%20ps%3AP63%20%3Fcoordinate16thCentury%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20pq%3AP40%20%3FcoordTime.%0A%20%20FILTER%28YEAR%28%3FcoordTime%29%20%3E%201500%20%26%26%20YEAR%28%3FcoordTime%29%20%3C%3D%201600%29%0A%0A%20%20SERVICE%20wikibase%3Alabel%20%7B%20bd%3AserviceParam%20wikibase%3Alanguage%20%22%5BAUTO_LANGUAGE%5D%2Cen%22.%20%7D%0A%7D%0A Try It!] | [https://wikihum.lab.dariah.pl/wdqs/#SELECT%20%3Fsettlement%20%3FsettlementLabel%20%3Fcoordinate16thCentury%20WHERE%20%7B%0A%20%20%23%20Warunek%20dla%20miejscowo%C5%9Bci%0A%20%20%3Fsettlement%20wdt%3AP27%20wd%3AQ175698.%0A%0A%20%20%23%20Miejscowo%C5%9B%C4%87%20by%C5%82a%20miastem%20w%20XVI%20wieku%0A%20%20%3Fsettlement%20p%3AP62%20%3FcityStatement.%0A%20%20%3FcityStatement%20ps%3AP62%20wd%3AQ622%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20pq%3AP40%20%3FpointInTime16thCentury.%0A%20%20FILTER%28YEAR%28%3FpointInTime16thCentury%29%20%3E%201500%20%26%26%20YEAR%28%3FpointInTime16thCentury%29%20%3C%3D%201600%29%0A%0A%20%20%23%20Miejscowo%C5%9B%C4%87%20jest%20wsi%C4%85%20w%20roku%202022%0A%20%20%3Fsettlement%20p%3AP62%20%3FvillageStatement.%0A%20%20%3FvillageStatement%20ps%3AP62%20wd%3AQ653%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20pq%3AP40%20%3FpointInTime2022.%0A%20%20FILTER%28YEAR%28%3FpointInTime2022%29%20%3D%202022%29%0A%0A%20%20%23%20Pobieranie%20wsp%C3%B3%C5%82rz%C4%99dnych%20z%20XVI%20wieku%0A%20%20%3Fsettlement%20p%3AP63%20%3FcoordStatement.%0A%20%20%3FcoordStatement%20ps%3AP63%20%3Fcoordinate16thCentury%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20pq%3AP40%20%3FcoordTime.%0A%20%20FILTER%28YEAR%28%3FcoordTime%29%20%3E%201500%20%26%26%20YEAR%28%3FcoordTime%29%20%3C%3D%201600%29%0A%0A%20%20SERVICE%20wikibase%3Alabel%20%7B%20bd%3AserviceParam%20wikibase%3Alanguage%20%22%5BAUTO_LANGUAGE%5D%2Cen%22.%20%7D%0A%7D%0A Try It!] | ||
=== Osady historyczne w XVI wieku === | |||
<syntaxhighlight lang="SPARQL" class="mw-highlight-lang-sparql"> | |||
SELECT ?settlement ?settlementLabel ?settlementDescription ?coordinate16thCentury WHERE { | |||
# Warunek dla elementów będących osadami | |||
?settlement wdt:P27 wd:Q175698. | |||
# Filtr na opis zawierający tekst "osada historyczna" | |||
?settlement schema:description ?settlementDescription. | |||
FILTER(CONTAINS(LCASE(?settlementDescription), "osada historyczna")) | |||
# Pobieranie współrzędnych z XVI wieku | |||
?settlement p:P63 ?coordStatement. | |||
?coordStatement ps:P63 ?coordinate16thCentury; | |||
pq:P40 ?coordTime. | |||
FILTER(YEAR(?coordTime) > 1500 && YEAR(?coordTime) <= 1600) | |||
# Usługa pobierania etykiet i opisów w odpowiednim języku | |||
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],pl". } | |||
} | |||
</syntaxhighlight> | |||
[https://wikihum.lab.dariah.pl/wdqs/index.html#SELECT%20%3Fsettlement%20%3FsettlementLabel%20%3FsettlementDescription%20%3Fcoordinate16thCentury%20WHERE%20%7B%0A%20%20%23%20Warunek%20dla%20miejscowo%C5%9Bci%0A%20%20%3Fsettlement%20wdt%3AP27%20wd%3AQ175698.%0A%0A%20%20%23%20Filtr%20na%20opis%20zawieraj%C4%85cy%20tekst%20%22osada%20historyczna%22%0A%20%20%3Fsettlement%20schema%3Adescription%20%3FsettlementDescription.%0A%20%20FILTER%28CONTAINS%28LCASE%28%3FsettlementDescription%29%2C%20%22osada%20historyczna%22%29%29%0A%20%20%0A%20%20%23%20Pobieranie%20wsp%C3%B3%C5%82rz%C4%99dnych%20z%20XVI%20wieku%0A%20%20%3Fsettlement%20p%3AP63%20%3FcoordStatement.%0A%20%20%3FcoordStatement%20ps%3AP63%20%3Fcoordinate16thCentury%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20pq%3AP40%20%3FcoordTime.%0A%20%20FILTER%28YEAR%28%3FcoordTime%29%20%3E%201500%20%26%26%20YEAR%28%3FcoordTime%29%20%3C%3D%201600%29%0A%0A%20%20%23%20Us%C5%82uga%20pobierania%20etykiet%20i%20opis%C3%B3w%20w%20odpowiednim%20j%C4%99zyku%0A%20%20SERVICE%20wikibase%3Alabel%20%7B%20bd%3AserviceParam%20wikibase%3Alanguage%20%22%5BAUTO_LANGUAGE%5D%2Cpl%22.%20%7D%0A%7D%0A%0A Try It!] | |||
=== Osoby urodzone w XVI wieku === | === Osoby urodzone w XVI wieku === |
Revision as of 15:18, 24 August 2024
This page is parsed by the web interface of the query service to fill the query example dialog.
Miejscowości z AHP (XVI w.) które pełniły funkcję stolicy powiatu
SELECT ?item ?itemLabel ?ahp_id ?coordinate
WHERE
{
?item wdt:P81 ?ahp_id .
?item p:P63 ?statement .
?statement pq:P40 ?pointintime .
?statement ps:P63 ?coordinate .
?item p:P79 ?statement1.
?statement1 pq:P40 ?pointintime1 .
?statement1 (ps:P79/(wdt:P56*)) wd:Q99. # stolica powiatu
FILTER(YEAR(?pointintime) = 1600 && YEAR(?pointintime1) = 1600)
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Miejscowości które w XVI wieku były miejscami odbywania sejmiku partykularnego
SELECT ?item ?itemLabel ?ahp_id ?coordinate
WHERE
{
?item wdt:P81 ?ahp_id .
?item p:P63 ?statement .
?statement pq:P40 ?pointintime .
?statement ps:P63 ?coordinate .
?item p:P79 ?statement1.
?statement1 pq:P40 ?pointintime1 .
?statement1 (ps:P79/(wdt:P56*)) wd:Q91. # miejsca odbywania sejmiku partykularnego
FILTER(YEAR(?pointintime) = 1600 && YEAR(?pointintime1) = 1600)
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Miejscowości które w XVI wieku były miastami a obecnie są wsiami
SELECT ?settlement ?settlementLabel ?coordinate16thCentury WHERE {
# Warunek dla miejscowości
?settlement wdt:P27 wd:Q175698.
# Miejscowość była miastem w XVI wieku
?settlement p:P62 ?cityStatement.
?cityStatement ps:P62 wd:Q622;
pq:P40 ?pointInTime16thCentury.
FILTER(YEAR(?pointInTime16thCentury) > 1500 && YEAR(?pointInTime16thCentury) <= 1600)
# Miejscowość jest wsią w roku 2022
?settlement p:P62 ?villageStatement.
?villageStatement ps:P62 wd:Q653;
pq:P40 ?pointInTime2022.
FILTER(YEAR(?pointInTime2022) = 2022)
# Pobieranie współrzędnych z XVI wieku
?settlement p:P63 ?coordStatement.
?coordStatement ps:P63 ?coordinate16thCentury;
pq:P40 ?coordTime.
FILTER(YEAR(?coordTime) > 1500 && YEAR(?coordTime) <= 1600)
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Osady historyczne w XVI wieku
SELECT ?settlement ?settlementLabel ?settlementDescription ?coordinate16thCentury WHERE {
# Warunek dla elementów będących osadami
?settlement wdt:P27 wd:Q175698.
# Filtr na opis zawierający tekst "osada historyczna"
?settlement schema:description ?settlementDescription.
FILTER(CONTAINS(LCASE(?settlementDescription), "osada historyczna"))
# Pobieranie współrzędnych z XVI wieku
?settlement p:P63 ?coordStatement.
?coordStatement ps:P63 ?coordinate16thCentury;
pq:P40 ?coordTime.
FILTER(YEAR(?coordTime) > 1500 && YEAR(?coordTime) <= 1600)
# Usługa pobierania etykiet i opisów w odpowiednim języku
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],pl". }
}
Osoby urodzone w XVI wieku
# lista osób urodzonych w XVI wieku
SELECT DISTINCT ?human ?humanLabel (YEAR(?date_of_birth) AS ?year) WHERE {
?human wdt:P27 wd:Q5.
?human wdt:P11 ?date_of_birth.
FILTER (YEAR(?date_of_birth) > 1500 && YEAR(?date_of_birth) < 1601)
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY ?date_of_birth
Lista osób długowiecznych
# osoby ze znaną datą urodzin i śmierci żyjące pow. 90 lat
SELECT ?item ?itemLabel ?age
WHERE {
?item wdt:P27 wd:Q5 .
?item p:P11/psv:P11 ?birth_date_node .
?item p:P12/psv:P12 ?death_date_node .
?birth_date_node wikibase:timeValue ?birth_date.
?death_date_node wikibase:timeValue ?death_date.
?birth_date_node wikibase:timePrecision ?birth_precision.
?death_date_node wikibase:timePrecision ?death_precision.
BIND( YEAR(?death_date) - YEAR(?birth_date) -
IF(MONTH(?death_date)<MONTH(?birth_date) ||
(MONTH(?death_date)=MONTH(?birth_date) && DAY(?death_date)<DAY(?birth_date)),1,0) AS ?age )
FILTER(?age > 90 && ?birth_precision >= 9 && ?death_precision >= 9).
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY DESC(?age)
Osoby żyjące w XVI wieku - urodzone, zmarłe lub aktywne w tym okresie
SELECT * WHERE
{
{
SELECT DISTINCT ?item ?itemLabel WHERE {
?item wdt:P27 wd:Q5.
?item wdt:P11 ?birthdate.
?item wdt:P12 ?deathdate.
FILTER(
((?birthdate >= "1501-01-01T00:00:00Z"^^xsd:dateTime) && (?birthdate <= "1600-12-31T00:00:00Z"^^xsd:dateTime))
||
((?deathdate >= "1501-01-01T00:00:00Z"^^xsd:dateTime) && (?deathdate <= "1600-12-31T00:00:00Z"^^xsd:dateTime))
)
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }}
}
UNION
{
SELECT DISTINCT ?item ?itemLabel WHERE {
?item wdt:P27 wd:Q5.
?item wdt:P87 ?fluorit.
FILTER ((?fluorit >= "+1501-01-01T00:00:00Z"^^xsd:dateTime) && (?fluorit <= "+1600-01-01T00:00:00Z"^^xsd:dateTime))
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }}
}
}
ORDER BY ?itemLabel
Miejscowości które w XVI wieku były miastami
#Miejscowości które w XVI wieku były miastami
SELECT ?item ?itemLabel ?ahp_id ?coordinate
WHERE
{
?item wdt:P81 ?ahp_id .
?item p:P63 ?statement .
?statement pq:P40 ?pointintime .
?item p:P62 ?statement1.
?statement1 pq:P40 ?pointintime1 .
?statement ps:P63 ?coordinate .
?statement1 (ps:P62/(wdt:P56*)) wd:Q622.
FILTER(YEAR(?pointintime) = 1600 && YEAR(?pointintime1) = 1600)
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Miejscowości które w XVI wieku były własnością monarszą
SELECT ?item ?itemLabel ?ahp_id ?coordinate
WHERE
{
?item wdt:P81 ?ahp_id .
?item p:P63 ?statement .
?item p:P134 ?statement1.
?statement pq:P40 ?pointintime .
?statement1 pq:P40 ?pointintime1 .
?statement ps:P63 ?coordinate .
?statement1 (ps:P134/(wdt:P56*)) wd:Q64. # Q64 - własność monarsza, Q63 - duchowna, Q65 - mieszczańska, Q66 - szlachecka
FILTER(YEAR(?pointintime) = 1600)
FILTER(YEAR(?pointintime1) = 1600)
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Podsumowanie liczby osób urodzonych w poszczególnych stuleciach
SELECT ?centuryRoman (COUNT(*) AS ?count)
WHERE {
?person wdt:P27 wd:Q5;
wdt:P11 ?birthDate .
# Obliczenie stulecia na podstawie roku urodzenia
BIND(CEIL((YEAR(?birthDate) - 1) / 100) AS ?century)
BIND(
IF(?century = 10, "X",
IF(?century = 11, "XI",
IF(?century = 12, "XII",
IF(?century = 13, "XIII",
IF(?century = 14, "XIV",
IF(?century = 15, "XV",
IF(?century = 16, "XVI",
IF(?century = 17, "XVII",
IF(?century = 18, "XVIII",
IF(?century = 19, "XIX",
IF(?century = 20, "XX",
""))))))))))) AS ?centuryRoman).
# odfiltrowanie błędnych danych
FILTER(?century >= 10 && ?century < 21)
}
GROUP BY ?centuryRoman
ORDER BY ?count