Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- PREFIX dbo: <http://dbpedia.org/ontology/>
- SELECT DISTINCT ?person (STR(?name) AS ?name) ?birth ?death (STR(?description)
- AS ?description) (STR(?place) AS ?place) ?long ?lat
- WHERE {
- ?person <http://purl.org/dc/terms/subject> <http://dbpedia.org/resource/Category:German_women_in_politics> .
- ?person dbo:birthDate ?birth .
- OPTIONAL {?person dbo:deathDate ?death .}
- ?person dbo:birthPlace ?placeR .
- OPTIONAL {?placeR geo:long ?long . ?placeR geo:lat ?lat . }
- ?placeR dbpprop:name ?place .
- ?person foaf:name ?name .
- ?person rdfs:comment ?description .
- FILTER ( LANG(?description) = "de" ) .
- }
- GROUP BY ?person ORDER BY ?person
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement