Submitted by Martin Hawksey on 6th December 2011
Query:
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX dc: <http://purl.org/dc/elements/1.1/>
PREFIX prod: <http://prod.cetis.ac.uk/vocab/>
PREFIX doap: <http://usefulinc.com/ns/doap#>
PREFIX mu: <http://www.jiscmu.ac.uk/schema/muweb/>
PREFIX geo: <http://www.w3.org/2003/01/geo/wgs84_pos#>
SELECT DISTINCT xsd:float(?lat) xsd:float(?long) ?projectName ?desc ?project
WHERE {
?project a doap:Project .
?project doap:name ?projectName .
?project prod:strand ?strand .
FILTER regex(?strand, "^open education", "i") .
OPTIONAL { ?project doap:shortdesc ?desc } .
?project doap:vendor ?uni .
OPTIONAL {
?uni owl:sameAs ?fbID .
?muID owl:sameAs ?fbID .
?muID geo:lat ?lat .
?muID geo:long ?long .
}
}
| Dataset | JISC CETIS PROject Directory |
|---|---|
| Created By | Martin Hawksey |
| Published | 2011-12-06 17:30 |