My ’70s Schoolin’ (in RDFa)
I went to Hamsey Green school in the 1970s.
Looking in the UK Govt datasets, I see it is listed there with a homepage of ‘http://www.hamsey-green-infant.surrey.sch.uk’ (which doesn’t seem to work).
Some queries I’m trying via the SPARQL dataset (I’ll update this post if I make them work…)
First a general query, from which I found the URL manually, …
select distinct ?x ?y where { ?x <http ://education.data.gov.uk/def/school/websiteAddress> ?y . }
Then I can go back into the data, and find other properties of the school:
PREFIX sch-ont: <http://education.data.gov.uk/def/school/>
select DISTINCT ?x ?p ?z WHERE
{
?x sch-ont:websiteAddress "http://www.hamsey-green-infant.surrey.sch.uk" .
?x ?p ?z .
}
