SPARQL examples: Difference between revisions

From Dariah-Lab
Jump to navigation Jump to search
No edit summary
 
(44 intermediate revisions by the same user not shown)
Line 3: Line 3:




=== Miejscowości, które w XVI wieku pełniły funkcję stolicy powiatu ===
=== Towns that served as county capital in the 16th century ===
<syntaxhighlight lang="SPARQL" class="mw-highlight-lang-sparql">
<syntaxhighlight lang="SPARQL" class="mw-highlight-lang-sparql">
#title:Miejscowości, które w XVI wieku pełniły funkcję stolicy powiatu
#title:Towns that served as county capital in the 16th century
#defaultView:Map
SELECT ?item ?itemLabel ?ahp_id ?coordinate
SELECT ?item ?itemLabel ?ahp_id ?coordinate
   WHERE
   WHERE
Line 20: Line 21:
   }
   }
</syntaxhighlight>
</syntaxhighlight>
[https://wikihum.lab.dariah.pl/wdqs/#%23Miejscowo%C5%9Bci%20z%20AHP%20%28XVI%20w.%29%20w%20kt%C3%B3re%20by%C5%82y%20stolic%C4%85%20powiatu%0ASELECT%20%3Fitem%20%3FitemLabel%20%3Fahp_id%20%3Fcoordinate%0A%20%20WHERE%0A%20%20%7B%0A%20%20%20%20%20%20%3Fitem%20wdt%3AP81%20%3Fahp_id%20.%0A%20%20%20%20%20%20%3Fitem%20p%3AP63%20%3Fstatement%20.%0A%20%20%20%20%20%20%3Fstatement%20pq%3AP40%20%3Fpointintime%20.%0A%20%20%20%20%20%20%3Fstatement%20ps%3AP63%20%3Fcoordinate%20.%0A%20%20%20%20%20%20%3Fitem%20p%3AP79%20%3Fstatement1.%0A%20%20%20%20%20%20%3Fstatement1%20pq%3AP40%20%3Fpointintime1%20.%0A%20%20%20%20%20%20%3Fstatement1%20%28ps%3AP79%2F%28wdt%3AP56%2a%29%29%20wd%3AQ99.%20%20%23%20stolica%20powiatu%0A%20%20%20%20%20%20FILTER%28YEAR%28%3Fpointintime%29%20%3D%201600%20%26%26%20YEAR%28%3Fpointintime1%29%20%3D%201600%29%0A%20%20%20%20%20%20SERVICE%20wikibase%3Alabel%20%7B%20bd%3AserviceParam%20wikibase%3Alanguage%20%22%5BAUTO_LANGUAGE%5D%2Cen%22.%20%7D%0A%20%20%7D Try it!]
[https://wikihum.lab.dariah.pl/wdqs/#%23title%3ATowns%20that%20served%20as%20county%20capital%20in%20the%2016th%20century%0A%23defaultView%3AMap%0ASELECT%20%3Fitem%20%3FitemLabel%20%3Fahp_id%20%3Fcoordinate%0A%20%20WHERE%0A%20%20%7B%0A%20%20%20%20%20%20%3Fitem%20wdt%3AP81%20%3Fahp_id%20.%0A%20%20%20%20%20%20%3Fitem%20p%3AP63%20%3Fstatement%20.%0A%20%20%20%20%20%20%3Fstatement%20pq%3AP40%20%3Fpointintime%20.%0A%20%20%20%20%20%20%3Fstatement%20ps%3AP63%20%3Fcoordinate%20.%0A%20%20%20%20%20%20%3Fitem%20p%3AP79%20%3Fstatement1.%0A%20%20%20%20%20%20%3Fstatement1%20pq%3AP40%20%3Fpointintime1%20.%0A%20%20%20%20%20%20%3Fstatement1%20%28ps%3AP79%2F%28wdt%3AP56%2a%29%29%20wd%3AQ99.%20%20%23%20stolica%20powiatu%0A%20%20%20%20%20%20FILTER%28YEAR%28%3Fpointintime%29%20%3D%201600%20%26%26%20YEAR%28%3Fpointintime1%29%20%3D%201600%29%0A%20%20%20%20%20%20SERVICE%20wikibase%3Alabel%20%7B%20bd%3AserviceParam%20wikibase%3Alanguage%20%22%5BAUTO_LANGUAGE%5D%2Cen%22.%20%7D%0A%20%20%7D Try it!]


=== Miejscowości, które w XVI wieku były miejscami odbywania sejmiku partykularnego ===
=== Human settlements that were places of the local assembly in the 16th century ===
<syntaxhighlight lang="SPARQL" class="mw-highlight-lang-sparql">
<syntaxhighlight lang="SPARQL" class="mw-highlight-lang-sparql">
#title:Miejscowości, które w XVI wieku były miejscami odbywania sejmiku partykularnego
#title:Human settlements that were places of the local assembly in the 16th century
#defaultView:Map
SELECT ?item ?itemLabel ?ahp_id ?coordinate
SELECT ?item ?itemLabel ?ahp_id ?coordinate
   WHERE
   WHERE
Line 34: Line 36:
       ?item p:P79 ?statement1.
       ?item p:P79 ?statement1.
       ?statement1 pq:P40 ?pointintime1 .
       ?statement1 pq:P40 ?pointintime1 .
       ?statement1 (ps:P79/(wdt:P56*)) wd:Q91.  # miejsca odbywania sejmiku partykularnego
       ?statement1 (ps:P79/(wdt:P56*)) wd:Q91.  # places of the local assembly
       FILTER(YEAR(?pointintime) = 1600 && YEAR(?pointintime1) = 1600)
       FILTER(YEAR(?pointintime) = 1600 && YEAR(?pointintime1) = 1600)
       SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
       SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
   }
   }
</syntaxhighlight>
</syntaxhighlight>
[https://wikihum.lab.dariah.pl/wdqs/#SELECT%20%3Fitem%20%3FitemLabel%20%3Fahp_id%20%3Fcoordinate%0A%20%20WHERE%0A%20%20%7B%0A%20%20%20%20%20%20%3Fitem%20wdt%3AP81%20%3Fahp_id%20.%0A%20%20%20%20%20%20%3Fitem%20p%3AP63%20%3Fstatement%20.%0A%20%20%20%20%20%20%3Fstatement%20pq%3AP40%20%3Fpointintime%20.%0A%20%20%20%20%20%20%3Fstatement%20ps%3AP63%20%3Fcoordinate%20.%0A%20%20%20%20%20%20%3Fitem%20p%3AP79%20%3Fstatement1.%0A%20%20%20%20%20%20%3Fstatement1%20pq%3AP40%20%3Fpointintime1%20.%0A%20%20%20%20%20%20%3Fstatement1%20%28ps%3AP79%2F%28wdt%3AP56%2a%29%29%20wd%3AQ91.%20%20%23%20miejsca%20odbywania%20sejmiku%20partykularnego%0A%20%20%20%20%20%20FILTER%28YEAR%28%3Fpointintime%29%20%3D%201600%20%26%26%20YEAR%28%3Fpointintime1%29%20%3D%201600%29%0A%20%20%20%20%20%20SERVICE%20wikibase%3Alabel%20%7B%20bd%3AserviceParam%20wikibase%3Alanguage%20%22%5BAUTO_LANGUAGE%5D%2Cen%22.%20%7D%0A%20%20%7D Try It!]
[https://wikihum.lab.dariah.pl/wdqs/#%23title%3ALocalities%20that%20were%20places%20of%20the%20local%20assembly%20in%20the%2016th%20century%0A%23defaultView%3AMap%0ASELECT%20%3Fitem%20%3FitemLabel%20%3Fahp_id%20%3Fcoordinate%0A%20%20WHERE%0A%20%20%7B%0A%20%20%20%20%20%20%3Fitem%20wdt%3AP81%20%3Fahp_id%20.%0A%20%20%20%20%20%20%3Fitem%20p%3AP63%20%3Fstatement%20.%0A%20%20%20%20%20%20%3Fstatement%20pq%3AP40%20%3Fpointintime%20.%0A%20%20%20%20%20%20%3Fstatement%20ps%3AP63%20%3Fcoordinate%20.%0A%20%20%20%20%20%20%3Fitem%20p%3AP79%20%3Fstatement1.%0A%20%20%20%20%20%20%3Fstatement1%20pq%3AP40%20%3Fpointintime1%20.%0A%20%20%20%20%20%20%3Fstatement1%20%28ps%3AP79%2F%28wdt%3AP56%2a%29%29%20wd%3AQ91.%20%20%23%20miejsca%20odbywania%20sejmiku%20partykularnego%0A%20%20%20%20%20%20FILTER%28YEAR%28%3Fpointintime%29%20%3D%201600%20%26%26%20YEAR%28%3Fpointintime1%29%20%3D%201600%29%0A%20%20%20%20%20%20SERVICE%20wikibase%3Alabel%20%7B%20bd%3AserviceParam%20wikibase%3Alanguage%20%22%5BAUTO_LANGUAGE%5D%2Cen%22.%20%7D%0A%20%20%7D Try It!]


=== Miejscowości, które w XVI wieku były miastami a obecnie są wsiami ===
=== Human settlements that were towns in the 16th century and are now villages ===
<syntaxhighlight lang="SPARQL" class="mw-highlight-lang-sparql">
<syntaxhighlight lang="SPARQL" class="mw-highlight-lang-sparql">
#title:Miejscowości, które w XVI wieku były miastami a obecnie są wsiami
#title:Human settlements that were towns in the 16th century and are now villages
#defaultView:Map
SELECT ?settlement ?settlementLabel ?coordinate16thCentury WHERE {
SELECT ?settlement ?settlementLabel ?coordinate16thCentury WHERE {
   # Warunek dla miejscowości
   # Warunek dla miejscowości
   ?settlement wdt:P27 wd:Q175698.
   ?settlement wdt:P27 wd:Q175698.


   # Miejscowość była miastem w XVI wieku
   # It was a town in the 16th century
   ?settlement p:P62 ?cityStatement.
   ?settlement p:P62 ?cityStatement.
   ?cityStatement ps:P62 wd:Q622;
   ?cityStatement ps:P62 wd:Q622;
Line 54: Line 57:
   FILTER(YEAR(?pointInTime16thCentury) > 1500 && YEAR(?pointInTime16thCentury) <= 1600)
   FILTER(YEAR(?pointInTime16thCentury) > 1500 && YEAR(?pointInTime16thCentury) <= 1600)


   # Miejscowość jest wsią w roku 2022
   # it is a village in the year 2022
   ?settlement p:P62 ?villageStatement.
   ?settlement p:P62 ?villageStatement.
   ?villageStatement ps:P62 wd:Q653;
   ?villageStatement ps:P62 wd:Q653;
Line 60: Line 63:
   FILTER(YEAR(?pointInTime2022) = 2022)
   FILTER(YEAR(?pointInTime2022) = 2022)


   # Pobieranie współrzędnych z XVI wieku
   # geographical coordinates from the 16th century
   ?settlement p:P63 ?coordStatement.
   ?settlement p:P63 ?coordStatement.
   ?coordStatement ps:P63 ?coordinate16thCentury;
   ?coordStatement ps:P63 ?coordinate16thCentury;
Line 69: Line 72:
}
}
</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/#%23title%3ATowns%20that%20were%20towns%20in%20the%2016th%20century%20and%20are%20now%20villages%0A%23defaultView%3AMap%0ASELECT%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%20It%20was%20a%20town%20in%20the%2016th%20century%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%20it%20is%20a%20village%20in%20the%20year%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%20Reading%20in%20geographical%20coordinates%20from%20the%2016th%20century%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 Try It!]


=== Osady historyczne z XVI wieku ===
=== Human settlements that existed in the 16th century but do not exist today ===
<syntaxhighlight lang="SPARQL" class="mw-highlight-lang-sparql">
<syntaxhighlight lang="SPARQL" class="mw-highlight-lang-sparql">
#title:miejscowości, które istniały w XVI wieku lecz nie istnieją współcześnie
#title:Human settlements that existed in the 16th century but do not exist today
#defaultView:Map
#defaultView:Map
SELECT ?settlement ?settlementLabel ?settlementDescription ?coordinate16thCentury WHERE {
SELECT ?settlement ?settlementLabel ?settlementDescription ?coordinate16thCentury WHERE {
   # Warunek dla elementów będących osadami
   # Condition for elements that are human settlements
   ?settlement wdt:P27 wd:Q175698.
   ?settlement wdt:P27 wd:Q175698.


   # Filtr na opis zawierający tekst "osada historyczna"
   # Filter for a description containing the text ‘historic settlement’
   ?settlement schema:description ?settlementDescription.
   ?settlement schema:description ?settlementDescription.
   FILTER(CONTAINS(LCASE(?settlementDescription), "osada historyczna"))
   FILTER(CONTAINS(LCASE(?settlementDescription), "osada historyczna"))
    
    
   # Pobieranie współrzędnych z XVI wieku
   # geographical coordinates from the 16th century
   ?settlement p:P63 ?coordStatement.
   ?settlement p:P63 ?coordStatement.
   ?coordStatement ps:P63 ?coordinate16thCentury;
   ?coordStatement ps:P63 ?coordinate16thCentury;
Line 89: Line 92:
   FILTER(YEAR(?coordTime) > 1500 && YEAR(?coordTime) <= 1600)
   FILTER(YEAR(?coordTime) > 1500 && YEAR(?coordTime) <= 1600)


   # Usługa pobierania etykiet i opisów w odpowiednim języku
   # Service for labels and descriptions in the indicated language
   SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],pl". }
   SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],pl". }
}
}
</syntaxhighlight>
</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!]
[https://wikihum.lab.dariah.pl/wdqs/#%23title%3ALocalities%20that%20existed%20in%20the%2016th%20century%20but%20do%20not%20exist%20today%0A%23defaultView%3AMap%0ASELECT%20%3Fsettlement%20%3FsettlementLabel%20%3FsettlementDescription%20%3Fcoordinate16thCentury%20WHERE%20%7B%0A%20%20%23%20Condition%20for%20elements%20that%20are%20human%20settlements%0A%20%20%3Fsettlement%20wdt%3AP27%20wd%3AQ175698.%0A%0A%20%20%23%20Filter%20for%20a%20description%20containing%20the%20text%20%E2%80%98historic%20settlement%E2%80%99%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%20geographical%20coordinates%20from%20the%2016th%20century%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%20Service%20for%20labels%20and%20descriptions%20in%20the%20indicated%20language%0A%20%20SERVICE%20wikibase%3Alabel%20%7B%20bd%3AserviceParam%20wikibase%3Alanguage%20%22%5BAUTO_LANGUAGE%5D%2Cpl%22.%20%7D%0A%7D Try It!]


=== Osoby urodzone w XVI wieku ===
=== People born in the 16th century ===
<syntaxhighlight lang="SPARQL" class="mw-highlight-lang-sparql">
<syntaxhighlight lang="SPARQL" class="mw-highlight-lang-sparql">
#title:lista osób urodzonych w XVI wieku
#title:People born in the 16th century
SELECT DISTINCT ?human ?humanLabel (YEAR(?date_of_birth) AS ?year) WHERE {
SELECT DISTINCT ?human ?humanLabel (YEAR(?date_of_birth) AS ?year) WHERE {
   ?human wdt:P27 wd:Q5.
   ?human wdt:P27 wd:Q5.
   ?human wdt:P11 ?date_of_birth.
   ?human wdt:P11 ?date_of_birth.
   FILTER (YEAR(?date_of_birth) > 1500 && YEAR(?date_of_birth) < 1601)
   FILTER (YEAR(?date_of_birth) >= 1500 && YEAR(?date_of_birth) < 1601)
   SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
   SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
}
ORDER BY ?date_of_birth
ORDER BY ?date_of_birth
</syntaxhighlight>
</syntaxhighlight>
[https://wikihum.lab.dariah.pl/wdqs/#%23%20lista%20os%C3%B3b%20urodzonych%20w%20XVI%20wieku%0ASELECT%20DISTINCT%20%3Fhuman%20%3FhumanLabel%20%28YEAR%28%3Fdate_of_birth%29%20AS%20%3Fyear%29%20WHERE%20%7B%0A%20%20%3Fhuman%20wdt%3AP27%20wd%3AQ5.%0A%20%20%3Fhuman%20wdt%3AP11%20%3Fdate_of_birth.%0A%20%20FILTER%20%28YEAR%28%3Fdate_of_birth%29%20%3E%201500%20%26%26%20YEAR%28%3Fdate_of_birth%29%20%3C%201601%29%0A%20%20SERVICE%20wikibase%3Alabel%20%7B%20bd%3AserviceParam%20wikibase%3Alanguage%20%22%5BAUTO_LANGUAGE%5D%2Cen%22.%20%7D%0A%7D%0AORDER%20BY%20%3Fdate_of_birth Try it!]
[https://wikihum.lab.dariah.pl/wdqs/#%23title%3APeople%20born%20in%20the%2016th%20century%0ASELECT%20DISTINCT%20%3Fhuman%20%3FhumanLabel%20%28YEAR%28%3Fdate_of_birth%29%20AS%20%3Fyear%29%20WHERE%20%7B%0A%20%20%3Fhuman%20wdt%3AP27%20wd%3AQ5.%0A%20%20%3Fhuman%20wdt%3AP11%20%3Fdate_of_birth.%0A%20%20FILTER%20%28YEAR%28%3Fdate_of_birth%29%20%3E%3D%201500%20%26%26%20YEAR%28%3Fdate_of_birth%29%20%3C%201601%29%0A%20%20SERVICE%20wikibase%3Alabel%20%7B%20bd%3AserviceParam%20wikibase%3Alanguage%20%22%5BAUTO_LANGUAGE%5D%2Cen%22.%20%7D%0A%7D Try it!]


=== Lista osób długowiecznych ===
=== List of long-lived persons ===
<syntaxhighlight lang="SPARQL" class="mw-highlight-lang-sparql">
<syntaxhighlight lang="SPARQL" class="mw-highlight-lang-sparql">
#title:Osoby ze znaną datą urodzin i śmierci żyjące pow. 90 lat
#title:Persons with known date of birth and death who have lived beyond 90 years
SELECT ?item ?itemLabel ?age  
SELECT DISTINCT ?item ?itemLabel ?age  
WHERE {
WHERE {
         ?item wdt:P27 wd:Q5 .
         ?item wdt:P27 wd:Q5 .
Line 128: Line 131:
ORDER BY DESC(?age)
ORDER BY DESC(?age)
</syntaxhighlight>
</syntaxhighlight>
[https://wikihum.lab.dariah.pl/wdqs/#%23%20lista%20os%C3%B3b%20d%C5%82ugowiecznych%20%28pow.%2090%20lat%29%0ASELECT%20%3Fitem%20%3FitemLabel%20%3Fage%20%0AWHERE%20%7B%0A%20%20%20%20%20%20%20%20%3Fitem%20wdt%3AP27%20wd%3AQ5%20.%0A%20%20%20%20%20%20%20%20%3Fitem%20p%3AP11%2Fpsv%3AP11%20%3Fbirth_date_node%20.%20%0A%20%20%20%20%20%20%20%20%3Fitem%20p%3AP12%2Fpsv%3AP12%20%3Fdeath_date_node%20.%0A%20%20%20%20%20%20%20%20%3Fbirth_date_node%20wikibase%3AtimeValue%20%3Fbirth_date.%0A%20%20%20%20%20%20%20%20%3Fdeath_date_node%20wikibase%3AtimeValue%20%3Fdeath_date.%0A%20%20%20%20%20%20%20%20%3Fbirth_date_node%20wikibase%3AtimePrecision%20%3Fbirth_precision.%0A%20%20%20%20%20%20%20%20%3Fdeath_date_node%20wikibase%3AtimePrecision%20%3Fdeath_precision.%0A%20%20%20%20%20%20%20%20BIND%28%20YEAR%28%3Fdeath_date%29%20-%20YEAR%28%3Fbirth_date%29%20-%20%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20IF%28MONTH%28%3Fdeath_date%29%3CMONTH%28%3Fbirth_date%29%20%7C%7C%20%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%28MONTH%28%3Fdeath_date%29%3DMONTH%28%3Fbirth_date%29%20%26%26%20DAY%28%3Fdeath_date%29%3CDAY%28%3Fbirth_date%29%29%2C1%2C0%29%20AS%20%3Fage%20%29%0A%20%20%20%20%20%20%20%20FILTER%28%3Fage%20%3E%2090%20%26%26%20%3Fbirth_precision%20%3E%3D%209%20%26%26%20%3Fdeath_precision%20%3E%3D%209%29.%20%0A%20%20%20%20%20%20%20%20SERVICE%20wikibase%3Alabel%20%7B%20bd%3AserviceParam%20wikibase%3Alanguage%20%22%5BAUTO_LANGUAGE%5D%2Cen%22.%20%7D%0A%7D%0AORDER%20BY%20DESC%28%3Fage%29 Try It!]
[https://wikihum.lab.dariah.pl/wdqs/#%23title%3APersons%20with%20known%20date%20of%20birth%20and%20death%20who%20have%20lived%20beyond%2090%20years%0ASELECT%20DISTINCT%20%3Fitem%20%3FitemLabel%20%3Fage%20%0AWHERE%20%7B%0A%20%20%20%20%20%20%20%20%3Fitem%20wdt%3AP27%20wd%3AQ5%20.%0A%20%20%20%20%20%20%20%20%3Fitem%20p%3AP11%2Fpsv%3AP11%20%3Fbirth_date_node%20.%20%0A%20%20%20%20%20%20%20%20%3Fitem%20p%3AP12%2Fpsv%3AP12%20%3Fdeath_date_node%20.%0A%20%20%20%20%20%20%20%20%3Fbirth_date_node%20wikibase%3AtimeValue%20%3Fbirth_date.%0A%20%20%20%20%20%20%20%20%3Fdeath_date_node%20wikibase%3AtimeValue%20%3Fdeath_date.%0A%20%20%20%20%20%20%20%20%3Fbirth_date_node%20wikibase%3AtimePrecision%20%3Fbirth_precision.%0A%20%20%20%20%20%20%20%20%3Fdeath_date_node%20wikibase%3AtimePrecision%20%3Fdeath_precision.%0A%20%20%20%20%20%20%20%20BIND%28%20YEAR%28%3Fdeath_date%29%20-%20YEAR%28%3Fbirth_date%29%20-%20%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20IF%28MONTH%28%3Fdeath_date%29%3CMONTH%28%3Fbirth_date%29%20%7C%7C%20%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%28MONTH%28%3Fdeath_date%29%3DMONTH%28%3Fbirth_date%29%20%26%26%20DAY%28%3Fdeath_date%29%3CDAY%28%3Fbirth_date%29%29%2C1%2C0%29%20AS%20%3Fage%20%29%0A%20%20%20%20%20%20%20%20FILTER%28%3Fage%20%3E%2090%20%26%26%20%3Fbirth_precision%20%3E%3D%209%20%26%26%20%3Fdeath_precision%20%3E%3D%209%29.%20%0A%20%20%20%20%20%20%20%20SERVICE%20wikibase%3Alabel%20%7B%20bd%3AserviceParam%20wikibase%3Alanguage%20%22%5BAUTO_LANGUAGE%5D%2Cen%22.%20%7D%0A%7D%0AORDER%20BY%20DESC%28%3Fage%29 Try It!]


=== Osoby żyjące w XVI wieku - urodzone, zmarłe lub aktywne w tym okresie ===
=== Persons living in the 16th century - born, deceased or active during this period ===
<syntaxhighlight lang="SPARQL" class="mw-highlight-lang-sparql">
<syntaxhighlight lang="SPARQL" class="mw-highlight-lang-sparql">
#title:Osoby żyjące w XVI wieku - urodzone, zmarłe lub aktywne w tym okresie
#title:Persons living in the 16th century - born, deceased or active during this period
SELECT * WHERE
SELECT * WHERE
{  
{  
Line 160: Line 163:
ORDER BY ?itemLabel
ORDER BY ?itemLabel
</syntaxhighlight>
</syntaxhighlight>
[https://wikihum.lab.dariah.pl/wdqs/#SELECT%20%2a%20WHERE%0A%7B%20%0A%20%0A%20%20%7B%20%0A%20%20%20%20SELECT%20DISTINCT%20%3Fitem%20%3FitemLabel%20WHERE%20%7B%0A%20%20%20%20%3Fitem%20wdt%3AP27%20wd%3AQ5.%0A%20%20%20%20%3Fitem%20wdt%3AP11%20%3Fbirthdate.%0A%20%20%20%20%3Fitem%20wdt%3AP12%20%3Fdeathdate.%20%0A%20%20%20%20FILTER%28%0A%20%20%20%20%20%20%20%20%20%20%20%28%28%3Fbirthdate%20%3E%3D%20%221501-01-01T00%3A00%3A00Z%22%5E%5Exsd%3AdateTime%29%20%26%26%20%28%3Fbirthdate%20%3C%3D%20%221600-12-31T00%3A00%3A00Z%22%5E%5Exsd%3AdateTime%29%29%20%0A%20%20%20%20%20%20%20%20%20%20%20%7C%7C%0A%20%20%20%20%20%20%20%20%20%20%20%28%28%3Fdeathdate%20%3E%3D%20%221501-01-01T00%3A00%3A00Z%22%5E%5Exsd%3AdateTime%29%20%26%26%20%28%3Fdeathdate%20%3C%3D%20%221600-12-31T00%3A00%3A00Z%22%5E%5Exsd%3AdateTime%29%29%0A%20%20%20%20%20%20%20%20%20%20%29%20%0A%20%20%20%20SERVICE%20wikibase%3Alabel%20%7B%20bd%3AserviceParam%20wikibase%3Alanguage%20%22%5BAUTO_LANGUAGE%5D%2Cen%22.%20%7D%7D%0A%20%20%7D%0AUNION%0A%20%20%7B%0A%20%20%20SELECT%20DISTINCT%20%3Fitem%20%3FitemLabel%20WHERE%20%7B%0A%20%20%20%20%3Fitem%20wdt%3AP27%20wd%3AQ5.%0A%20%20%20%20%3Fitem%20wdt%3AP87%20%3Ffluorit.%0A%20%20%20%20FILTER%20%28%28%3Ffluorit%20%3E%3D%20%22%2B1501-01-01T00%3A00%3A00Z%22%5E%5Exsd%3AdateTime%29%20%26%26%20%28%3Ffluorit%20%3C%3D%20%22%2B1600-01-01T00%3A00%3A00Z%22%5E%5Exsd%3AdateTime%29%29%0A%20%20%20%20SERVICE%20wikibase%3Alabel%20%7B%20bd%3AserviceParam%20wikibase%3Alanguage%20%22%5BAUTO_LANGUAGE%5D%2Cen%22.%20%7D%7D%0A%20%20%7D%0A%20%20%20%0A%7D%0AORDER%20BY%20%3FitemLabel Try It!]
[https://wikihum.lab.dariah.pl/wdqs/#%23title%3APersons%20living%20in%20the%2016th%20century%20-%20born%2C%20deceased%20or%20active%20during%20this%20period%0ASELECT%20%2a%20WHERE%0A%7B%20%0A%20%0A%20%20%7B%20%0A%20%20%20%20SELECT%20DISTINCT%20%3Fitem%20%3FitemLabel%20WHERE%20%7B%0A%20%20%20%20%3Fitem%20wdt%3AP27%20wd%3AQ5.%0A%20%20%20%20%3Fitem%20wdt%3AP11%20%3Fbirthdate.%0A%20%20%20%20%3Fitem%20wdt%3AP12%20%3Fdeathdate.%20%0A%20%20%20%20FILTER%28%0A%20%20%20%20%20%20%20%20%20%20%20%28%28%3Fbirthdate%20%3E%3D%20%221501-01-01T00%3A00%3A00Z%22%5E%5Exsd%3AdateTime%29%20%26%26%20%28%3Fbirthdate%20%3C%3D%20%221600-12-31T00%3A00%3A00Z%22%5E%5Exsd%3AdateTime%29%29%20%0A%20%20%20%20%20%20%20%20%20%20%20%7C%7C%0A%20%20%20%20%20%20%20%20%20%20%20%28%28%3Fdeathdate%20%3E%3D%20%221501-01-01T00%3A00%3A00Z%22%5E%5Exsd%3AdateTime%29%20%26%26%20%28%3Fdeathdate%20%3C%3D%20%221600-12-31T00%3A00%3A00Z%22%5E%5Exsd%3AdateTime%29%29%0A%20%20%20%20%20%20%20%20%20%20%29%20%0A%20%20%20%20SERVICE%20wikibase%3Alabel%20%7B%20bd%3AserviceParam%20wikibase%3Alanguage%20%22%5BAUTO_LANGUAGE%5D%2Cen%22.%20%7D%7D%0A%20%20%7D%0AUNION%0A%20%20%7B%0A%20%20%20SELECT%20DISTINCT%20%3Fitem%20%3FitemLabel%20WHERE%20%7B%0A%20%20%20%20%3Fitem%20wdt%3AP27%20wd%3AQ5.%0A%20%20%20%20%3Fitem%20wdt%3AP87%20%3Ffluorit.%0A%20%20%20%20FILTER%20%28%28%3Ffluorit%20%3E%3D%20%22%2B1501-01-01T00%3A00%3A00Z%22%5E%5Exsd%3AdateTime%29%20%26%26%20%28%3Ffluorit%20%3C%3D%20%22%2B1600-01-01T00%3A00%3A00Z%22%5E%5Exsd%3AdateTime%29%29%0A%20%20%20%20SERVICE%20wikibase%3Alabel%20%7B%20bd%3AserviceParam%20wikibase%3Alanguage%20%22%5BAUTO_LANGUAGE%5D%2Cen%22.%20%7D%7D%0A%20%20%7D%0A%20%20%20%0A%7D%0AORDER%20BY%20%3FitemLabel Try It!]


=== Miejscowości, które w XVI wieku były miastami ===
=== Human settlements that were cities in the 16th century ===
<syntaxhighlight lang="SPARQL" class="mw-highlight-lang-sparql">
<syntaxhighlight lang="SPARQL" class="mw-highlight-lang-sparql">
#title:Miejscowości które w XVI wieku były miastami
#title:Human settlements that were cities in the 16th century
#defaultView:Map
SELECT ?item ?itemLabel ?ahp_id ?coordinate
SELECT ?item ?itemLabel ?ahp_id ?coordinate
   WHERE
   WHERE
Line 179: Line 183:
   }
   }
</syntaxhighlight>
</syntaxhighlight>
[https://wikihum.lab.dariah.pl/wdqs/#%23Miejscowo%C5%9Bci%20kt%C3%B3re%20w%20XVI%20wieku%20by%C5%82y%20miastami%0ASELECT%20%3Fitem%20%3FitemLabel%20%3Fahp_id%20%3Fcoordinate%0A%20%20WHERE%0A%20%20%7B%0A%20%20%20%20%20%20%3Fitem%20wdt%3AP81%20%3Fahp_id%20.%0A%20%20%20%20%20%20%3Fitem%20p%3AP63%20%3Fstatement%20.%0A%20%20%20%20%20%20%3Fstatement%20pq%3AP40%20%3Fpointintime%20.%20%20%0A%20%20%20%20%20%20%3Fitem%20p%3AP62%20%3Fstatement1.%0A%20%20%20%20%20%20%3Fstatement1%20pq%3AP40%20%3Fpointintime1%20.%0A%20%20%20%20%20%20%3Fstatement%20ps%3AP63%20%3Fcoordinate%20.%0A%20%20%20%20%20%20%3Fstatement1%20%28ps%3AP62%2F%28wdt%3AP56%2a%29%29%20wd%3AQ622.%0A%20%20%20%20%20%20FILTER%28YEAR%28%3Fpointintime%29%20%3D%201600%20%26%26%20YEAR%28%3Fpointintime1%29%20%3D%201600%29%0A%20%20%20%20%20%20SERVICE%20wikibase%3Alabel%20%7B%20bd%3AserviceParam%20wikibase%3Alanguage%20%22%5BAUTO_LANGUAGE%5D%2Cen%22.%20%7D%0A%20%20%7D Try It!]
[https://wikihum.lab.dariah.pl/wdqs/#%23title%3APlaces%20that%20were%20cities%20in%20the%2016th%20century%0A%23defaultView%3AMap%0ASELECT%20%3Fitem%20%3FitemLabel%20%3Fahp_id%20%3Fcoordinate%0A%20%20WHERE%0A%20%20%7B%0A%20%20%20%20%20%20%3Fitem%20wdt%3AP81%20%3Fahp_id%20.%0A%20%20%20%20%20%20%3Fitem%20p%3AP63%20%3Fstatement%20.%0A%20%20%20%20%20%20%3Fstatement%20pq%3AP40%20%3Fpointintime%20.%20%20%0A%20%20%20%20%20%20%3Fitem%20p%3AP62%20%3Fstatement1.%0A%20%20%20%20%20%20%3Fstatement1%20pq%3AP40%20%3Fpointintime1%20.%0A%20%20%20%20%20%20%3Fstatement%20ps%3AP63%20%3Fcoordinate%20.%0A%20%20%20%20%20%20%3Fstatement1%20%28ps%3AP62%2F%28wdt%3AP56%2a%29%29%20wd%3AQ622.%0A%20%20%20%20%20%20FILTER%28YEAR%28%3Fpointintime%29%20%3D%201600%20%26%26%20YEAR%28%3Fpointintime1%29%20%3D%201600%29%0A%20%20%20%20%20%20SERVICE%20wikibase%3Alabel%20%7B%20bd%3AserviceParam%20wikibase%3Alanguage%20%22%5BAUTO_LANGUAGE%5D%2Cen%22.%20%7D%0A%20%20%7D Try It!]


=== Miejscowości, które w XVI wieku były własnością monarszą ===
=== Human settlements that were monarchically owned in the 16th century ===
<syntaxhighlight lang="SPARQL" class="mw-highlight-lang-sparql">
<syntaxhighlight lang="SPARQL" class="mw-highlight-lang-sparql">
#title:Miejscowości, które w XVI wieku były własnością monarszą
#title:Human settlements that were monarchically owned in the 16th century
#defaultView:Map
SELECT ?item ?itemLabel ?ahp_id ?coordinate
SELECT ?item ?itemLabel ?ahp_id ?coordinate
   WHERE
   WHERE
Line 199: Line 204:
   }
   }
</syntaxhighlight>
</syntaxhighlight>
[https://wikihum.lab.dariah.pl/wdqs/#%23Miejscowo%C5%9Bci%20kt%C3%B3re%20w%20XVI%20wieku%20by%C5%82y%20w%C5%82asno%C5%9Bci%C4%85%20monarsz%C4%85%0ASELECT%20%3Fitem%20%3FitemLabel%20%3Fahp_id%20%3Fcoordinate%0A%20%20WHERE%0A%20%20%7B%0A%20%20%20%20%20%20%3Fitem%20wdt%3AP81%20%3Fahp_id%20.%0A%20%20%20%20%20%20%3Fitem%20p%3AP63%20%3Fstatement%20.%0A%20%20%20%20%20%20%3Fitem%20p%3AP134%20%3Fstatement1.%0A%20%20%20%20%20%20%3Fstatement%20pq%3AP40%20%3Fpointintime%20.%0A%20%20%20%20%20%20%3Fstatement1%20pq%3AP40%20%3Fpointintime1%20.%0A%20%20%20%20%20%20%3Fstatement%20ps%3AP63%20%3Fcoordinate%20.%0A%20%20%20%20%20%20%3Fstatement1%20%28ps%3AP134%2F%28wdt%3AP56%2a%29%29%20wd%3AQ64.%0A%20%20%20%20%20%20FILTER%28YEAR%28%3Fpointintime%29%20%3D%201600%29%0A%20%20%20%20%20%20FILTER%28YEAR%28%3Fpointintime1%29%20%3D%201600%29%0A%20%20%20%20%20%20SERVICE%20wikibase%3Alabel%20%7B%20bd%3AserviceParam%20wikibase%3Alanguage%20%22%5BAUTO_LANGUAGE%5D%2Cen%22.%20%7D%0A%20%20%7D Try It!]
[https://wikihum.lab.dariah.pl/wdqs/#%23title%3ASettlements%20that%20were%20monarchically%20owned%20in%20the%2016th%20century%0A%23defaultView%3AMap%0ASELECT%20%3Fitem%20%3FitemLabel%20%3Fahp_id%20%3Fcoordinate%0A%20%20WHERE%0A%20%20%7B%0A%20%20%20%20%20%20%3Fitem%20wdt%3AP81%20%3Fahp_id%20.%0A%20%20%20%20%20%20%3Fitem%20p%3AP63%20%3Fstatement%20.%0A%20%20%20%20%20%20%3Fitem%20p%3AP134%20%3Fstatement1.%0A%20%20%20%20%20%20%3Fstatement%20pq%3AP40%20%3Fpointintime%20.%0A%20%20%20%20%20%20%3Fstatement1%20pq%3AP40%20%3Fpointintime1%20.%0A%20%20%20%20%20%20%3Fstatement%20ps%3AP63%20%3Fcoordinate%20.%0A%20%20%20%20%20%20%3Fstatement1%20%28ps%3AP134%2F%28wdt%3AP56%2a%29%29%20wd%3AQ64.%20%20%23%20Q64%20-%20w%C5%82asno%C5%9B%C4%87%20monarsza%2C%20Q63%20-%20duchowna%2C%20Q65%20-%20mieszcza%C5%84ska%2C%20Q66%20-%20szlachecka%0A%20%20%20%20%20%20FILTER%28YEAR%28%3Fpointintime%29%20%3D%201600%29%0A%20%20%20%20%20%20FILTER%28YEAR%28%3Fpointintime1%29%20%3D%201600%29%0A%20%20%20%20%20%20SERVICE%20wikibase%3Alabel%20%7B%20bd%3AserviceParam%20wikibase%3Alanguage%20%22%5BAUTO_LANGUAGE%5D%2Cen%22.%20%7D%0A%20%20%7D Try It!]


=== Miejscowości według typu własności w XVI wieku ===
=== Human settlements by settlement ownership type in the 16th century ===
<syntaxhighlight lang="SPARQL" class="mw-highlight-lang-sparql">
<syntaxhighlight lang="SPARQL" class="mw-highlight-lang-sparql">
#title:Miejscowości według typu własności w XVI wieku
#title:Human settlements by settlement ownership type in the 16th century
#defaultView:Map
#defaultView:Map
SELECT DISTINCT ?item ?itemLabel ?ahp_id ?coordinate (SAMPLE(?layer) AS ?layer)
SELECT ?item ?itemLabel ?ahp_id ?coordinate ?layer
   WHERE
   WHERE
   {
   {
Line 215: Line 220:
       ?statement ps:P63 ?coordinate .
       ?statement ps:P63 ?coordinate .
       ?statement1 (ps:P134/(wdt:P56*)) ?typ
       ?statement1 (ps:P134/(wdt:P56*)) ?typ
       # Q64 - własność monarsza, Q63 - duchowna, Q65 - mieszczańska, Q66 - szlachecka
       # Q64 - monarchical property, Q63 - church property, Q65 - town property, Q66 - noble property
       BIND(
       BIND(
       IF(?typ = wd:Q64, "monarsza",
       IF(?typ = wd:Q64, "monarchical",
       IF(?typ = wd:Q63, "duchowna",
       IF(?typ = wd:Q63, "church",
       IF(?typ = wd:Q65, "mieszczańska",
       IF(?typ = wd:Q65, "town",
       IF(?typ = wd:Q66, "szlachecka",
       IF(?typ = wd:Q66, "noble",
       "inna"))))
       "inna"))))
       AS ?layer).
       AS ?layer).
Line 227: Line 232:
       SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
       SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
   }
   }
GROUP BY ?item ?itemLabel ?ahp_id ?coordinate
GROUP BY ?item ?itemLabel ?ahp_id ?coordinate ?layer
</syntaxhighlight>
</syntaxhighlight>
[https://wikihum.lab.dariah.pl/wdqs/#%23Miejscowo%C5%9Bci%20wed%C5%82ug%20typu%20w%C5%82asno%C5%9Bci%20w%20XVI%20wieku%0A%23defaultView%3AMap%0ASELECT%20DISTINCT%20%3Fitem%20%3FitemLabel%20%3Fahp_id%20%3Fcoordinate%20%28SAMPLE%28%3Flayer%29%20AS%20%3Flayer%29%0A%20%20WHERE%0A%20%20%7B%0A%20%20%20%20%20%20%3Fitem%20wdt%3AP81%20%3Fahp_id%20.%0A%20%20%20%20%20%20%3Fitem%20p%3AP63%20%3Fstatement%20.%0A%20%20%20%20%20%20%3Fitem%20p%3AP134%20%3Fstatement1.%0A%20%20%20%20%20%20%3Fstatement%20pq%3AP40%20%3Fpointintime%20.%0A%20%20%20%20%20%20%3Fstatement1%20pq%3AP40%20%3Fpointintime1%20.%0A%20%20%20%20%20%20%3Fstatement%20ps%3AP63%20%3Fcoordinate%20.%0A%20%20%20%20%20%20%3Fstatement1%20%28ps%3AP134%2F%28wdt%3AP56%2a%29%29%20%3Ftyp%0A%20%20%20%20%20%20%23%3Fstatement1%20%28ps%3AP134%2F%28wdt%3AP56%2a%29%29%20wd%3AQ64.%20%20%23%20Q64%20-%20w%C5%82asno%C5%9B%C4%87%20monarsza%2C%20Q63%20-%20duchowna%2C%20Q65%20-%20mieszcza%C5%84ska%2C%20Q66%20-%20szlachecka%0A%20%20%20%20%20%20BIND%28%0A%20%20%20%20%20%20IF%28%3Ftyp%20%3D%20wd%3AQ64%2C%20%22monarsza%22%2C%0A%20%20%20%20%20%20IF%28%3Ftyp%20%3D%20wd%3AQ63%2C%20%22duchowna%22%2C%0A%20%20%20%20%20%20IF%28%3Ftyp%20%3D%20wd%3AQ65%2C%20%22mieszcza%C5%84ska%22%2C%0A%20%20%20%20%20%20IF%28%3Ftyp%20%3D%20wd%3AQ66%2C%20%22szlachecka%22%2C%0A%20%20%20%20%20%20%22inna%22%29%29%29%29%0A%20%20%20%20%20%20AS%20%3Flayer%29.%0A%20%20%20%20%20%20FILTER%28YEAR%28%3Fpointintime%29%20%3D%201600%29%0A%20%20%20%20%20%20FILTER%28YEAR%28%3Fpointintime1%29%20%3D%201600%29%0A%20%20%20%20%20%20SERVICE%20wikibase%3Alabel%20%7B%20bd%3AserviceParam%20wikibase%3Alanguage%20%22%5BAUTO_LANGUAGE%5D%2Cen%22.%20%7D%0A%20%20%7D%0AGROUP%20BY%20%3Fitem%20%3FitemLabel%20%3Fahp_id%20%3Fcoordinate Try It!]
[https://wikihum.lab.dariah.pl/wdqs/#%23title%3AHuman%20settlements%20by%20settlement%20ownership%20type%20in%20the%2016th%20century%0A%23defaultView%3AMap%0ASELECT%20%3Fitem%20%3FitemLabel%20%3Fahp_id%20%3Fcoordinate%20%3Flayer%0A%20%20WHERE%0A%20%20%7B%0A%20%20%20%20%20%20%3Fitem%20wdt%3AP81%20%3Fahp_id%20.%0A%20%20%20%20%20%20%3Fitem%20p%3AP63%20%3Fstatement%20.%0A%20%20%20%20%20%20%3Fitem%20p%3AP134%20%3Fstatement1.%0A%20%20%20%20%20%20%3Fstatement%20pq%3AP40%20%3Fpointintime%20.%0A%20%20%20%20%20%20%3Fstatement1%20pq%3AP40%20%3Fpointintime1%20.%0A%20%20%20%20%20%20%3Fstatement%20ps%3AP63%20%3Fcoordinate%20.%0A%20%20%20%20%20%20%3Fstatement1%20%28ps%3AP134%2F%28wdt%3AP56%2a%29%29%20%3Ftyp%0A%20%20%20%20%20%20%23%20Q64%20-%20royal%20property%2C%20Q63%20-%20ecclesiastical%20property%2C%20Q65%20-%20townsmen%20property%2C%20Q66%20-%20noble%20property%0A%20%20%20%20%20%20BIND%28%0A%20%20%20%20%20%20IF%28%3Ftyp%20%3D%20wd%3AQ64%2C%20%22royal%22%2C%0A%20%20%20%20%20%20IF%28%3Ftyp%20%3D%20wd%3AQ63%2C%20%22ecclesiastical%22%2C%0A%20%20%20%20%20%20IF%28%3Ftyp%20%3D%20wd%3AQ65%2C%20%22townsmen%22%2C%0A%20%20%20%20%20%20IF%28%3Ftyp%20%3D%20wd%3AQ66%2C%20%22noble%22%2C%0A%20%20%20%20%20%20%22inna%22%29%29%29%29%0A%20%20%20%20%20%20AS%20%3Flayer%29.%0A%20%20%20%20%20%20FILTER%28YEAR%28%3Fpointintime%29%20%3D%201600%29%0A%20%20%20%20%20%20FILTER%28YEAR%28%3Fpointintime1%29%20%3D%201600%29%0A%20%20%20%20%20%20SERVICE%20wikibase%3Alabel%20%7B%20bd%3AserviceParam%20wikibase%3Alanguage%20%22%5BAUTO_LANGUAGE%5D%2Cen%22.%20%7D%0A%20%20%7D%0AGROUP%20BY%20%3Fitem%20%3FitemLabel%20%3Fahp_id%20%3Fcoordinate%20%3Flayer Try It!]


=== Podsumowanie liczby osób urodzonych w poszczególnych stuleciach ===
=== Summary of the number of people born in each century ===
<syntaxhighlight lang="SPARQL" class="mw-highlight-lang-sparql">
<syntaxhighlight lang="SPARQL" class="mw-highlight-lang-sparql">
#title:Liczba osób urodzonych w poszczególnych stuleciach
#title:Summary of the number of people born in each century
#defaultView:BarChart
#defaultView:BarChart
SELECT ?centuryRoman (COUNT(*) AS ?count)
SELECT ?centuryRoman (COUNT(*) AS ?count)
Line 240: Line 245:
           wdt:P11 ?birthDate .
           wdt:P11 ?birthDate .


   # Obliczenie stulecia na podstawie roku urodzenia
   # Calculation of centenary based on year of birth
   BIND(CEIL((YEAR(?birthDate) - 1) / 100) AS ?century)
   BIND(CEIL((YEAR(?birthDate) - 1) / 100) AS ?century)
   BIND(
   BIND(
Line 255: Line 260:
     IF(?century = 20, "XX",
     IF(?century = 20, "XX",
     ""))))))))))) AS ?centuryRoman).
     ""))))))))))) AS ?centuryRoman).
   # odfiltrowanie błędnych danych
   # filtering out incorrect data
   FILTER(?century >= 10 && ?century < 21)
   FILTER(?century >= 10 && ?century < 21)
}
}
Line 261: Line 266:
ORDER BY ?count
ORDER BY ?count
</syntaxhighlight>
</syntaxhighlight>
[https://wikihum.lab.dariah.pl/wdqs/#%23defaultView%3ABarChart%0ASELECT%20%3FcenturyRoman%20%28COUNT%28%2a%29%20AS%20%3Fcount%29%0AWHERE%20%7B%0A%20%20%3Fperson%20wdt%3AP27%20wd%3AQ5%3B%0A%20%20%20%20%20%20%20%20%20%20wdt%3AP11%20%3FbirthDate%20.%0A%0A%20%20%23%20Obliczenie%20stulecia%20na%20podstawie%20roku%20urodzenia%0A%20%20BIND%28CEIL%28%28YEAR%28%3FbirthDate%29%20-%201%29%20%2F%20100%29%20AS%20%3Fcentury%29%0A%20%20BIND%28%0A%20%20%20%20IF%28%3Fcentury%20%3D%2010%2C%20%22X%22%2C%0A%20%20%20%20IF%28%3Fcentury%20%3D%2011%2C%20%22XI%22%2C%0A%20%20%20%20IF%28%3Fcentury%20%3D%2012%2C%20%22XII%22%2C%0A%20%20%20%20IF%28%3Fcentury%20%3D%2013%2C%20%22XIII%22%2C%0A%20%20%20%20IF%28%3Fcentury%20%3D%2014%2C%20%22XIV%22%2C%0A%20%20%20%20IF%28%3Fcentury%20%3D%2015%2C%20%22XV%22%2C%0A%20%20%20%20IF%28%3Fcentury%20%3D%2016%2C%20%22XVI%22%2C%0A%20%20%20%20IF%28%3Fcentury%20%3D%2017%2C%20%22XVII%22%2C%0A%20%20%20%20IF%28%3Fcentury%20%3D%2018%2C%20%22XVIII%22%2C%0A%20%20%20%20IF%28%3Fcentury%20%3D%2019%2C%20%22XIX%22%2C%0A%20%20%20%20IF%28%3Fcentury%20%3D%2020%2C%20%22XX%22%2C%0A%20%20%20%20%22%22%29%29%29%29%29%29%29%29%29%29%29%20AS%20%3FcenturyRoman%29.%0A%20%20%23%20odfiltrowanie%20b%C5%82%C4%99dnych%20danych%20%0A%20%20FILTER%28%3Fcentury%20%3E%3D%2010%20%26%26%20%3Fcentury%20%3C%2021%29%0A%7D%0AGROUP%20BY%20%3FcenturyRoman%0AORDER%20BY%20%3Fcount Try It!]
[https://wikihum.lab.dariah.pl/wdqs/#%23title%3ASummary%20of%20the%20number%20of%20people%20born%20in%20each%20century%0A%23defaultView%3ABarChart%0ASELECT%20%3FcenturyRoman%20%28COUNT%28%2a%29%20AS%20%3Fcount%29%0AWHERE%20%7B%0A%20%20%3Fperson%20wdt%3AP27%20wd%3AQ5%3B%0A%20%20%20%20%20%20%20%20%20%20wdt%3AP11%20%3FbirthDate%20.%0A%0A%20%20%23%20Calculation%20of%20centenary%20based%20on%20year%20of%20birth%0A%20%20BIND%28CEIL%28%28YEAR%28%3FbirthDate%29%20-%201%29%20%2F%20100%29%20AS%20%3Fcentury%29%0A%20%20BIND%28%0A%20%20%20%20IF%28%3Fcentury%20%3D%2010%2C%20%22X%22%2C%0A%20%20%20%20IF%28%3Fcentury%20%3D%2011%2C%20%22XI%22%2C%0A%20%20%20%20IF%28%3Fcentury%20%3D%2012%2C%20%22XII%22%2C%0A%20%20%20%20IF%28%3Fcentury%20%3D%2013%2C%20%22XIII%22%2C%0A%20%20%20%20IF%28%3Fcentury%20%3D%2014%2C%20%22XIV%22%2C%0A%20%20%20%20IF%28%3Fcentury%20%3D%2015%2C%20%22XV%22%2C%0A%20%20%20%20IF%28%3Fcentury%20%3D%2016%2C%20%22XVI%22%2C%0A%20%20%20%20IF%28%3Fcentury%20%3D%2017%2C%20%22XVII%22%2C%0A%20%20%20%20IF%28%3Fcentury%20%3D%2018%2C%20%22XVIII%22%2C%0A%20%20%20%20IF%28%3Fcentury%20%3D%2019%2C%20%22XIX%22%2C%0A%20%20%20%20IF%28%3Fcentury%20%3D%2020%2C%20%22XX%22%2C%0A%20%20%20%20%22%22%29%29%29%29%29%29%29%29%29%29%29%20AS%20%3FcenturyRoman%29.%0A%20%20%23%20filtering%20out%20incorrect%20data%0A%20%20FILTER%28%3Fcentury%20%3E%3D%2010%20%26%26%20%3Fcentury%20%3C%2021%29%0A%7D%0AGROUP%20BY%20%3FcenturyRoman%0AORDER%20BY%20%3Fcount Try It!]
 
=== Persons with the surname Sobieski born in the 16th and 17th centuries ===
<syntaxhighlight lang="SPARQL" class="mw-highlight-lang-sparql">
#title:Persons with the surname Sobieski born in the 16th and 17th centuries
#defaultView:Timeline
SELECT DISTINCT ?person (MAX(?deathDate) as ?ddate) (MAX(?birthDate) as ?bdate) (MAX(?personLabel) as ?label) WHERE {
  # Condition for persons
  ?person wdt:P27 wd:Q5.
  ?person rdfs:label ?personLabel.
 
  # Collection of date of birth
  ?person p:P11 ?birthStatement.
  ?birthStatement ps:P11 ?birthDate.
 
  # Collection of date of death
  ?person p:P12 ?deathStatement.
  ?deathStatement ps:P12 ?deathDate.
 
  # date of birth filtering - range 1501-1700 and surname ‘Sobieski’ in the label
  FILTER(CONTAINS(LCASE(?personLabel), "sobieski") && ?birthDate >= "1501-01-01T00:00:00Z"^^xsd:dateTime && ?birthDate <= "1700-12-31T23:59:59Z"^^xsd:dateTime)
 
} GROUP BY ?person
ORDER BY ?personLabel
</syntaxhighlight>
[https://wikihum.lab.dariah.pl/wdqs/#%23title%3APersons%20with%20the%20surname%20Sobieski%20born%20in%20the%2016th%20and%2017th%20centuries%0A%23defaultView%3ATimeline%0ASELECT%20DISTINCT%20%3Fperson%20%28MAX%28%3FdeathDate%29%20as%20%3Fddate%29%20%28MAX%28%3FbirthDate%29%20as%20%3Fbdate%29%20%28MAX%28%3FpersonLabel%29%20as%20%3Flabel%29%20WHERE%20%7B%0A%20%20%23%20Condition%20for%20persons%0A%20%20%3Fperson%20wdt%3AP27%20wd%3AQ5.%0A%20%20%3Fperson%20rdfs%3Alabel%20%3FpersonLabel.%0A%0A%20%20%23%20Collection%20of%20date%20of%20birth%20%0A%20%20%3Fperson%20p%3AP11%20%3FbirthStatement.%0A%20%20%3FbirthStatement%20ps%3AP11%20%3FbirthDate.%0A%20%20%0A%20%20%23%20Collection%20of%20date%20of%20death%0A%20%20%3Fperson%20p%3AP12%20%3FdeathStatement.%0A%20%20%3FdeathStatement%20ps%3AP12%20%3FdeathDate.%0A%20%20%0A%20%20%23%20date%20of%20birth%20filtering%20-%20range%201501-1700%20and%20surname%20%E2%80%98Sobieski%E2%80%99%20in%20the%20label%0A%20%20FILTER%28CONTAINS%28LCASE%28%3FpersonLabel%29%2C%20%22sobieski%22%29%20%26%26%20%3FbirthDate%20%3E%3D%20%221501-01-01T00%3A00%3A00Z%22%5E%5Exsd%3AdateTime%20%26%26%20%3FbirthDate%20%3C%3D%20%221700-12-31T23%3A59%3A59Z%22%5E%5Exsd%3AdateTime%29%0A%0A%7D%20GROUP%20BY%20%3Fperson%0AORDER%20BY%20%3FpersonLabel Try It!]
 
=== Renaming of human settlements between the 16th century and the present (monarchical ownership only) ===
<syntaxhighlight lang="SPARQL" class="mw-highlight-lang-sparql">
#title:Renaming of human settlements between the 16th century and the present (monarchical ownership only)
#defaultView:Map
SELECT ?place ?currentName ?historicNames ?coordinate ?layer
WHERE {
 
  BIND(
    IF ( CONTAINS(LCASE(CONCAT(?historicNames,",")), LCASE(CONCAT(?currentName, ","))), "continuation of", "change") AS ?layer ).
 
  {
    SELECT ?place ?currentName ?coordinate (GROUP_CONCAT(?historicName; separator=",") AS ?historicNames)
    WHERE {
      ?place wdt:P27 wd:Q175698; 
            rdfs:label ?currentName.
      ?place wdt:P134 wd:Q64.
      ?place p:P63 ?statement .
      ?statement pq:P40 ?pointintime_coord .
      ?statement ps:P63 ?coordinate .
 
      ?place p:P54 ?historicNameStatement .
      ?historicNameStatement ps:P54 ?historicName;
                            pq:P40 ?pointInTime16thCentury.
     
      # Filter for a description containing the text ‘historic settlement’
      ?place schema:description ?settlementDescription.
      FILTER(LANG(?settlementDescription) = "pl")  # Description in Polish
      FILTER(!STRSTARTS(?settlementDescription, "osada historyczna"))
 
      FILTER(LANG(?currentName) = "pl" && YEAR(?pointInTime16thCentury) = 1600 && YEAR(?pointintime_coord) = 1600)
      }
    GROUP BY ?place ?currentName ?coordinate
  }
}
</syntaxhighlight>
[https://wikihum.lab.dariah.pl/wdqs/#%23title%3ARenaming%20of%20human%20settlements%20between%20the%2016th%20century%20and%20the%20present%20%28monarchical%20ownership%20only%29%0A%23defaultView%3AMap%0ASELECT%20%3Fplace%20%3FcurrentName%20%3FhistoricNames%20%3Fcoordinate%20%3Flayer%0AWHERE%20%7B%0A%20%20%0A%20%20BIND%28%0A%20%20%20%20IF%20%28%20CONTAINS%28LCASE%28CONCAT%28%3FhistoricNames%2C%22%2C%22%29%29%2C%20LCASE%28CONCAT%28%3FcurrentName%2C%20%22%2C%22%29%29%29%2C%20%22continuation%20of%22%2C%20%22change%22%29%20AS%20%3Flayer%20%29.%0A%20%20%0A%20%20%7B%0A%20%20%20%20SELECT%20%3Fplace%20%3FcurrentName%20%3Fcoordinate%20%28GROUP_CONCAT%28%3FhistoricName%3B%20separator%3D%22%2C%22%29%20AS%20%3FhistoricNames%29%20%0A%20%20%20%20WHERE%20%7B%0A%20%20%20%20%20%20%3Fplace%20wdt%3AP27%20wd%3AQ175698%3B%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20%20rdfs%3Alabel%20%3FcurrentName.%0A%20%20%20%20%20%20%3Fplace%20wdt%3AP134%20wd%3AQ64.%0A%20%20%20%20%20%20%3Fplace%20p%3AP63%20%3Fstatement%20.%0A%20%20%20%20%20%20%3Fstatement%20pq%3AP40%20%3Fpointintime_coord%20.%0A%20%20%20%20%20%20%3Fstatement%20ps%3AP63%20%3Fcoordinate%20.%0A%20%20%0A%20%20%20%20%20%20%3Fplace%20p%3AP54%20%3FhistoricNameStatement%20.%0A%20%20%20%20%20%20%3FhistoricNameStatement%20ps%3AP54%20%3FhistoricName%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20pq%3AP40%20%3FpointInTime16thCentury.%0A%20%20%20%20%20%20%0A%20%20%20%20%20%20%23%20Filter%20for%20a%20description%20containing%20the%20text%20%E2%80%98historic%20settlement%E2%80%99%0A%20%20%20%20%20%20%3Fplace%20schema%3Adescription%20%3FsettlementDescription.%0A%20%20%20%20%20%20FILTER%28LANG%28%3FsettlementDescription%29%20%3D%20%22pl%22%29%20%20%23%20Description%20in%20Polish%0A%20%20%20%20%20%20FILTER%28%21STRSTARTS%28%3FsettlementDescription%2C%20%22osada%20historyczna%22%29%29%20%0A%20%20%0A%20%20%20%20%20%20FILTER%28LANG%28%3FcurrentName%29%20%3D%20%22pl%22%20%26%26%20YEAR%28%3FpointInTime16thCentury%29%20%3D%201600%20%26%26%20YEAR%28%3Fpointintime_coord%29%20%3D%201600%29%0A%20%20%20%20%20%20%7D%0A%20%20%20%20GROUP%20BY%20%3Fplace%20%3FcurrentName%20%3Fcoordinate%0A%20%20%7D%0A%7D Try It!]
 
=== Distances between the location of settlements in the 16th century and today (in km)===
<syntaxhighlight lang="SPARQL" class="mw-highlight-lang-sparql">
#title:Distances between the location of settlements in the 16th century and today (in km)
SELECT DISTINCT ?place ?placeLabel ?distance
WHERE {
 
SELECT ?place ?placeLabel ?coord1 ?coord2 (geof:distance(?coord1, ?coord2) AS ?distance)
WHERE {
  ?place wdt:P27 wd:Q175698;
        p:P63 ?statement1, ?statement2.
 
  ?statement1 ps:P63 ?coord1.
  ?statement2 ps:P63 ?coord2.
 
  FILTER(?statement1 != ?statement2)
 
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
}
ORDER BY DESC (?distance)
</syntaxhighlight>
[https://wikihum.lab.dariah.pl/wdqs/#%23title%3ADistances%20between%20the%20location%20of%20settlements%20in%20the%2016th%20century%20and%20today%20%28in%20km%29%0ASELECT%20DISTINCT%20%3Fplace%20%3FplaceLabel%20%3Fdistance%20%0AWHERE%20%7B%0A%20%20%0ASELECT%20%3Fplace%20%3FplaceLabel%20%3Fcoord1%20%3Fcoord2%20%28geof%3Adistance%28%3Fcoord1%2C%20%3Fcoord2%29%20AS%20%3Fdistance%29%0AWHERE%20%7B%0A%20%20%3Fplace%20wdt%3AP27%20wd%3AQ175698%3B%0A%20%20%20%20%20%20%20%20%20p%3AP63%20%3Fstatement1%2C%20%3Fstatement2.%0A%0A%20%20%3Fstatement1%20ps%3AP63%20%3Fcoord1.%0A%20%20%3Fstatement2%20ps%3AP63%20%3Fcoord2.%0A%0A%20%20FILTER%28%3Fstatement1%20%21%3D%20%3Fstatement2%29%0A%20%20%0A%20%20SERVICE%20wikibase%3Alabel%20%7B%20bd%3AserviceParam%20wikibase%3Alanguage%20%22%5BAUTO_LANGUAGE%5D%2Cen%22.%20%7D%0A%7D%0A%7D%0AORDER%20BY%20DESC%20%28%3Fdistance%29 Try It!]
 
=== Villages named: Wólka or Dąbrowa in the 16th century ===
<syntaxhighlight lang="SPARQL" class="mw-highlight-lang-sparql">
#title:Villages named: Wólka or Dąbrowa in the 16th century
#defaultView:Map
SELECT ?item ?itemLabel ?ahp_id ?coordinate ?historicNames ?layer
WHERE {
 
BIND(
      IF(CONTAINS(?historicNames, "Wólka"), "Wólka",
      IF(CONTAINS(?historicNames, "Dąbrowa"), "Dąbrowa",
      "inna"))
      AS ?layer).
 
  {
    SELECT ?item ?itemLabel ?ahp_id ?coordinate (GROUP_CONCAT(?historicName; separator=",") AS ?historicNames)
    WHERE
    {
      ?item wdt:P81 ?ahp_id .
      ?item p:P63 ?statement .
      ?statement ps:P63 ?coordinate .
      ?statement pq:P40 ?pointintime .
   
      ?item p:P54 ?historicNameStatement .
      ?historicNameStatement ps:P54 ?historicName;
                            pq:P40 ?pointInTime16thCentury.
     
      FILTER( YEAR(?pointintime) = 1600 && YEAR(?pointInTime16thCentury) = 1600 && (CONTAINS(?historicName, "Wólka") || CONTAINS(?historicName, "Dąbrowa")))
    }
    GROUP BY ?item ?itemLabel ?ahp_id ?coordinate ?historicName
  }
 
  FILTER(?layer = "Wólka" || ?layer = "Dąbrowa")
}
</syntaxhighlight>
[https://wikihum.lab.dariah.pl/wdqs/#%23title%3AVillages%20named%3A%20W%C3%B3lka%20or%20D%C4%85browa%20in%20the%2016th%20century%0A%23defaultView%3AMap%0ASELECT%20%3Fitem%20%3FitemLabel%20%3Fahp_id%20%3Fcoordinate%20%3FhistoricNames%20%3Flayer%0AWHERE%20%7B%0A%20%20%0ABIND%28%0A%20%20%20%20%20%20IF%28CONTAINS%28%3FhistoricNames%2C%20%22W%C3%B3lka%22%29%2C%20%22W%C3%B3lka%22%2C%0A%20%20%20%20%20%20IF%28CONTAINS%28%3FhistoricNames%2C%20%22D%C4%85browa%22%29%2C%20%22D%C4%85browa%22%2C%0A%20%20%20%20%20%20%22inna%22%29%29%0A%20%20%20%20%20%20AS%20%3Flayer%29.%0A%0A%20%20%7B%20%0A%20%20%20%20SELECT%20%3Fitem%20%3FitemLabel%20%3Fahp_id%20%3Fcoordinate%20%28GROUP_CONCAT%28%3FhistoricName%3B%20separator%3D%22%2C%22%29%20AS%20%3FhistoricNames%29%20%0A%20%20%20%20WHERE%0A%20%20%20%20%7B%0A%20%20%20%20%20%20%3Fitem%20wdt%3AP81%20%3Fahp_id%20.%0A%20%20%20%20%20%20%3Fitem%20p%3AP63%20%3Fstatement%20.%0A%20%20%20%20%20%20%3Fstatement%20ps%3AP63%20%3Fcoordinate%20.%0A%20%20%20%20%20%20%3Fstatement%20pq%3AP40%20%3Fpointintime%20.%0A%20%20%20%20%0A%20%20%20%20%20%20%3Fitem%20p%3AP54%20%3FhistoricNameStatement%20.%0A%20%20%20%20%20%20%3FhistoricNameStatement%20ps%3AP54%20%3FhistoricName%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20pq%3AP40%20%3FpointInTime16thCentury.%0A%20%20%20%20%20%20%0A%20%20%20%20%20%20FILTER%28%20YEAR%28%3Fpointintime%29%20%3D%201600%20%26%26%20YEAR%28%3FpointInTime16thCentury%29%20%3D%201600%20%26%26%20%28CONTAINS%28%3FhistoricName%2C%20%22W%C3%B3lka%22%29%20%7C%7C%20CONTAINS%28%3FhistoricName%2C%20%22D%C4%85browa%22%29%29%29%0A%20%20%20%20%7D%0A%20%20%20%20GROUP%20BY%20%3Fitem%20%3FitemLabel%20%3Fahp_id%20%3Fcoordinate%20%3FhistoricName%0A%20%20%7D%0A%20%20%0A%20%20FILTER%28%3Flayer%20%3D%20%22W%C3%B3lka%22%20%7C%7C%20%3Flayer%20%3D%20%22D%C4%85browa%22%29%0A%7D Try It!]
 
=== Occurrence of names: Stara Wieś and Nowa Wieś in the 16th century ===
<syntaxhighlight lang="SPARQL" class="mw-highlight-lang-sparql">
#title:Occurrence of names: Stara Wieś and Nowa Wieś in the 16th century
#defaultView:Map
SELECT ?item ?itemLabel ?ahp_id ?coordinate ?historicNames ?layer
WHERE {
 
BIND(
      IF(CONTAINS(?historicNames, "Nowa Wieś"), "Nowa Wieś",
      IF(CONTAINS(?historicNames, "Stara Wieś"), "Stara Wieś",
      "inna"))
      AS ?layer).
 
  {
    SELECT ?item ?itemLabel ?ahp_id ?coordinate (GROUP_CONCAT(?historicName; separator=",") AS ?historicNames)
    WHERE
    {
      ?item wdt:P81 ?ahp_id .
      ?item p:P63 ?statement .
      ?statement ps:P63 ?coordinate .
      ?statement pq:P40 ?pointintime .
   
      ?item p:P54 ?historicNameStatement .
      ?historicNameStatement ps:P54 ?historicName;
                            pq:P40 ?pointInTime16thCentury.
     
      FILTER( YEAR(?pointintime) = 1600 && YEAR(?pointInTime16thCentury) = 1600 && (CONTAINS(?historicName, "Nowa Wieś") || CONTAINS(?historicName, "Stara Wieś")))
    }
    GROUP BY ?item ?itemLabel ?ahp_id ?coordinate ?historicName
  }
 
  FILTER(?layer = "Nowa Wieś" || ?layer = "Stara Wieś")
}
</syntaxhighlight>
[https://wikihum.lab.dariah.pl/wdqs/#%23title%3AOccurrence%20of%20names%3A%20Old%20Village%20and%20New%20Village%20in%20the%2016th%20century%0A%23defaultView%3AMap%0ASELECT%20%3Fitem%20%3FitemLabel%20%3Fahp_id%20%3Fcoordinate%20%3FhistoricNames%20%3Flayer%0AWHERE%20%7B%0A%20%20%0ABIND%28%0A%20%20%20%20%20%20IF%28CONTAINS%28%3FhistoricNames%2C%20%22Nowa%20Wie%C5%9B%22%29%2C%20%22Nowa%20Wie%C5%9B%22%2C%0A%20%20%20%20%20%20IF%28CONTAINS%28%3FhistoricNames%2C%20%22Stara%20Wie%C5%9B%22%29%2C%20%22Stara%20Wie%C5%9B%22%2C%0A%20%20%20%20%20%20%22inna%22%29%29%0A%20%20%20%20%20%20AS%20%3Flayer%29.%0A%0A%20%20%7B%20%0A%20%20%20%20SELECT%20%3Fitem%20%3FitemLabel%20%3Fahp_id%20%3Fcoordinate%20%28GROUP_CONCAT%28%3FhistoricName%3B%20separator%3D%22%2C%22%29%20AS%20%3FhistoricNames%29%20%0A%20%20%20%20WHERE%0A%20%20%20%20%7B%0A%20%20%20%20%20%20%3Fitem%20wdt%3AP81%20%3Fahp_id%20.%0A%20%20%20%20%20%20%3Fitem%20p%3AP63%20%3Fstatement%20.%0A%20%20%20%20%20%20%3Fstatement%20ps%3AP63%20%3Fcoordinate%20.%0A%20%20%20%20%20%20%3Fstatement%20pq%3AP40%20%3Fpointintime%20.%0A%20%20%20%20%0A%20%20%20%20%20%20%3Fitem%20p%3AP54%20%3FhistoricNameStatement%20.%0A%20%20%20%20%20%20%3FhistoricNameStatement%20ps%3AP54%20%3FhistoricName%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20pq%3AP40%20%3FpointInTime16thCentury.%0A%20%20%20%20%20%20%0A%20%20%20%20%20%20FILTER%28%20YEAR%28%3Fpointintime%29%20%3D%201600%20%26%26%20YEAR%28%3FpointInTime16thCentury%29%20%3D%201600%20%26%26%20%28CONTAINS%28%3FhistoricName%2C%20%22Nowa%20Wie%C5%9B%22%29%20%7C%7C%20CONTAINS%28%3FhistoricName%2C%20%22Stara%20Wie%C5%9B%22%29%29%29%0A%20%20%20%20%7D%0A%20%20%20%20GROUP%20BY%20%3Fitem%20%3FitemLabel%20%3Fahp_id%20%3Fcoordinate%20%3FhistoricName%0A%20%20%7D%0A%20%20%0A%20%20FILTER%28%3Flayer%20%3D%20%22Nowa%20Wie%C5%9B%22%20%7C%7C%20%3Flayer%20%3D%20%22Stara%20Wie%C5%9B%22%29%0A%7D Try It!]
 
=== Human settlements (usually a village) which forms a so-called neighbourhood in 16 century ===
<syntaxhighlight lang="SPARQL" class="mw-highlight-lang-sparql">
#title:Human settlements (usually a village) which forms a so-called neighbourhood in 16 century
#defaultView:Map
    SELECT DISTINCT ?item ?itemLabel ?ahp_id ?coordinate
    WHERE
    {
      ?item wdt:P81 ?ahp_id .
      ?item p:P63 ?statement .
      ?statement ps:P63 ?coordinate .
      ?statement pq:P40 ?pointintime .
   
      ?item wdt:P84 ?okolica
     
      FILTER( YEAR(?pointintime) = 1600)
    }
</syntaxhighlight>
[https://wikihum.lab.dariah.pl/wdqs/#%23title%3AHuman%20settlements%20%28usually%20a%20village%29%20which%20forms%20a%20so-called%20neighbourhood%20in%2016%20century%0A%23defaultView%3AMap%0A%20%20%20%20SELECT%20DISTINCT%20%3Fitem%20%3FitemLabel%20%3Fahp_id%20%3Fcoordinate%0A%20%20%20%20WHERE%0A%20%20%20%20%7B%0A%20%20%20%20%20%20%3Fitem%20wdt%3AP81%20%3Fahp_id%20.%0A%20%20%20%20%20%20%3Fitem%20p%3AP63%20%3Fstatement%20.%0A%20%20%20%20%20%20%3Fstatement%20ps%3AP63%20%3Fcoordinate%20.%0A%20%20%20%20%20%20%3Fstatement%20pq%3AP40%20%3Fpointintime%20.%0A%20%20%20%20%0A%20%20%20%20%20%20%3Fitem%20wdt%3AP84%20%3Fokolica%0A%20%20%20%20%20%20%0A%20%20%20%20%20%20FILTER%28%20YEAR%28%3Fpointintime%29%20%3D%201600%29%0A%20%20%20%20%7D Try it!]
 
=== Catholic archdeaconates, deaneries and parishes in the 16th century ===
<syntaxhighlight lang="SPARQL" class="mw-highlight-lang-sparql">
#title:Catholic archdeaconates, deaneries and parishes in the 16th century
#defaultView:Tree
SELECT ?archidiakonat ?archidiakonatLabel ?dekanat ?dekanatLabel ?parafia ?parafiaLabel
WHERE {
  # Finding of archdeaconries
  ?archidiakonat wdt:P27 wd:Q722 .
 
  # Finding of deaneries that are part of archdeaconries
  ?dekanat wdt:P27 wd:Q719 ;
          wdt:P37 ?archidiakonat .
 
  # Finding parishes that are part of deaneries
  ?parafia wdt:P27 wd:Q714 ;
          wdt:P37 ?dekanat .
 
  # Pobranie etykiet
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],pl". }
}
ORDER BY ?archidiakonatLabel ?dekanatLabel ?parafiaLabel
</syntaxhighlight>
[https://wikihum.lab.dariah.pl/wdqs/#%23title%3ACatholic%20archdeaconates%2C%20deaneries%20and%20parishes%20in%20the%2016th%20century%0A%23defaultView%3ATree%0ASELECT%20%3Farchidiakonat%20%3FarchidiakonatLabel%20%3Fdekanat%20%3FdekanatLabel%20%3Fparafia%20%3FparafiaLabel%0AWHERE%20%7B%0A%20%20%23%20Finding%20of%20archdeaconries%0A%20%20%3Farchidiakonat%20wdt%3AP27%20wd%3AQ722%20.%0A%20%20%0A%20%20%23%20Finding%20of%20deaneries%20that%20are%20part%20of%20archdeaconries%0A%20%20%3Fdekanat%20wdt%3AP27%20wd%3AQ719%20%3B%0A%20%20%20%20%20%20%20%20%20%20%20wdt%3AP37%20%3Farchidiakonat%20.%0A%20%20%0A%20%20%23%20Finding%20parishes%20that%20are%20part%20of%20deaneries%0A%20%20%3Fparafia%20wdt%3AP27%20wd%3AQ714%20%3B%0A%20%20%20%20%20%20%20%20%20%20%20wdt%3AP37%20%3Fdekanat%20.%0A%20%20%0A%20%20%23%20Pobranie%20etykiet%0A%20%20SERVICE%20wikibase%3Alabel%20%7B%20bd%3AserviceParam%20wikibase%3Alanguage%20%22%5BAUTO_LANGUAGE%5D%2Cpl%22.%20%7D%0A%7D%0AORDER%20BY%20%3FarchidiakonatLabel%20%3FdekanatLabel%20%3FparafiaLabel Try it!]
 
=== Palatinates, district and settlements in the 16th century ===
<syntaxhighlight lang="SPARQL" class="mw-highlight-lang-sparql">
#title:Palatinates, district and settlements in the 16th century
#defaultView:Tree
SELECT ?wojewodztwo ?wojewodztwoLabel ?powiat ?powiatLabel ?miejscowosc ?miejscowoscLabel
WHERE {
  ?wojewodztwo wdt:P27 wd:Q905 .
 
  ?powiat wdt:P27 wd:Q903 ;
          wdt:P37 ?wojewodztwo .
 
  ?miejscowosc wdt:P27 wd:Q175698 ;
              wdt:P70 ?powiat .
 
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],pl". }
}
ORDER BY ?wojewodztwoLabel ?powiatLabel ?miejscowoscLabel
</syntaxhighlight>
[https://wikihum.lab.dariah.pl/wdqs/#%23title%3APalatinates%2C%20district%20and%20settlements%20in%20the%2016th%20century%0A%23defaultView%3ATree%0ASELECT%20%3Fwojewodztwo%20%3FwojewodztwoLabel%20%3Fpowiat%20%3FpowiatLabel%20%3Fmiejscowosc%20%3FmiejscowoscLabel%0AWHERE%20%7B%0A%20%20%3Fwojewodztwo%20wdt%3AP27%20wd%3AQ905%20.%0A%20%20%0A%20%20%3Fpowiat%20wdt%3AP27%20wd%3AQ903%20%3B%0A%20%20%20%20%20%20%20%20%20%20wdt%3AP37%20%3Fwojewodztwo%20.%0A%20%20%0A%20%20%3Fmiejscowosc%20wdt%3AP27%20wd%3AQ175698%20%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20wdt%3AP70%20%3Fpowiat%20.%0A%20%20%0A%20%20SERVICE%20wikibase%3Alabel%20%7B%20bd%3AserviceParam%20wikibase%3Alanguage%20%22%5BAUTO_LANGUAGE%5D%2Cpl%22.%20%7D%0A%7D%0AORDER%20BY%20%3FwojewodztwoLabel%20%3FpowiatLabel%20%3FmiejscowoscLabel Try It!]
 
=== Number of parishes and deaneries in archdeaconries in the 16th century ===
<syntaxhighlight lang="SPARQL" class="mw-highlight-lang-sparql">
#title:Number of parishes and deaneries in archdeaconries in the 16th century
SELECT ?archidiakonat ?archidiakonatLabel (COUNT(DISTINCT ?dekanat) AS ?liczba_dekanatow) (COUNT(DISTINCT ?parafia) AS ?liczba_parafii)
WHERE {
  ?archidiakonat wdt:P27 wd:Q722 .
 
  ?dekanat wdt:P27 wd:Q719 ;
          wdt:P37 ?archidiakonat .
 
  ?parafia wdt:P27 wd:Q714 ;
          wdt:P37 ?dekanat .
 
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
GROUP BY ?archidiakonat ?archidiakonatLabel
ORDER BY ?archidiakonatLabel
</syntaxhighlight>
[https://wikihum.lab.dariah.pl/wdqs/#%23title%3ANumber%20of%20parishes%20and%20deaneries%20in%20archdeaconries%20in%20the%2016th%20century%0ASELECT%20%3Farchidiakonat%20%3FarchidiakonatLabel%20%28COUNT%28DISTINCT%20%3Fdekanat%29%20AS%20%3Fliczba_dekanatow%29%20%28COUNT%28DISTINCT%20%3Fparafia%29%20AS%20%3Fliczba_parafii%29%0AWHERE%20%7B%0A%20%20%3Farchidiakonat%20wdt%3AP27%20wd%3AQ722%20.%0A%20%20%0A%20%20%3Fdekanat%20wdt%3AP27%20wd%3AQ719%20%3B%0A%20%20%20%20%20%20%20%20%20%20%20wdt%3AP37%20%3Farchidiakonat%20.%0A%20%20%0A%20%20%3Fparafia%20wdt%3AP27%20wd%3AQ714%20%3B%0A%20%20%20%20%20%20%20%20%20%20%20wdt%3AP37%20%3Fdekanat%20.%0A%20%20%0A%20%20SERVICE%20wikibase%3Alabel%20%7B%20bd%3AserviceParam%20wikibase%3Alanguage%20%22%5BAUTO_LANGUAGE%5D%2Cen%22.%20%7D%0A%7D%0AGROUP%20BY%20%3Farchidiakonat%20%3FarchidiakonatLabel%0AORDER%20BY%20%3FarchidiakonatLabel%0A Try it!]
 
=== Number of settlements and districts in the palatinates in the 16th century ===
<syntaxhighlight lang="SPARQL" class="mw-highlight-lang-sparql">
#title:Number of settlements and districts in the palatinates in the 16th century
SELECT ?palatinate ?palatinateLabel (COUNT(DISTINCT ?district) AS ?num_districts) (COUNT(DISTINCT ?settlement) AS ?num_settlements)
WHERE {
  ?palatinate wdt:P27 wd:Q905 .
 
  ?district wdt:P27 wd:Q903 ;
            wdt:P37 ?palatinate .
  ?settlement wdt:P27 wd:Q175698 ;
              wdt:P70 ?district .
 
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
GROUP BY ?palatinate ?palatinateLabel
ORDER BY ?palatinateLabel
</syntaxhighlight>
[https://wikihum.lab.dariah.pl/wdqs/#%23title%3ANumber%20of%20settlements%20and%20districts%20in%20the%20palatinates%20in%20the%2016th%20century%0ASELECT%20%3Fpalatinate%20%3FpalatinateLabel%20%28COUNT%28DISTINCT%20%3Fdistrict%29%20AS%20%3Fnum_districts%29%20%28COUNT%28DISTINCT%20%3Fsettlement%29%20AS%20%3Fnum_settlements%29%0AWHERE%20%7B%0A%20%20%3Fpalatinate%20wdt%3AP27%20wd%3AQ905%20.%0A%20%20%0A%20%20%3Fdistrict%20wdt%3AP27%20wd%3AQ903%20%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20wdt%3AP37%20%3Fpalatinate%20.%0A%20%0A%20%20%3Fsettlement%20wdt%3AP27%20wd%3AQ175698%20%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20wdt%3AP70%20%3Fdistrict%20.%0A%20%20%0A%20%20SERVICE%20wikibase%3Alabel%20%7B%20bd%3AserviceParam%20wikibase%3Alanguage%20%22en%22.%20%7D%0A%7D%0AGROUP%20BY%20%3Fpalatinate%20%3FpalatinateLabel%0AORDER%20BY%20%3FpalatinateLabel Try it!]
 
=== Cities in the palatinates in the 16th century ===
<syntaxhighlight lang="SPARQL" class="mw-highlight-lang-sparql">
#title:Cities in the palatinates in the 16th century
#defaultView:Map
SELECT ?palatinate ?palatinateLabel ?district ?districtLabel ?city ?cityLabel ?coordinate ?layer
WHERE {
  ?palatinate wdt:P27 wd:Q905 .
 
  ?district wdt:P27 wd:Q903 ;
          wdt:P37 ?palatinate .
 
  ?city wdt:P27 wd:Q175698 ;
              wdt:P70 ?district .
             
  ?city p:P62 ?statement1 .
  ?statement1 pq:P40 ?pointintime1 .
  ?statement1 (ps:P62/(wdt:P56*)) wd:Q622 .
             
  ?city p:P63 ?statement .
  ?statement ps:P63 ?coordinate .
  ?statement pq:P40 ?pointintime .
  ?palatinate rdfs:label ?layer .
 
  FILTER(YEAR(?pointintime) = 1600 && LANG(?layer) = "en")
 
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
</syntaxhighlight>
[https://wikihum.lab.dariah.pl/wdqs/#%23title%3ACities%20in%20the%20palatinates%20in%20the%2016th%20century%0A%23defaultView%3AMap%0ASELECT%20%3Fpalatinate%20%3FpalatinateLabel%20%3Fdistrict%20%3FdistrictLabel%20%3Fcity%20%3FcityLabel%20%3Fcoordinate%20%3Flayer%0AWHERE%20%7B%0A%20%20%3Fpalatinate%20wdt%3AP27%20wd%3AQ905%20.%0A%20%20%0A%20%20%3Fdistrict%20wdt%3AP27%20wd%3AQ903%20%3B%0A%20%20%20%20%20%20%20%20%20%20wdt%3AP37%20%3Fpalatinate%20.%0A%20%20%0A%20%20%3Fcity%20wdt%3AP27%20wd%3AQ175698%20%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20wdt%3AP70%20%3Fdistrict%20.%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%0A%20%20%3Fcity%20p%3AP62%20%3Fstatement1%20.%0A%20%20%3Fstatement1%20pq%3AP40%20%3Fpointintime1%20.%0A%20%20%3Fstatement1%20%28ps%3AP62%2F%28wdt%3AP56%2a%29%29%20wd%3AQ622%20.%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%0A%20%20%3Fcity%20p%3AP63%20%3Fstatement%20.%0A%20%20%3Fstatement%20ps%3AP63%20%3Fcoordinate%20.%0A%20%20%3Fstatement%20pq%3AP40%20%3Fpointintime%20.%0A%20%20%3Fpalatinate%20rdfs%3Alabel%20%3Flayer%20.%0A%20%20%0A%20%20FILTER%28YEAR%28%3Fpointintime%29%20%3D%201600%20%26%26%20LANG%28%3Flayer%29%20%3D%20%22en%22%29%0A%20%20%0A%20%20SERVICE%20wikibase%3Alabel%20%7B%20bd%3AserviceParam%20wikibase%3Alanguage%20%22en%22.%20%7D%0A%7D Try it!]

Latest revision as of 18:49, 1 September 2024

This page is parsed by the web interface of the query service to fill the query example dialog.


Towns that served as county capital in the 16th century

#title:Towns that served as county capital in the 16th century
#defaultView:Map
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". }
  }

Try it!

Human settlements that were places of the local assembly in the 16th century

#title:Human settlements that were places of the local assembly in the 16th century
#defaultView:Map
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.  # places of the local assembly
      FILTER(YEAR(?pointintime) = 1600 && YEAR(?pointintime1) = 1600)
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
  }

Try It!

Human settlements that were towns in the 16th century and are now villages

#title:Human settlements that were towns in the 16th century and are now villages
#defaultView:Map
SELECT ?settlement ?settlementLabel ?coordinate16thCentury WHERE {
  # Warunek dla miejscowości
  ?settlement wdt:P27 wd:Q175698.

  # It was a town in the 16th century
  ?settlement p:P62 ?cityStatement.
  ?cityStatement ps:P62 wd:Q622;
                 pq:P40 ?pointInTime16thCentury.
  FILTER(YEAR(?pointInTime16thCentury) > 1500 && YEAR(?pointInTime16thCentury) <= 1600)

  # it is a village in the year 2022
  ?settlement p:P62 ?villageStatement.
  ?villageStatement ps:P62 wd:Q653;
                    pq:P40 ?pointInTime2022.
  FILTER(YEAR(?pointInTime2022) = 2022)

  # geographical coordinates from the 16th century
  ?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". }
}

Try It!

Human settlements that existed in the 16th century but do not exist today

#title:Human settlements that existed in the 16th century but do not exist today
#defaultView:Map
SELECT ?settlement ?settlementLabel ?settlementDescription ?coordinate16thCentury WHERE {
  # Condition for elements that are human settlements
  ?settlement wdt:P27 wd:Q175698.

  # Filter for a description containing the text ‘historic settlement’
  ?settlement schema:description ?settlementDescription.
  FILTER(CONTAINS(LCASE(?settlementDescription), "osada historyczna"))
  
  # geographical coordinates from the 16th century
  ?settlement p:P63 ?coordStatement.
  ?coordStatement ps:P63 ?coordinate16thCentury;
                 pq:P40 ?coordTime.
  FILTER(YEAR(?coordTime) > 1500 && YEAR(?coordTime) <= 1600)

  # Service for labels and descriptions in the indicated language
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],pl". }
}

Try It!

People born in the 16th century

#title:People born in the 16th century
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

Try it!

List of long-lived persons

#title:Persons with known date of birth and death who have lived beyond 90 years
SELECT DISTINCT ?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)

Try It!

Persons living in the 16th century - born, deceased or active during this period

#title:Persons living in the 16th century - born, deceased or active during this period
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

Try It!

Human settlements that were cities in the 16th century

#title:Human settlements that were cities in the 16th century
#defaultView:Map
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". }
  }

Try It!

Human settlements that were monarchically owned in the 16th century

#title:Human settlements that were monarchically owned in the 16th century
#defaultView:Map
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". }
  }

Try It!

Human settlements by settlement ownership type in the 16th century

#title:Human settlements by settlement ownership type in the 16th century
#defaultView:Map
SELECT ?item ?itemLabel ?ahp_id ?coordinate ?layer
  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*)) ?typ
      # Q64 - monarchical property, Q63 - church property, Q65 - town property, Q66 - noble property
      BIND(
      IF(?typ = wd:Q64, "monarchical",
      IF(?typ = wd:Q63, "church",
      IF(?typ = wd:Q65, "town",
      IF(?typ = wd:Q66, "noble",
      "inna"))))
      AS ?layer).
      FILTER(YEAR(?pointintime) = 1600)
      FILTER(YEAR(?pointintime1) = 1600)
      SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
  }
GROUP BY ?item ?itemLabel ?ahp_id ?coordinate ?layer

Try It!

Summary of the number of people born in each century

#title:Summary of the number of people born in each century
#defaultView:BarChart
SELECT ?centuryRoman (COUNT(*) AS ?count)
WHERE {
  ?person wdt:P27 wd:Q5;
          wdt:P11 ?birthDate .

  # Calculation of centenary based on year of birth
  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).
  # filtering out incorrect data 
  FILTER(?century >= 10 && ?century < 21)
}
GROUP BY ?centuryRoman
ORDER BY ?count

Try It!

Persons with the surname Sobieski born in the 16th and 17th centuries

#title:Persons with the surname Sobieski born in the 16th and 17th centuries
#defaultView:Timeline
SELECT DISTINCT ?person (MAX(?deathDate) as ?ddate) (MAX(?birthDate) as ?bdate) (MAX(?personLabel) as ?label) WHERE {
  # Condition for persons
  ?person wdt:P27 wd:Q5.
  ?person rdfs:label ?personLabel.

  # Collection of date of birth 
  ?person p:P11 ?birthStatement.
  ?birthStatement ps:P11 ?birthDate.
  
  # Collection of date of death
  ?person p:P12 ?deathStatement.
  ?deathStatement ps:P12 ?deathDate.
  
  # date of birth filtering - range 1501-1700 and surname ‘Sobieski’ in the label
  FILTER(CONTAINS(LCASE(?personLabel), "sobieski") && ?birthDate >= "1501-01-01T00:00:00Z"^^xsd:dateTime && ?birthDate <= "1700-12-31T23:59:59Z"^^xsd:dateTime)

} GROUP BY ?person
ORDER BY ?personLabel

Try It!

Renaming of human settlements between the 16th century and the present (monarchical ownership only)

#title:Renaming of human settlements between the 16th century and the present (monarchical ownership only)
#defaultView:Map
SELECT ?place ?currentName ?historicNames ?coordinate ?layer
WHERE {
  
  BIND(
    IF ( CONTAINS(LCASE(CONCAT(?historicNames,",")), LCASE(CONCAT(?currentName, ","))), "continuation of", "change") AS ?layer ).
  
  {
    SELECT ?place ?currentName ?coordinate (GROUP_CONCAT(?historicName; separator=",") AS ?historicNames) 
    WHERE {
      ?place wdt:P27 wd:Q175698;  
             rdfs:label ?currentName.
      ?place wdt:P134 wd:Q64.
      ?place p:P63 ?statement .
      ?statement pq:P40 ?pointintime_coord .
      ?statement ps:P63 ?coordinate .
  
      ?place p:P54 ?historicNameStatement .
      ?historicNameStatement ps:P54 ?historicName;
                             pq:P40 ?pointInTime16thCentury.
      
      # Filter for a description containing the text ‘historic settlement’
      ?place schema:description ?settlementDescription.
      FILTER(LANG(?settlementDescription) = "pl")  # Description in Polish
      FILTER(!STRSTARTS(?settlementDescription, "osada historyczna")) 
  
      FILTER(LANG(?currentName) = "pl" && YEAR(?pointInTime16thCentury) = 1600 && YEAR(?pointintime_coord) = 1600)
      }
    GROUP BY ?place ?currentName ?coordinate
  }
}

Try It!

Distances between the location of settlements in the 16th century and today (in km)

#title:Distances between the location of settlements in the 16th century and today (in km)
SELECT DISTINCT ?place ?placeLabel ?distance 
WHERE {
  
SELECT ?place ?placeLabel ?coord1 ?coord2 (geof:distance(?coord1, ?coord2) AS ?distance)
WHERE {
  ?place wdt:P27 wd:Q175698;
         p:P63 ?statement1, ?statement2.

  ?statement1 ps:P63 ?coord1.
  ?statement2 ps:P63 ?coord2.

  FILTER(?statement1 != ?statement2)
  
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
}
ORDER BY DESC (?distance)

Try It!

Villages named: Wólka or Dąbrowa in the 16th century

#title:Villages named: Wólka or Dąbrowa in the 16th century
#defaultView:Map
SELECT ?item ?itemLabel ?ahp_id ?coordinate ?historicNames ?layer
WHERE {
  
BIND(
      IF(CONTAINS(?historicNames, "Wólka"), "Wólka",
      IF(CONTAINS(?historicNames, "Dąbrowa"), "Dąbrowa",
      "inna"))
      AS ?layer).

  { 
    SELECT ?item ?itemLabel ?ahp_id ?coordinate (GROUP_CONCAT(?historicName; separator=",") AS ?historicNames) 
    WHERE
    {
      ?item wdt:P81 ?ahp_id .
      ?item p:P63 ?statement .
      ?statement ps:P63 ?coordinate .
      ?statement pq:P40 ?pointintime .
    
      ?item p:P54 ?historicNameStatement .
      ?historicNameStatement ps:P54 ?historicName;
                             pq:P40 ?pointInTime16thCentury.
      
      FILTER( YEAR(?pointintime) = 1600 && YEAR(?pointInTime16thCentury) = 1600 && (CONTAINS(?historicName, "Wólka") || CONTAINS(?historicName, "Dąbrowa")))
    }
    GROUP BY ?item ?itemLabel ?ahp_id ?coordinate ?historicName
  }
  
  FILTER(?layer = "Wólka" || ?layer = "Dąbrowa")
}

Try It!

Occurrence of names: Stara Wieś and Nowa Wieś in the 16th century

#title:Occurrence of names: Stara Wieś and Nowa Wieś in the 16th century
#defaultView:Map
SELECT ?item ?itemLabel ?ahp_id ?coordinate ?historicNames ?layer
WHERE {
  
BIND(
      IF(CONTAINS(?historicNames, "Nowa Wieś"), "Nowa Wieś",
      IF(CONTAINS(?historicNames, "Stara Wieś"), "Stara Wieś",
      "inna"))
      AS ?layer).

  { 
    SELECT ?item ?itemLabel ?ahp_id ?coordinate (GROUP_CONCAT(?historicName; separator=",") AS ?historicNames) 
    WHERE
    {
      ?item wdt:P81 ?ahp_id .
      ?item p:P63 ?statement .
      ?statement ps:P63 ?coordinate .
      ?statement pq:P40 ?pointintime .
    
      ?item p:P54 ?historicNameStatement .
      ?historicNameStatement ps:P54 ?historicName;
                             pq:P40 ?pointInTime16thCentury.
      
      FILTER( YEAR(?pointintime) = 1600 && YEAR(?pointInTime16thCentury) = 1600 && (CONTAINS(?historicName, "Nowa Wieś") || CONTAINS(?historicName, "Stara Wieś")))
    }
    GROUP BY ?item ?itemLabel ?ahp_id ?coordinate ?historicName
  }
  
  FILTER(?layer = "Nowa Wieś" || ?layer = "Stara Wieś")
}

Try It!

Human settlements (usually a village) which forms a so-called neighbourhood in 16 century

#title:Human settlements (usually a village) which forms a so-called neighbourhood in 16 century
#defaultView:Map
    SELECT DISTINCT ?item ?itemLabel ?ahp_id ?coordinate
    WHERE
    {
      ?item wdt:P81 ?ahp_id .
      ?item p:P63 ?statement .
      ?statement ps:P63 ?coordinate .
      ?statement pq:P40 ?pointintime .
    
      ?item wdt:P84 ?okolica
      
      FILTER( YEAR(?pointintime) = 1600)
    }

Try it!

Catholic archdeaconates, deaneries and parishes in the 16th century

#title:Catholic archdeaconates, deaneries and parishes in the 16th century
#defaultView:Tree
SELECT ?archidiakonat ?archidiakonatLabel ?dekanat ?dekanatLabel ?parafia ?parafiaLabel
WHERE {
  # Finding of archdeaconries
  ?archidiakonat wdt:P27 wd:Q722 .
  
  # Finding of deaneries that are part of archdeaconries
  ?dekanat wdt:P27 wd:Q719 ;
           wdt:P37 ?archidiakonat .
  
  # Finding parishes that are part of deaneries
  ?parafia wdt:P27 wd:Q714 ;
           wdt:P37 ?dekanat .
  
  # Pobranie etykiet
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],pl". }
}
ORDER BY ?archidiakonatLabel ?dekanatLabel ?parafiaLabel

Try it!

Palatinates, district and settlements in the 16th century

#title:Palatinates, district and settlements in the 16th century
#defaultView:Tree
SELECT ?wojewodztwo ?wojewodztwoLabel ?powiat ?powiatLabel ?miejscowosc ?miejscowoscLabel
WHERE {
  ?wojewodztwo wdt:P27 wd:Q905 .
  
  ?powiat wdt:P27 wd:Q903 ;
          wdt:P37 ?wojewodztwo .
  
  ?miejscowosc wdt:P27 wd:Q175698 ;
               wdt:P70 ?powiat .
  
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],pl". }
}
ORDER BY ?wojewodztwoLabel ?powiatLabel ?miejscowoscLabel

Try It!

Number of parishes and deaneries in archdeaconries in the 16th century

#title:Number of parishes and deaneries in archdeaconries in the 16th century
SELECT ?archidiakonat ?archidiakonatLabel (COUNT(DISTINCT ?dekanat) AS ?liczba_dekanatow) (COUNT(DISTINCT ?parafia) AS ?liczba_parafii)
WHERE {
  ?archidiakonat wdt:P27 wd:Q722 .
  
  ?dekanat wdt:P27 wd:Q719 ;
           wdt:P37 ?archidiakonat .
  
  ?parafia wdt:P27 wd:Q714 ;
           wdt:P37 ?dekanat .
  
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
GROUP BY ?archidiakonat ?archidiakonatLabel
ORDER BY ?archidiakonatLabel

Try it!

Number of settlements and districts in the palatinates in the 16th century

#title:Number of settlements and districts in the palatinates in the 16th century
SELECT ?palatinate ?palatinateLabel (COUNT(DISTINCT ?district) AS ?num_districts) (COUNT(DISTINCT ?settlement) AS ?num_settlements)
WHERE {
  ?palatinate wdt:P27 wd:Q905 .
  
  ?district wdt:P27 wd:Q903 ;
            wdt:P37 ?palatinate .
 
  ?settlement wdt:P27 wd:Q175698 ;
              wdt:P70 ?district .
  
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
GROUP BY ?palatinate ?palatinateLabel
ORDER BY ?palatinateLabel

Try it!

Cities in the palatinates in the 16th century

#title:Cities in the palatinates in the 16th century
#defaultView:Map
SELECT ?palatinate ?palatinateLabel ?district ?districtLabel ?city ?cityLabel ?coordinate ?layer
WHERE {
  ?palatinate wdt:P27 wd:Q905 .
  
  ?district wdt:P27 wd:Q903 ;
          wdt:P37 ?palatinate .
  
  ?city wdt:P27 wd:Q175698 ;
               wdt:P70 ?district .
               
  ?city p:P62 ?statement1 .
  ?statement1 pq:P40 ?pointintime1 .
  ?statement1 (ps:P62/(wdt:P56*)) wd:Q622 .
               
  ?city p:P63 ?statement .
  ?statement ps:P63 ?coordinate .
  ?statement pq:P40 ?pointintime .
  ?palatinate rdfs:label ?layer .
  
  FILTER(YEAR(?pointintime) = 1600 && LANG(?layer) = "en")
  
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}

Try it!