Visar inlägg med etikett PiastDynasty. Visa alla inlägg
Visar inlägg med etikett PiastDynasty. Visa alla inlägg

torsdag 14 juli 2016

Creating a Timeline from WikiData

Query url
More Piast Dynasty


# People in the Piast Dynasty on a map with Birth Death and burial locations
# If Wikitree property set you will have a link

Select ?person ?personLabel ?WikiTreeIDf ?pic ?coord ?coord2 ?coord3 {
?person wdt:P53 wd:Q201615
OPTIONAL {?person wdt:P2949 ?WikiTreeID} # P2949 all Wikidata articles with WikiTree id set
    BIND (URI(CONCAT("http://www.wikitree.com/wiki/",?WikiTreeID)) AS ?WikiTreeIDf)
OPTIONAL {?person wdt:P18 ?pic}
    OPTIONAL {  ?person wdt:P19 ?loc . # P19 Place of Birth
    ?loc wdt:P625 ?coord } .     # Get coordinates from Place of Birth
    OPTIONAL {  ?person wdt:P20 ?loc2 . # P19 Place of Death
    ?loc2 wdt:P625 ?coord2 } .     # Get coordinates from Place of Death
    OPTIONAL {  ?person wdt:P119 ?loc3 . # P19 Place of Burial
    ?loc3 wdt:P625 ?coord3 } .     # Get coordinates from Place of Burial

    SERVICE wikibase:label {bd:serviceParam wikibase:language "en" }
}
ORDER BY DESC(?WikiTreeIDf)


Video

onsdag 13 juli 2016

Search on Piast Dynasty in WikiData

Map view



Map

# People in the Piast Dynasty on a map with Birth Death and burial locations
# If Wikitree property set you will have a link
#defaultView:Map
Select ?person ?personLabel ?WikiTreeIDf ?pic ?coord ?coord2 ?coord3 {
?person wdt:P53 wd:Q201615
OPTIONAL {?person wdt:P2949 ?WikiTreeID} # P2949 all Wikidata articles with WikiTree id set
BIND (URI(CONCAT("http://www.wikitree.com/wiki/",?WikiTreeID)) AS ?WikiTreeIDf)
OPTIONAL {?person wdt:P18 ?pic}

    OPTIONAL {  ?person wdt:P19 ?loc . # P19 Place of Birth

    ?loc wdt:P625 ?coord } .     # Get coordinates from Place of Birth
    OPTIONAL {  ?person wdt:P20 ?loc2 . # P19 Place of Death
    ?loc2 wdt:P625 ?coord2 } .     # Get coordinates from Place of Death
    OPTIONAL {  ?person wdt:P119 ?loc3 . # P19 Place of Burial
    ?loc3 wdt:P625 ?coord3 } .     # Get coordinates from Place of Burial

    SERVICE wikibase:label {bd:serviceParam wikibase:language "en" }
}
ORDER BY DESC(?WikiTreeIDf)

Query
-----


Table query

http://tinyurl.com/jun2t75

People related to Emnilda of Lusatia using polish names

More Piast Dynasty

#People related to  Emnilda of Lusatia
#Names displayed with the Polish spelling in the wikidata databas
# See also
#    * another Graph done for the Swedish King Gustav Vasa Q52947
#    * a list created with people with Q201615 = Piast dynasty
#defaultView:Graph
PREFIX gas: <http://www.bigdata.com/rdf/gas#>

SELECT ?item ?itemLabel ?pic ?linkTo {  
  SERVICE gas:service {                           # see also RDF GAS API

    gas:program gas:gasClass "com.bigdata.rdf.graph.analytics.SSSP" ;
                gas:in wd:Q455016 ; # Emnilda of Lusatia
#                gas:traversalDirection "Forward" ;
                gas:traversalDirection "Undirected" ;
#                gas:traversalDirection "Reverse" ;
                gas:out ?item ;
                gas:out1 ?depth ;
                gas:maxIterations 4 ;
                gas:linkType wdt:P40 .
  }
  OPTIONAL { ?item wdt:P40 ?linkTo } #P40 property Child used in the Graph
  OPTIONAL { ?item wdt:P18 ?pic } #Get illustration if available
  SERVICE wikibase:label {bd:serviceParam wikibase:language "pl" } #Polish name forms
}

Query
-------