Last active
August 29, 2015 14:19
-
-
Save jflanaga/f24f329f972f9815354b to your computer and use it in GitHub Desktop.
SPARQL query for Austalk informants
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PREFIX dc:<http://purl.org/dc/terms/> | |
PREFIX austalk:<http://ns.austalk.edu.au/> | |
PREFIX olac:<http://www.language-archives.org/OLAC/1.1/> | |
PREFIX ausnc:<http://ns.ausnc.org.au/schemas/ausnc_md_model/> | |
PREFIX foaf:<http://xmlns.com/foaf/0.1/> | |
PREFIX dbpedia:<http://dbpedia.org/ontology/> | |
PREFIX rdf:<http://www.w3.org/1999/02/22-rdf-syntax-ns#> | |
PREFIX rdfs:<http://www.w3.org/2000/01/rdf-schema#> | |
PREFIX geo:<http://www.w3.org/2003/01/geo/wgs84_pos#> | |
PREFIX iso639schema:<http://downlode.org/rdf/iso-639/schema#> | |
PREFIX austalkid:<http://id.austalk.edu.au/> | |
SELECT ?participant ?name ?inst ?city ?gender ?age ?dob ?pob_town ?pob_state ?pob_country ?el ?cult WHERE { | |
?participant a foaf:Person . | |
?participant austalk:name ?name . | |
?participant austalk:recording_site ?site . | |
?participant foaf:gender ?gender . | |
?participant foaf:age ?age . | |
?participant austalk:cultural_heritage ?cult . | |
?participant austalk:pob_town ?pob_town . | |
?participant austalk:pob_state ?pob_state . | |
?participant austalk:pob_country ?pob_country . | |
?participant austalk:education_level ?el . | |
?site austalk:institution ?inst . | |
?site austalk:city ?city . | |
?participant dbpedia:birthYear ?dob . | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment